summaryrefslogtreecommitdiff
path: root/test/testprocmutex.c
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-10-23 17:30:08 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-10-23 17:30:08 +0000
commitf4d5ff7eb5bcb7f61fd0dd7c9aec0776396f1ae4 (patch)
tree43cd77ea710845497eef32d2769720c95d6322a1 /test/testprocmutex.c
parent3b54562d12cfaa09c8b8a7e3277b097aadb2c1af (diff)
downloadlibapr-f4d5ff7eb5bcb7f61fd0dd7c9aec0776396f1ae4.tar.gz
Fix the reporting for child processes that die. This removes
all of the non-portable W* macros from Apache. Submitted by: Jeff Trawick and Ryan Bloom git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62455 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testprocmutex.c')
-rw-r--r--test/testprocmutex.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/testprocmutex.c b/test/testprocmutex.c
index bfe8739b8..92f62e2b3 100644
--- a/test/testprocmutex.c
+++ b/test/testprocmutex.c
@@ -126,10 +126,10 @@ static apr_status_t test_exclusive(const char *lockname)
printf("OK\n");
printf("%-60s", " Waiting for processes to exit");
- s1 = apr_proc_wait(p1, NULL, APR_WAIT);
- s2 = apr_proc_wait(p2, NULL, APR_WAIT);
- s3 = apr_proc_wait(p3, NULL, APR_WAIT);
- s4 = apr_proc_wait(p4, NULL, APR_WAIT);
+ s1 = apr_proc_wait(p1, NULL, NULL, APR_WAIT);
+ s2 = apr_proc_wait(p2, NULL, NULL, APR_WAIT);
+ s3 = apr_proc_wait(p3, NULL, NULL, APR_WAIT);
+ s4 = apr_proc_wait(p4, NULL, NULL, APR_WAIT);
printf("OK\n");
if ((*x) != MAX_COUNTER) {