Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:19455 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 50135 invoked by uid 1010); 6 Oct 2005 18:37:30 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 50118 invoked from network); 6 Oct 2005 18:37:30 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 6 Oct 2005 18:37:30 -0000 X-Host-Fingerprint: 195.197.172.115 gw01.mail.saunalahti.fi Linux 2.4/2.6 Received: from ([195.197.172.115:38386] helo=gw01.mail.saunalahti.fi) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 31/AC-54476-9EE65434 for ; Thu, 06 Oct 2005 14:37:30 -0400 Received: from nest.netphobia.fi (YZDCXXXI.dsl.saunalahti.fi [85.76.35.232]) by gw01.mail.saunalahti.fi (Postfix) with ESMTP id CD477F14B1; Thu, 6 Oct 2005 21:37:22 +0300 (EEST) Received: from nest.netphobia.fi (nest.netphobia.fi [127.0.0.1]) by nest.netphobia.fi (8.13.1/8.13.1) with ESMTP id j96IbODQ027886; Thu, 6 Oct 2005 21:37:24 +0300 Received: from localhost (jani@localhost) by nest.netphobia.fi (8.13.1/8.13.1/Submit) with ESMTP id j96IbMuJ027883; Thu, 6 Oct 2005 21:37:24 +0300 X-Authentication-Warning: nest.netphobia.fi: jani owned process doing -bs Date: Thu, 6 Oct 2005 21:37:22 +0300 (EEST) Reply-To: Jani Taskinen To: "J. Allen Dove" cc: Sara Golemon , internals@lists.php.net In-Reply-To: <4E0C5C8E5F8C994F90134920DD66E93F01129371@pearl.hq.booyahnetworks.com> Message-ID: References: <4E0C5C8E5F8C994F90134920DD66E93F01129371@pearl.hq.booyahnetworks.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: RE: [PHP-DEV] Re: CLI in PHP6 From: sniper@iki.fi (Jani Taskinen) On Thu, 6 Oct 2005, J. Allen Dove wrote: > "leak", which honestly surprised me. We even explicitly unset the vars > but that doesn't guarantee the GC kicks off for them near-time? unset() != free(). The memory allocated is still freed during the request shutdown (where GC actually kicks in). > As a total aside, and being a paranoid C++ guy, I would love a "free" > method that I could call that frees what I tell it to exactly when I > tell it to... :-) I think someone requested this before but it was shut down for some reason..can't remember what it was again. --Jani