From owner-svn-src-head@FreeBSD.ORG Tue Apr 17 20:35:54 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E6A6D1065673; Tue, 17 Apr 2012 20:35:54 +0000 (UTC) (envelope-from jasone@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D2D528FC1F; Tue, 17 Apr 2012 20:35:54 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q3HKZshm098142; Tue, 17 Apr 2012 20:35:54 GMT (envelope-from jasone@svn.freebsd.org) Received: (from jasone@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3HKZsVT098140; Tue, 17 Apr 2012 20:35:54 GMT (envelope-from jasone@svn.freebsd.org) Message-Id: <201204172035.q3HKZsVT098140@svn.freebsd.org> From: Jason Evans Date: Tue, 17 Apr 2012 20:35:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r234396 - head X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Apr 2012 20:35:55 -0000 Author: jasone Date: Tue Apr 17 20:35:54 2012 New Revision: 234396 URL: http://svn.freebsd.org/changeset/base/234396 Log: Update directions on how to disable malloc debugging. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Tue Apr 17 20:21:04 2012 (r234395) +++ head/UPDATING Tue Apr 17 20:35:54 2012 (r234396) @@ -19,8 +19,10 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 includes various WITNESS- related kernel options, INVARIANTS, malloc debugging flags in userland, and various verbose features in the kernel. Many developers choose to disable these features on build - machines to maximize performance. (To disable malloc debugging, run - ln -s aj /etc/malloc.conf.) + machines to maximize performance. (To completely disable malloc + debugging, define MALLOC_PRODUCTION in /etc/make.conf, or to merely + disable the most expensive debugging functionality run + "ln -s 'abort:false,junk:false' /etc/malloc.conf".) 20120417: The malloc(3) implementation embedded in libc now uses sources imported