diff options
author | Zeev Suraski <zeev@php.net> | 2001-12-16 22:45:57 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-12-16 22:45:57 +0000 |
commit | 8e5e7efc5b96ecadf094d011a1fabcc6d642313d (patch) | |
tree | a0e0f94b6b4be7fd3b867f7ca1cd4c9f64bb648f /main/main.c | |
parent | c40b915e550dae4c66c212494219985815119347 (diff) | |
download | php-git-8e5e7efc5b96ecadf094d011a1fabcc6d642313d.tar.gz |
Freeing that TLS is just too complicated. Since we're shutting
down anyway, remove it for now (it did not exist in 4.0.6)
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/main/main.c b/main/main.c index 2808136715..a6b7bb107e 100644 --- a/main/main.c +++ b/main/main.c @@ -1001,9 +1001,7 @@ void php_module_shutdown(TSRMLS_D) /* close down the ini config */ php_shutdown_config(); -#ifdef ZTS - ts_free_thread(); -#else +#ifndef ZTS zend_ini_shutdown(TSRMLS_C); shutdown_memory_manager(CG(unclean_shutdown), 1); #endif |