diff options
author | Egon Schmid <eschmid@php.net> | 2001-11-08 22:11:41 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2001-11-08 22:11:41 +0000 |
commit | d3ea04bb666847e291fb236a86bd3594d3859f18 (patch) | |
tree | 2fc823e4c878310331e935afb2e8593780f5e386 /ext/pcntl/pcntl.c | |
parent | 4396a984a8ba0c05a71d3cc7ebeaa3a040c840e3 (diff) | |
download | php-git-d3ea04bb666847e291fb236a86bd3594d3859f18.tar.gz |
Some protos fixed.
Diffstat (limited to 'ext/pcntl/pcntl.c')
-rwxr-xr-x | ext/pcntl/pcntl.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c index d5d3e43466..9f12b69c16 100755 --- a/ext/pcntl/pcntl.c +++ b/ext/pcntl/pcntl.c @@ -203,7 +203,7 @@ PHP_MINFO_FUNCTION(pcntl) php_info_print_table_end(); } -/* {{{ proto int pcntl_fork() +/* {{{ proto int pcntl_fork(void) Forks the currently running process following the same behavior as the UNIX fork() system call*/ PHP_FUNCTION(pcntl_fork) { @@ -219,7 +219,7 @@ PHP_FUNCTION(pcntl_fork) /* }}} */ /* {{{ proto int pcntl_waitpid(long pid, long status, long options) - Waits on or returns the status of a forked child as defined by the waitpid() system call */ + Waits on or returns the status of a forked child as defined by the waitpid() system call */ PHP_FUNCTION(pcntl_waitpid) { zval **pid, **status, **options; @@ -264,7 +264,7 @@ PHP_FUNCTION(pcntl_wifexited) /* }}} */ /* {{{ proto bool pcntl_wifstopped(long status) - Returns true if the child status code represents a stopped process (WUNTRACED must have been used with waitpid) */ + Returns true if the child status code represents a stopped process (WUNTRACED must have been used with waitpid) */ PHP_FUNCTION(pcntl_wifstopped) { #ifdef WIFSTOPPED @@ -348,7 +348,7 @@ PHP_FUNCTION(pcntl_wtermsig) /* }}} */ /* {{{ proto int pcntl_wstopsig(long status) - Returns the number of the signal that caused the process to stop who's status code is passed */ + Returns the number of the signal that caused the process to stop who's status code is passed */ PHP_FUNCTION(pcntl_wstopsig) { #ifdef WSTOPSIG @@ -369,7 +369,7 @@ PHP_FUNCTION(pcntl_wstopsig) /* }}} */ /* {{{ proto bool pcntl_exec(string path, [array args], [array envs]) - Executes specified program in current process space as defined by exec(2) */ + Executes specified program in current process space as defined by exec(2) */ PHP_FUNCTION(pcntl_exec) { zval *args, *envs; @@ -459,7 +459,7 @@ PHP_FUNCTION(pcntl_exec) /* }}} */ /* {{{ proto bool pcntl_signal(long signo, mixed handle) - Assigns a system signal handler to a php function */ + Assigns a system signal handler to a PHP function */ PHP_FUNCTION(pcntl_signal) { zval **signo, **handle; |