summaryrefslogtreecommitdiff
path: root/tests/condvar7.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/condvar7.c')
-rw-r--r--tests/condvar7.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/condvar7.c b/tests/condvar7.c
index 23e2441..afac300 100644
--- a/tests/condvar7.c
+++ b/tests/condvar7.c
@@ -134,7 +134,7 @@ main()
abstime.tv_sec = currSysTime.time;
abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm;
- abstime.tv_sec += 5;
+ abstime.tv_sec += 10;
assert((t[0] = pthread_self()) != NULL);
@@ -156,7 +156,7 @@ main()
/*
* Give threads time to start.
*/
- Sleep(2000);
+ Sleep(1000);
assert(pthread_mutex_lock(&cvthing.lock) == 0);
@@ -218,5 +218,3 @@ main()
*/
return 0;
}
-
-