zeev Tue Sep 17 05:07:11 2002 EDT Modified files: /php4/main main.c Log: Call zend_post_startup() - use local copies of the function, class and constant tables in the startup thread Index: php4/main/main.c diff -u php4/main/main.c:1.485 php4/main/main.c:1.486 --- php4/main/main.c:1.485 Mon Sep 9 07:15:47 2002 +++ php4/main/main.c Tue Sep 17 05:07:10 2002 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: main.c,v 1.485 2002/09/09 11:15:47 hyanantha Exp $ */ +/* $Id: main.c,v 1.486 2002/09/17 09:07:10 zeev Exp $ */ /* {{{ includes */ @@ -1132,6 +1132,10 @@ php_disable_functions(TSRMLS_C); zend_startup_extensions(); + +#ifdef ZTS + zend_post_startup(TSRMLS_C); +#endif /* */ module_initialized = 1;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php