diff options
author | Zeev Suraski <zeev@php.net> | 2002-09-17 09:07:10 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2002-09-17 09:07:10 +0000 |
commit | 31429c60dbf50b5ad1351f4b9fbe528cd6290d67 (patch) | |
tree | 392a3ab13588079c5917282a7a765f71e9ed929b | |
parent | cab024e4115501b11b98cac0dfc4007d6bf3b69b (diff) | |
download | php-git-31429c60dbf50b5ad1351f4b9fbe528cd6290d67.tar.gz |
Call zend_post_startup() - use local copies of the function, class and
constant tables in the startup thread
-rw-r--r-- | main/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/main.c b/main/main.c index f8f23d115c..18d83c10fa 100644 --- a/main/main.c +++ b/main/main.c @@ -1133,6 +1133,10 @@ int php_module_startup(sapi_module_struct *sf) zend_startup_extensions(); +#ifdef ZTS + zend_post_startup(TSRMLS_C); +#endif + /* */ module_initialized = 1; sapi_deactivate(TSRMLS_C); |