aboutsummaryrefslogtreecommitdiff
path: root/pthreads/tests/condvar7.c
diff options
context:
space:
mode:
Diffstat (limited to 'pthreads/tests/condvar7.c')
-rw-r--r--pthreads/tests/condvar7.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pthreads/tests/condvar7.c b/pthreads/tests/condvar7.c
index 6d89f2ea9..0647e7d91 100644
--- a/pthreads/tests/condvar7.c
+++ b/pthreads/tests/condvar7.c
@@ -154,7 +154,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;
@@ -167,9 +167,9 @@ main()
assert(pthread_mutex_lock(&start_flag) == 0);
- _ftime(&currSysTime);
+ PTW32_FTIME(&currSysTime);
- abstime.tv_sec = currSysTime.time;
+ abstime.tv_sec = (time_t)currSysTime.time;
abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm;
abstime.tv_sec += 10;