Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:45893 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 91372 invoked from network); 28 Oct 2009 23:42:22 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 28 Oct 2009 23:42:22 -0000 X-Host-Fingerprint: 86.152.38.93 host86-152-38-93.range86-152.btcentralplus.com Received: from [86.152.38.93] ([86.152.38.93:3823] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id BE/A2-12066-ED6D8EA4 for ; Wed, 28 Oct 2009 18:42:22 -0500 Message-ID: To: internals@lists.php.net Date: Wed, 28 Oct 2009 23:41:44 +0000 User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 References: <4C.08.56676.88EB8EA4@pb1.pair.com> <4AE8CD34.2040503@gmail.com> In-Reply-To: <4AE8CD34.2040503@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Posted-By: 86.152.38.93 Subject: Re: [PHP-DEV] Where is the EG macro defined? From: markskilbeck@gmail.com (Mark Skilbeck) Keisial wrote: > Mark Skilbeck wrote: >> I'd like to check out how the EG macro (I assume it's a macro) works. >> However, I cannot find it :( >> > Zend/zend_globals_macros.h > > EG means executor_globals. This macro provides access to the value named > in the parameter. > If running without multi-thread support, it's just a call to the struct, > else it expands for accessing the one > for the current instance (via the hidden __tsrm parameter). > Cheers for the info :)