File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 45
45
#endif
46
46
47
47
#ifndef ZEND_SIGNALS
48
- # define HANDLE_BLOCK_INTERRUPTIONS () if (zend_block_interruptions) { zend_block_interruptions(); }
49
- # define HANDLE_UNBLOCK_INTERRUPTIONS () if (zend_unblock_interruptions) { zend_unblock_interruptions(); }
48
+ /* block/unblock interruptions callbacks might be used by SAPI, and were used
49
+ * by mod_php for Apache 1, but now they are not usefull anymore.
50
+ */
51
+ # define HANDLE_BLOCK_INTERRUPTIONS () /*if (zend_block_interruptions) { zend_block_interruptions(); }*/
52
+ # define HANDLE_UNBLOCK_INTERRUPTIONS () /*if (zend_unblock_interruptions) { zend_unblock_interruptions(); }*/
50
53
#else
51
54
# define HANDLE_BLOCK_INTERRUPTIONS () ZEND_SIGNAL_BLOCK_INTERRUPUTIONS()
52
55
# define HANDLE_UNBLOCK_INTERRUPTIONS () ZEND_SIGNAL_UNBLOCK_INTERRUPTIONS()
You can’t perform that action at this time.
0 commit comments