diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2015-08-21 23:36:31 +0100 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2015-08-21 23:36:31 +0100 |
commit | 76e3e99dd674fe98130ba110564c607b12a7772c (patch) | |
tree | a41bcd6977d13ff2c5f7638d302dce0203667ee5 /sapi/phpdbg/phpdbg_sigsafe.h | |
parent | f9ae74a4c05584983add5ab68042419d44032b1b (diff) | |
download | php-git-76e3e99dd674fe98130ba110564c607b12a7772c.tar.gz |
Fix issues with phpdbg SIGINT handler
Also fix valgrind warnings in allocator when not using mmap()ed memory
Diffstat (limited to 'sapi/phpdbg/phpdbg_sigsafe.h')
-rw-r--r-- | sapi/phpdbg/phpdbg_sigsafe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_sigsafe.h b/sapi/phpdbg/phpdbg_sigsafe.h index e27b12c76c..ab689a38d8 100644 --- a/sapi/phpdbg/phpdbg_sigsafe.h +++ b/sapi/phpdbg/phpdbg_sigsafe.h @@ -1,7 +1,7 @@ #ifndef PHPDBG_SIGSAFE_H #define PHPDBG_SIGSAFE_H -#define PHPDBG_SIGSAFE_MEM_SIZE ZEND_MM_CHUNK_SIZE // (1 << 20) +#define PHPDBG_SIGSAFE_MEM_SIZE (ZEND_MM_CHUNK_SIZE * 2) #include "zend.h" |