From owner-freebsd-current Sat Mar 23 15:56:22 2002 Delivered-To: freebsd-current@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 4DABA37B41D for ; Sat, 23 Mar 2002 15:56:16 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2NNuFYm018733 for ; Sat, 23 Mar 2002 15:56:15 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2NNt0xX018707 for current@freebsd.org; Sat, 23 Mar 2002 15:55:00 -0800 (PST) Date: Sat, 23 Mar 2002 15:55:00 -0800 From: "David O'Brien" To: current@freebsd.org Subject: turning off malloc's AJ by default Message-ID: <20020323155500.A18666@dragon.nuxi.com> Reply-To: current@freebsd.org Mail-Followup-To: current@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The RE's are wanting to ship 5.0 DP#1 w/this patch applied. If having 'AJ' by default is deemed not useful (by being removed from the DP), it sounds like we should just turn it off. Unless there is strong objection, I plan on committing this. Index: malloc.c =================================================================== RCS file: /home/ncvs/src/lib/libc/stdlib/malloc.c,v retrieving revision 1.66 diff -u -u -1 -r1.66 malloc.c --- malloc.c 22 Mar 2002 21:53:10 -0000 1.66 +++ malloc.c 23 Mar 2002 23:52:40 -0000 @@ -223,3 +223,3 @@ /* Abort(), user doesn't handle problems. */ -static int malloc_abort = 1; +static int malloc_abort; @@ -244,3 +244,3 @@ /* junk fill ? */ -static int malloc_junk = 1; +static int malloc_junk; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message