diff options
author | Felipe Pena <felipensp@gmail.com> | 2014-06-29 09:57:57 -0300 |
---|---|---|
committer | Felipe Pena <felipensp@gmail.com> | 2014-06-29 09:57:57 -0300 |
commit | 82f0b934a9392aa2195693ee7cfadf1454c0bb2c (patch) | |
tree | fab58c406b8cef74e50c528372e40b00b4b5c43d /phpdbg.c | |
parent | 58c69746e585312f73163d749bd5613cd21c9a1b (diff) | |
download | php-git-82f0b934a9392aa2195693ee7cfadf1454c0bb2c.tar.gz |
- CS
Diffstat (limited to 'phpdbg.c')
-rw-r--r-- | phpdbg.c | 22 |
1 files changed, 12 insertions, 10 deletions
@@ -856,7 +856,8 @@ int phpdbg_open_sockets(char *address, int port[2], int (*listen)[2], int (*sock return SUCCESS; } /* }}} */ -void phpdbg_signal_handler(int sig, siginfo_t *info, void *context) { +void phpdbg_signal_handler(int sig, siginfo_t *info, void *context) /* {{{ */ +{ int is_handled = FAILURE; TSRMLS_FETCH(); @@ -874,10 +875,11 @@ void phpdbg_signal_handler(int sig, siginfo_t *info, void *context) { break; } -} +} /* }}} */ #endif -static inline zend_mm_heap *phpdbg_mm_get_heap() { +static inline zend_mm_heap *phpdbg_mm_get_heap() /* {{{ */ +{ zend_mm_heap *mm_heap; TSRMLS_FETCH(); @@ -886,22 +888,22 @@ static inline zend_mm_heap *phpdbg_mm_get_heap() { zend_mm_set_heap(mm_heap TSRMLS_CC); return mm_heap; -} +} /* }}} */ -void *phpdbg_malloc_wrapper(size_t size) +void *phpdbg_malloc_wrapper(size_t size) /* {{{ */ { return zend_mm_alloc(phpdbg_mm_get_heap(), size); -} +} /* }}} */ -void phpdbg_free_wrapper(void *p) +void phpdbg_free_wrapper(void *p) /* {{{ */ { zend_mm_free(phpdbg_mm_get_heap(), p); -} +} /* }}} */ -void *phpdbg_realloc_wrapper(void *ptr, size_t size) +void *phpdbg_realloc_wrapper(void *ptr, size_t size) /* {{{ */ { return zend_mm_realloc(phpdbg_mm_get_heap(), ptr, size); -} +} /* }}} */ int main(int argc, char **argv) /* {{{ */ { |