We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cccc548 + 06f9389 commit d81db0bCopy full SHA for d81db0b
1 file changed
ext/pcntl/php_pcntl.h
@@ -48,7 +48,8 @@ ZEND_BEGIN_MODULE_GLOBALS(pcntl)
48
bool processing_signal_queue;
49
volatile bool pending_signals;
50
bool async_signals;
51
- uint8_t num_signals;
+ /* some OSes define NSIG to be > UINT8_MAX */
52
+ uint16_t num_signals;
53
int last_error;
54
struct php_pcntl_pending_signal *head, *tail, *spares;
55
ZEND_END_MODULE_GLOBALS(pcntl)
0 commit comments