summaryrefslogtreecommitdiff
path: root/test/testprocmutex.c
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-10-23 17:30:08 +0000
committerRyan Bloom <rbb@apache.org>2001-10-23 17:30:08 +0000
commit056489c40432f7547b7827677f96d44dafcc037d (patch)
tree43cd77ea710845497eef32d2769720c95d6322a1 /test/testprocmutex.c
parent855e5e9e5f5888133a685e5fb024b1d642295f7d (diff)
downloadapr-056489c40432f7547b7827677f96d44dafcc037d.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: https://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) {