Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:4159 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 21937 invoked by uid 1010); 24 Aug 2003 19:47:20 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 21912 invoked from network); 24 Aug 2003 19:47:20 -0000 Received: from unknown (HELO mta1-svc.business.ntl.com) (62.253.164.41) by pb1.pair.com with SMTP; 24 Aug 2003 19:47:20 -0000 Received: from p2q4w7 ([80.1.18.165]) by mta1-svc.business.ntl.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with SMTP id <20030824194719.NKNY27989.mta1-svc.business.ntl.com@p2q4w7> for ; Sun, 24 Aug 2003 20:47:19 +0100 Message-ID: <009a01c36a81$49577660$a5120150@p2q4w7> Reply-To: "Steph" To: Date: Sun, 24 Aug 2003 20:49:59 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Subject: looking at bug #25223 From: steph@php.net ("Steph") Hi all - I was looking to see if there was anything obvious to prevent CLI building, and found that the CVS viewer has several commit reports missing. Andi made a few changes to the zend_mm and zend_alloc files on June 24th which aren't reported there (but which made it to php-cvs@lists.php.net). Among them is the following: andi Mon Jun 24 03:22:27 2002 EDT Modified files: /ZendEngine2 zend_alloc.c zend_alloc.h zend_mm.h Log: - Don't keep allocated blocks in a linked list if we're in non-debug mode - as now the memory manager takes care to nuke all leaking blocks. This is the only place I've found where non-debug mode is treated differently from debug mode - it seems a good starting point.. (I can't just build it using older versions of the files in question due to Zeev's new pemalloc stuff). - Steph (this is way over my head now).