}
/* }}} */
-/* {{{ proto bool pcntl_signal(long signo, mixed handle, [bool restart_syscalls])
+/* {{{ proto bool pcntl_signal(long signo, callback handle, [bool restart_syscalls])
Assigns a system signal handler to a PHP function */
PHP_FUNCTION(pcntl_signal)
{
ZVAL_LONG(param, *signal_num);
- /* Call php singal handler - Note that we do not report errors, and we ignore the eturn value */
+ /* Call php singal handler - Note that we do not report errors, and we ignore the return value */
call_user_function(EG(function_table), NULL, *handle, retval, 1, ¶m TSRMLS_CC);
}
/* Clear */