From: Andi Gutmans Date: Tue, 26 Feb 2002 18:59:27 +0000 (+0000) Subject: - Pass shutdown_memory_manager the TSRMLS context. X-Git-Tag: php-4.2.0RC1~274 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3066657170a668fba36ff0fdd799eb2098da56f;p=php - Pass shutdown_memory_manager the TSRMLS context. --- diff --git a/main/main.c b/main/main.c index c88ea7fc97..6224035bac 100644 --- a/main/main.c +++ b/main/main.c @@ -698,9 +698,11 @@ int php_request_startup(TSRMLS_D) */ void php_request_shutdown_for_exec(void *dummy) { + TSRMLS_FETCH(); + /* used to close fd's in the 3..255 range here, but it's problematic */ - shutdown_memory_manager(1, 1); + shutdown_memory_manager(1, 1 TSRMLS_CC); } /* }}} */ diff --git a/main/php_main.h b/main/php_main.h index ea9137c5f8..beeabb51c5 100644 --- a/main/php_main.h +++ b/main/php_main.h @@ -30,7 +30,7 @@ PHPAPI int php_request_startup(TSRMLS_D); PHPAPI void php_request_shutdown(void *dummy); -PHPAPI void php_request_shutdown_for_exec(void *dummy); +PHPAPI void php_request_shutdown_for_exec(void *dummy TSRMLS_DC); PHPAPI int php_module_startup(sapi_module_struct *sf); PHPAPI void php_module_shutdown(TSRMLS_D); PHPAPI void php_module_shutdown_for_exec(void);