diff options
author | Dmitry Stogov <dmitry@zend.com> | 2017-10-27 01:28:58 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2017-10-27 01:28:58 +0300 |
commit | 49ea143bbd8d0bfcd393d0b5308a5d7833fc087c (patch) | |
tree | 071b08e8067e5a6a1e9726e3d76dfe81cc42d6b0 /main/main.c | |
parent | 1ab0d820dabc612b7d371d6ed524f60f68101d0f (diff) | |
download | php-git-49ea143bbd8d0bfcd393d0b5308a5d7833fc087c.tar.gz |
Encapsulate reference-counting primitives.
Prohibit direct update of GC_REFCOUNT(), GC_SET_REFCOUNT(), GC_ADDREF() and GC_DELREF() shoukf be instead.
Added mactros to validate reference-counting (disabled for now).
These macros are going to be used to eliminate race-condintions during reference-counting on data shared between threads.
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/main/main.c b/main/main.c index 2443eac1dc..ef619a76fa 100644 --- a/main/main.c +++ b/main/main.c @@ -1596,6 +1596,10 @@ int php_request_startup(void) { int retval = SUCCESS; +#if ZEND_RC_DEBUG + zend_rc_debug = 1; +#endif + zend_interned_strings_activate(); #ifdef HAVE_DTRACE @@ -1805,6 +1809,10 @@ void php_request_shutdown(void *dummy) #ifdef HAVE_DTRACE DTRACE_REQUEST_SHUTDOWN(SAFE_FILENAME(SG(request_info).path_translated), SAFE_FILENAME(SG(request_info).request_uri), (char *)SAFE_FILENAME(SG(request_info).request_method)); #endif /* HAVE_DTRACE */ + +#if ZEND_RC_DEBUG + zend_rc_debug = 0; +#endif } /* }}} */ |