mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
made ZEND_TSRMLS_CACHE_* macros look like function calls
which also comply with the current semantics for such macros
This commit is contained in:
parent
812c0c0337
commit
af3ca74501
63 changed files with 109 additions and 109 deletions
|
@ -33,7 +33,7 @@
|
|||
|
||||
#ifdef COMPILE_DL_PDO_MYSQL
|
||||
#ifdef ZTS
|
||||
ZEND_TSRMLS_CACHE_DEFINE;
|
||||
ZEND_TSRMLS_CACHE_DEFINE();
|
||||
#endif
|
||||
ZEND_GET_MODULE(pdo_mysql)
|
||||
#endif
|
||||
|
@ -210,7 +210,7 @@ static PHP_RSHUTDOWN_FUNCTION(pdo_mysql)
|
|||
static PHP_GINIT_FUNCTION(pdo_mysql)
|
||||
{
|
||||
#if defined(COMPILE_DL_PDO_MYSQL) && defined(ZTS)
|
||||
ZEND_TSRMLS_CACHE_UPDATE;
|
||||
ZEND_TSRMLS_CACHE_UPDATE();
|
||||
#endif
|
||||
#ifndef PHP_WIN32
|
||||
pdo_mysql_globals->default_socket = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue