Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:58671 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 32570 invoked from network); 6 Mar 2012 16:24:18 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 6 Mar 2012 16:24:18 -0000 Authentication-Results: pb1.pair.com header.from=brian@brianfrance.com; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=brian@brianfrance.com; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain brianfrance.com from 208.83.223.140 cause and error) X-PHP-List-Original-Sender: brian@brianfrance.com X-Host-Fingerprint: 208.83.223.140 ls6.firehawksystems.com Received: from [208.83.223.140] ([208.83.223.140:56249] helo=ls6.firehawksystems.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id D9/F6-32184-03A365F4 for ; Tue, 06 Mar 2012 11:24:17 -0500 Received: from [172.16.0.58] (67.111.52.130.ptr.us.xo.net [67.111.52.130]) (authenticated bits=0) by ls6.firehawksystems.com (8.14.5/8.14.5) with ESMTP id q26GOCDX008975 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Tue, 6 Mar 2012 11:24:13 -0500 Mime-Version: 1.0 (Apple Message framework v1257) Content-Type: text/plain; charset=iso-8859-1 In-Reply-To: Date: Tue, 6 Mar 2012 11:24:11 -0500 Cc: jpauli , PHP internals list Content-Transfer-Encoding: quoted-printable Message-ID: <0D31CF4E-E330-42E9-833F-96582B925762@brianfrance.com> References: <1331030967.1983.8.camel@guybrush> To: Derick Rethans X-Mailer: Apple Mail (2.1257) Subject: Re: [PHP-DEV] 5.3.11 planning From: brian@brianfrance.com ("Brian J. France") Could you explain the use case for this? Just for my own curiosity, I = am sure you have a valid reason for it. =20 I have always found that only bad things happen when you let = extensions/modules/shared libs stay loaded during the double load of = apache. Thanks! Brian On Mar 6, 2012, at 6:19 AM, Derick Rethans wrote: > On Tue, 6 Mar 2012, Johannes Schl=FCter wrote: >=20 >> just a quick note on 5.3.11 planning: >>=20 >> We will migrate to git in roughly one week. I'll give it a few days = to >> verify migration works fine afterwards and then start the 5.3.11 >> process. Best is to get outstanding fixes in early. ;-) >=20 > I'd like to get my simple ZEND_DONT_UNLOAD_MODULES patch in: >=20 > Index: Zend/zend_API.c > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- Zend/zend_API.c (revision 322920) > +++ Zend/zend_API.c (working copy) > @@ -2134,7 +2134,7 @@ >=20 > #if HAVE_LIBDL > #if !(defined(NETWARE) && defined(APACHE_1_BUILD)) > - if (module->handle) { > + if (module->handle && !getenv("ZEND_DONT_UNLOAD_MODULES")) { > DL_UNLOAD(module->handle); > } > #endif >=20 > cheers, > Derick >=20 > --=20 > http://derickrethans.nl | http://xdebug.org > Like Xdebug? Consider a donation: http://xdebug.org/donate.php > twitter: @derickr and @xdebug > --=20 > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php