Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:45891 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 80249 invoked from network); 28 Oct 2009 23:01:13 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 28 Oct 2009 23:01:13 -0000 Authentication-Results: pb1.pair.com smtp.mail=keisial@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=keisial@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.219.227 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: keisial@gmail.com X-Host-Fingerprint: 209.85.219.227 mail-ew0-f227.google.com Received: from [209.85.219.227] ([209.85.219.227:37733] helo=mail-ew0-f227.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id F3/70-12066-83DC8EA4 for ; Wed, 28 Oct 2009 18:01:13 -0500 Received: by ewy27 with SMTP id 27so1322680ewy.23 for ; Wed, 28 Oct 2009 16:01:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=G16EsKooXGHMjVbyaXe8mq5K+U7xBvA2ybKI2A1HWVs=; b=pPRWB1UCxSNDMibWANvPO9ORbQb2kC3XahRqrK17g4a7sdTVqtNyKM5xx3WiR/5mTg YQ6uXdFeOauP2Yl1yje+9YihKEvKcHMEtpKD59lKOVM+6EtBzD+ZkvrCi2L//j2cQRl8 WRAVENpJQPuklM0636ZENwrVir1xz2A7K3L1U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=p0saWwLhajEG1OK7EqgVVG5d/8Xw97091BNj8/QfDGeaiSAtaVq55y+9vgMuMyvOP6 wGLhjQksp4g9NPLEW90MT4SAlun7BEHc8XeljCvQRK20ULpxH/xMEyU6wGdPtqxSS2rk xJKgKeRSKgqgtQyYIVs29Ms1R6fRrp1i6BvOI= Received: by 10.211.155.20 with SMTP id h20mr9510404ebo.30.1256770869901; Wed, 28 Oct 2009 16:01:09 -0700 (PDT) Received: from ?192.168.1.25? (94.Red-83-51-56.dynamicIP.rima-tde.net [83.51.56.94]) by mx.google.com with ESMTPS id 5sm4162063eyh.26.2009.10.28.16.01.08 (version=SSLv3 cipher=RC4-MD5); Wed, 28 Oct 2009 16:01:09 -0700 (PDT) Message-ID: <4AE8CD34.2040503@gmail.com> Date: Thu, 29 Oct 2009 00:01:08 +0100 User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Mark Skilbeck CC: internals@lists.php.net References: <4C.08.56676.88EB8EA4@pb1.pair.com> In-Reply-To: <4C.08.56676.88EB8EA4@pb1.pair.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] Where is the EG macro defined? From: keisial@gmail.com (Keisial) 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).