Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:16810 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 73509 invoked by uid 1010); 20 Jun 2005 21:26:10 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 73458 invoked from network); 20 Jun 2005 21:26:10 -0000 Received: from unknown (HELO pb1.pair.com) (127.0.0.1) by localhost with SMTP; 20 Jun 2005 21:26:10 -0000 X-Host-Fingerprint: 64.233.184.206 wproxy.gmail.com Linux 2.4/2.6 Received: from ([64.233.184.206:53827] helo=wproxy.gmail.com) by pb1.pair.com (ecelerity 1.2 r(5656M)) with SMTP id 46/95-25080-35D27B24 for ; Mon, 20 Jun 2005 16:55:47 -0400 Received: by wproxy.gmail.com with SMTP id 57so899929wri for ; Mon, 20 Jun 2005 13:55:43 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=n6bwmP9n/e4pm7P4wkG08pssAH+lr2ZvTnULeOZjqAqXSeuu9sZfuPm06+wXnj7avVdb9gx8i03L7LAzx7efipKBK4A7+SphbiWJbDnWE1NjRMf/leXOQaP6lp++kh0xRHsM5ytf8qMRuikMYX1UZCoF4hfdjOYUJ3k+C3+G9No= Received: by 10.54.23.3 with SMTP id 3mr2910635wrw; Mon, 20 Jun 2005 13:55:43 -0700 (PDT) Received: by 10.54.153.5 with HTTP; Mon, 20 Jun 2005 13:55:43 -0700 (PDT) Message-ID: <4e89b426050620135540aa3834@mail.gmail.com> Date: Mon, 20 Jun 2005 16:55:43 -0400 Reply-To: Wez Furlong To: Michael Wallner Cc: internals@lists.php.net In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <34469481.20050620041927@marcus-boerger.de> Subject: Re: [PHP-DEV] Re: Problem with leak detection From: kingwez@gmail.com (Wez Furlong) That should probably just be: #if PHP_WIN32 OutputDebugString(...); #endif fprintf(stderr, ...); On 6/20/05, Michael Wallner wrote: > Sorry, but I cannot speak for exit(), but I usually replace all occurrenc= es of >=20 > #if PHP_WIN32 > OutputDebugString(...); > #else > fprintf(stderr, ...); > #endif >=20 > with just fprintf(stderr, ...) to see any mem-leaks on Win32-CLI.