diff options
author | Greg Beaver <cellog@php.net> | 2007-08-15 23:35:27 +0000 |
---|---|---|
committer | Greg Beaver <cellog@php.net> | 2007-08-15 23:35:27 +0000 |
commit | 417b2cfb5efaeefcfa74c5a07771226fd01af3c3 (patch) | |
tree | 237c28dbbb3d1f76aef7ff680db2e1e4334c00ce /ext/phar/gdbhelp | |
parent | 2211e8e14f656f570d0481c227c60408f2c6897b (diff) | |
download | php-git-417b2cfb5efaeefcfa74c5a07771226fd01af3c3.tar.gz |
make pharglobals hidden func
Diffstat (limited to 'ext/phar/gdbhelp')
-rw-r--r-- | ext/phar/gdbhelp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/phar/gdbhelp b/ext/phar/gdbhelp index 6da5cb218c..38ab5f465d 100644 --- a/ext/phar/gdbhelp +++ b/ext/phar/gdbhelp @@ -1,4 +1,4 @@ -define pharglobals +define ___pharglobals if basic_functions_module.zts set $tsrm_ls = ts_resource_ex(0, 0) set $pharglobals = ((zend_executor_globals) (*((void ***) $tsrm_ls))[phar_globals_id-1]) @@ -35,14 +35,14 @@ end define print_phar set $ind = 1 - pharglobals + ___pharglobals printf "{" ____print_pharht $pharglobals.phar_fname_map 0 printf "}\n" end define print_pharfp - pharglobals + ___pharglobals set $ht = $pharglobals.phar_fname_map set $p = $ht.pListHead set $fpcount = 0 |