From: Hartmut Holzgraefe Date: Tue, 20 May 2003 13:35:13 +0000 (+0000) Subject: proto and typo fixes X-Git-Tag: RELEASE_1_0_2~699 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4b7c5cea4bec6f9a82c16d0a67865b00ca504aae;p=php proto and typo fixes --- diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c index bc639c15b7..17a87169ab 100755 --- a/ext/pcntl/pcntl.c +++ b/ext/pcntl/pcntl.c @@ -463,7 +463,7 @@ PHP_FUNCTION(pcntl_exec) } /* }}} */ -/* {{{ 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) { @@ -633,7 +633,7 @@ void pcntl_tick_handler() 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 */