made ZEND_TSRMLS_CACHE_* macros look like function calls

which also comply with the current semantics for such macros
This commit is contained in:
Anatol Belski 2015-02-16 17:19:32 +01:00
parent 812c0c0337
commit af3ca74501
63 changed files with 109 additions and 109 deletions

View file

@ -180,7 +180,7 @@ PHPAPI ZEND_DECLARE_MODULE_GLOBALS(mysqlnd)
static PHP_GINIT_FUNCTION(mysqlnd)
{
#if defined(COMPILE_DL_MYSQLND) && defined(ZTS)
ZEND_TSRMLS_CACHE_UPDATE;
ZEND_TSRMLS_CACHE_UPDATE();
#endif
mysqlnd_globals->collect_statistics = TRUE;
mysqlnd_globals->collect_memory_statistics = FALSE;
@ -361,7 +361,7 @@ zend_module_entry mysqlnd_module_entry = {
/* {{{ COMPILE_DL_MYSQLND */
#ifdef COMPILE_DL_MYSQLND
#ifdef ZTS
ZEND_TSRMLS_CACHE_DEFINE;
ZEND_TSRMLS_CACHE_DEFINE();
#endif
ZEND_GET_MODULE(mysqlnd)
#endif