diff options
author | Andrey Hristov <andrey@php.net> | 2010-05-04 13:49:43 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2010-05-04 13:49:43 +0000 |
commit | 04d24bde20f1374d73fc88853bae4320d5573461 (patch) | |
tree | 0fbc93fe9b0e52aa1f1ca7af9ecd7c1734e06089 /ext/mysqlnd/mysqlnd.h | |
parent | 386016410165d6382fc19630b24a030a6e8f716e (diff) | |
download | php-git-04d24bde20f1374d73fc88853bae4320d5573461.tar.gz |
Add possibility to control the allocator in when PHP is compiled
with debug
Diffstat (limited to 'ext/mysqlnd/mysqlnd.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/mysqlnd/mysqlnd.h b/ext/mysqlnd/mysqlnd.h index 0c076f7f84..fab2997129 100644 --- a/ext/mysqlnd/mysqlnd.h +++ b/ext/mysqlnd/mysqlnd.h @@ -278,6 +278,12 @@ ZEND_BEGIN_MODULE_GLOBALS(mysqlnd) long log_mask; long net_read_timeout; long mempool_default_size; + long debug_emalloc_fail_threshold; + long debug_ecalloc_fail_threshold; + long debug_erealloc_fail_threshold; + long debug_malloc_fail_threshold; + long debug_calloc_fail_threshold; + long debug_realloc_fail_threshold; ZEND_END_MODULE_GLOBALS(mysqlnd) ZEND_EXTERN_MODULE_GLOBALS(mysqlnd); |