Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:23908 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 64280 invoked by uid 1010); 4 Jun 2006 09:28:59 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 64265 invoked from network); 4 Jun 2006 09:28:59 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 4 Jun 2006 09:28:59 -0000 X-PHP-List-Original-Sender: helly@php.net X-Host-Fingerprint: 81.169.182.136 ajaxatwork.net Linux 2.4/2.6 Received: from ([81.169.182.136:60724] helo=strato.aixcept.de) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 80/5F-49656-9D7A2844 for ; Sun, 04 Jun 2006 05:28:58 -0400 Received: from baumbart.mbo (dslb-084-063-007-047.pools.arcor-ip.net [84.63.7.47]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by strato.aixcept.de (Postfix) with ESMTP id DDF2135C1EA; Sun, 4 Jun 2006 11:28:53 +0200 (CEST) Date: Sun, 4 Jun 2006 11:31:12 +0200 Reply-To: Marcus Boerger X-Priority: 3 (Normal) Message-ID: <26189213.20060604113112@marcus-boerger.de> To: Steph Fox Cc: internals In-Reply-To: <05a301c687a5$344b6df0$6602a8c0@foxbox> References: <05a301c687a5$344b6df0$6602a8c0@foxbox> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] Fw: small note about interface registration From: helly@php.net (Marcus Boerger) Hello Steph, what did you fix in spl and reflection? best regards marcus Sunday, June 4, 2006, 9:05:02 AM, you wrote: > I take it back, fixing that in SPL and reflection _did_ do something :) > The only problem left now is that DL_UNLOAD's called too soon - we need > ts_free_id() to be called in the Zend module_destructor, but DL_UNLOAD to be > called at the end of tsrm_shutdown() - or at least, after the global core > stuff is destroyed. And TSRM doesn't know about the module. Hm. > ----- Original Message ----- > From: "Steph Fox" > To: "internals" > Sent: Sunday, June 04, 2006 8:26 AM > Subject: small note about interface registration >> Guys/gal, >> >> At the risk of being boring, someone should probably know that the >> ZEND_ACC_INTERFACE flag isn't getting set for anything outside the Engine >> during zend_register_internal_interface(). zend_API.c needs to #include >> zend_compile.h to get it defined, unless you know a better way. >> >> SPL and Reflection don't use zend_register_internal_interface(), so they >> won't get theirs set from within ZE anyway (tho' they probably should). >> >> Note that this doesn't fix my PHP-GTK issue, it was just a side-query into >> global class table corruption :-( >> >> - Steph >> >> Best regards, Marcus