summaryrefslogtreecommitdiff
path: root/main/main.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-02-26 18:59:27 +0000
committerAndi Gutmans <andi@php.net>2002-02-26 18:59:27 +0000
commita3066657170a668fba36ff0fdd799eb2098da56f (patch)
tree1318af0b2f0b256a6a38484e0ababe81abf00036 /main/main.c
parenta4113ee734600f0a77b6cbe0b04864c7933fdba5 (diff)
downloadphp-git-a3066657170a668fba36ff0fdd799eb2098da56f.tar.gz
- Pass shutdown_memory_manager the TSRMLS context.
Diffstat (limited to 'main/main.c')
-rw-r--r--main/main.c4
1 files changed, 3 insertions, 1 deletions
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);
}
/* }}} */