From owner-cvs-lib Fri Sep 27 09:21:36 1996 Return-Path: owner-cvs-lib Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA25159 for cvs-lib-outgoing; Fri, 27 Sep 1996 09:21:36 -0700 (PDT) Received: from spinner.DIALix.COM (root@spinner.DIALix.COM [192.203.228.67]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA25078; Fri, 27 Sep 1996 09:21:26 -0700 (PDT) Received: from spinner.DIALix.COM (peter@localhost.DIALix.oz.au [127.0.0.1]) by spinner.DIALix.COM (8.7.6/8.7.3) with ESMTP id AAA02472; Sat, 28 Sep 1996 00:21:19 +0800 (WST) Message-Id: <199609271621.AAA02472@spinner.DIALix.COM> X-Mailer: exmh version 1.6.7 5/3/96 To: Poul-Henning Kamp cc: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-lib@freefall.freebsd.org Subject: Re: cvs commit: src/lib/libc/stdlib atexit.c src/lib/libc/sys brk.2 In-reply-to: Your message of "Fri, 27 Sep 1996 08:34:29 MST." <199609271534.IAA26097@freefall.freebsd.org> Date: Sat, 28 Sep 1996 00:21:19 +0800 From: Peter Wemm Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Poul-Henning Kamp wrote: > phk 96/09/27 08:34:27 > > Modified: lib/libc/stdlib atexit.c > lib/libc/sys brk.2 > Log: > Don't use malloc, pessimize to use sbrk. > fix sbrk manpage while we're at it. Umm, you can't do this! If you use sbrk(), you are preventing the future use of malloc(), as you *cannot* intermix the use of sbrk() and malloc() in the same program! Cheers, -Peter