diff options
Diffstat (limited to 'ext/posix/php_posix.h')
-rw-r--r-- | ext/posix/php_posix.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ext/posix/php_posix.h b/ext/posix/php_posix.h index 6844568069..17d8b038c2 100644 --- a/ext/posix/php_posix.h +++ b/ext/posix/php_posix.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2018 The PHP Group | + | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | @@ -125,12 +125,13 @@ ZEND_BEGIN_MODULE_GLOBALS(posix) int last_error; ZEND_END_MODULE_GLOBALS(posix) -#ifdef ZTS -# define POSIX_G(v) TSRMG(posix_globals_id, zend_posix_globals *, v) -#else -# define POSIX_G(v) (posix_globals.v) +#if defined(ZTS) && defined(COMPILE_DL_POSIX) +ZEND_TSRMLS_CACHE_EXTERN() #endif +ZEND_EXTERN_MODULE_GLOBALS(posix) +#define POSIX_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(posix, v) + #else #define posix_module_ptr NULL |