From: Anatol Belski Date: Sun, 14 Sep 2014 07:22:02 +0000 (+0200) Subject: reduce the struct size by 8 byte on 64 bit X-Git-Tag: PRE_NATIVE_TLS_MERGE~158^2~85^2~62 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=273763dd63d92e714e5dcdabf982d373aea9af42;p=php reduce the struct size by 8 byte on 64 bit --- diff --git a/ext/mysqlnd/mysqlnd.h b/ext/mysqlnd/mysqlnd.h index c70934be4d..a1c323a252 100644 --- a/ext/mysqlnd/mysqlnd.h +++ b/ext/mysqlnd/mysqlnd.h @@ -264,8 +264,6 @@ PHPAPI void _mysqlnd_get_client_stats(zval *return_value TSRMLS_DC ZEND_FILE_L #define MYSQLND_METHOD_PRIVATE(class, method) php_##class##_##method##_priv ZEND_BEGIN_MODULE_GLOBALS(mysqlnd) - zend_bool collect_statistics; - zend_bool collect_memory_statistics; char * debug; /* The actual string */ char * trace_alloc_settings; /* The actual string */ MYSQLND_DEBUG * dbg; /* The DBG object for standard tracing */ @@ -283,6 +281,8 @@ ZEND_BEGIN_MODULE_GLOBALS(mysqlnd) zend_long debug_realloc_fail_threshold; char * sha256_server_public_key; zend_bool fetch_data_copy; + zend_bool collect_statistics; + zend_bool collect_memory_statistics; ZEND_END_MODULE_GLOBALS(mysqlnd) PHPAPI ZEND_EXTERN_MODULE_GLOBALS(mysqlnd)