aboutsummaryrefslogtreecommitdiff
path: root/pthreads/tests/condvar6.c
diff options
context:
space:
mode:
Diffstat (limited to 'pthreads/tests/condvar6.c')
-rw-r--r--pthreads/tests/condvar6.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pthreads/tests/condvar6.c b/pthreads/tests/condvar6.c
index e63132c5d..9d0b75d81 100644
--- a/pthreads/tests/condvar6.c
+++ b/pthreads/tests/condvar6.c
@@ -144,7 +144,7 @@ main()
int i;
pthread_t t[NUMTHREADS + 1];
- struct _timeb currSysTime;
+ PTW32_STRUCT_TIMEB currSysTime;
const DWORD NANOSEC_PER_MILLISEC = 1000000;
cvthing.shared = 0;
@@ -157,9 +157,9 @@ main()
assert(pthread_mutex_lock(&start_flag) == 0);
- _ftime(&currSysTime);
+ PTW32_FTIME(&currSysTime);
- abstime.tv_sec = currSysTime.time;
+ abstime.tv_sec = (long)currSysTime.time;
abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm;
abstime.tv_sec += 5;