diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-31 04:53:54 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-31 04:53:54 +0000 |
commit | d76cf1da183f79711d7699a2ff85f743da3f9dd2 (patch) | |
tree | 8342fd3406696bc32b81deb28d6771336fb6fe36 /Zend/zend.c | |
parent | 7bc71f442d7ddfecf43871b394c14100baa391b3 (diff) | |
download | php-git-d76cf1da183f79711d7699a2ff85f743da3f9dd2.tar.gz |
More TSRMLS_FETCH work
Diffstat (limited to 'Zend/zend.c')
-rw-r--r-- | Zend/zend.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index fea898e9ce..a44c9bfd7b 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -431,7 +431,7 @@ int zend_startup(zend_utility_functions *utility_functions, char **extensions, i } -void zend_shutdown() +void zend_shutdown(TSRMLS_D) { #ifdef ZEND_WIN32 zend_shutdown_timeout_thread(); @@ -445,7 +445,7 @@ void zend_shutdown() free(GLOBAL_FUNCTION_TABLE); zend_hash_destroy(GLOBAL_CLASS_TABLE); free(GLOBAL_CLASS_TABLE); - zend_shutdown_extensions(); + zend_shutdown_extensions(TSRMLS_C); free(zend_version_info); #ifndef ZTS zend_shutdown_constants(); @@ -520,9 +520,9 @@ void zend_activate(TSRMLS_D) } -void zend_activate_modules(void) +void zend_activate_modules(TSRMLS_D) { - zend_hash_apply(&module_registry, (apply_func_t) module_registry_request_startup); + zend_hash_apply(&module_registry, (apply_func_t) module_registry_request_startup TSRMLS_CC); } void zend_deactivate_modules(TSRMLS_D) @@ -530,7 +530,7 @@ void zend_deactivate_modules(TSRMLS_D) EG(opline_ptr) = NULL; /* we're no longer executing anything */ zend_try { - zend_hash_apply(&module_registry, (apply_func_t) module_registry_cleanup); + zend_hash_apply(&module_registry, (apply_func_t) module_registry_cleanup TSRMLS_CC); } zend_end_try(); } |