summaryrefslogtreecommitdiff
path: root/ext/pcntl/test-pcntl.php
diff options
context:
space:
mode:
authorJason Greene <jason@php.net>2001-07-06 05:48:52 +0000
committerJason Greene <jason@php.net>2001-07-06 05:48:52 +0000
commit0bfa63490d89b53fa00c08dccbcb173043d5659f (patch)
treec270e476c19f1a7c9fb5bf2236726124a75a186d /ext/pcntl/test-pcntl.php
parent08d1178d6eb5fe49f540bd4e2703dacd4735cc5a (diff)
downloadphp-git-0bfa63490d89b53fa00c08dccbcb173043d5659f.tar.gz
Added wait.h functionality to pcntl
Added tests for such functionality Removed bogus files
Diffstat (limited to 'ext/pcntl/test-pcntl.php')
-rwxr-xr-xext/pcntl/test-pcntl.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcntl/test-pcntl.php b/ext/pcntl/test-pcntl.php
index c611bfe504..41334ba814 100755
--- a/ext/pcntl/test-pcntl.php
+++ b/ext/pcntl/test-pcntl.php
@@ -31,5 +31,5 @@ if ($pid==0) {
posix_kill($pid,SIGUSR1);
sleep(1);
print "Parent: Sending SIGALRM to Child\n";
- pcntl_waitpid($pid, $status, $options);
+ pcntl_waitpid($pid, &$status, $options);
}