diff options
| author | Sebastian Bergmann <sebastian@php.net> | 2002-11-18 06:04:06 +0000 |
|---|---|---|
| committer | Sebastian Bergmann <sebastian@php.net> | 2002-11-18 06:04:06 +0000 |
| commit | 51e4dbaba031cfbbff73a693d58718eb3cdd39c4 (patch) | |
| tree | 2c623849b32a7d361ff2e471eddf4a03218a84b0 /main/main.c | |
| parent | 6d8a643edbd6c40fd608a09a42b92cf0a26c7410 (diff) | |
| download | php-git-51e4dbaba031cfbbff73a693d58718eb3cdd39c4.tar.gz | |
Fix ZTS build.
Diffstat (limited to 'main/main.c')
| -rw-r--r-- | main/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/main.c b/main/main.c index 1f9f045a51..6d61ebe452 100644 --- a/main/main.c +++ b/main/main.c @@ -813,7 +813,7 @@ static int php_hash_environment(TSRMLS_D); /* {{{ php_start_sapi() */ -static int php_start_sapi() +static int php_start_sapi(TSRMLS_D) { int retval = SUCCESS; @@ -940,7 +940,7 @@ int php_request_startup_for_hook(TSRMLS_D) signal(SIGCHLD, sigchld_handler); #endif - if (php_start_sapi() == FAILURE) + if (php_start_sapi(TSRMLS_C) == FAILURE) return FAILURE; php_output_activate(TSRMLS_C); @@ -991,7 +991,7 @@ void php_request_shutdown_for_hook(void *dummy) } zend_end_try(); zend_try { - shutdown_memory_manager(CG(unclean_shutdown), 0); + shutdown_memory_manager(CG(unclean_shutdown), 0 TSRMLS_CC); } zend_end_try(); zend_try { |
