diff options
-rw-r--r-- | regress/lib/libpthread/pthread_cond_timedwait/pthread_cond_timedwait.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libpthread/pthread_cond_timedwait/pthread_cond_timedwait.c b/regress/lib/libpthread/pthread_cond_timedwait/pthread_cond_timedwait.c index f5b9c1d591d..f890816e60d 100644 --- a/regress/lib/libpthread/pthread_cond_timedwait/pthread_cond_timedwait.c +++ b/regress/lib/libpthread/pthread_cond_timedwait/pthread_cond_timedwait.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pthread_cond_timedwait.c,v 1.4 2003/07/31 21:48:05 deraadt Exp $ */ +/* $OpenBSD: pthread_cond_timedwait.c,v 1.5 2003/11/27 19:38:19 marc Exp $ */ /* * Copyright (c) 1993, 1994, 1995, 1996 by Chris Provenzano and contributors, * proven@mit.edu All rights reserved. @@ -86,7 +86,7 @@ main(int argc, char *argv[]) CHECKe(gettimeofday(&begtime, NULL)); TIMEVAL_TO_TIMESPEC(&begtime, &abstime); - for (ix = 0; ix < 5; ix++) { + for (ix = 0; ix < 2; ix++) { abstime.tv_sec += 5; /* Test a condition timeout */ |