123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- #define _WIN32_WINNT 0x400
- #include "test.h"
- static pthread_cond_t cv;
- static pthread_mutex_t mutex;
- #include "../implement.h"
- int pthread_test_condvar2()
- {
- struct timespec abstime =
- {
- 0, 0
- };
- struct _timeb currSysTime;
- const unsigned int NANOSEC_PER_MILLISEC = 1000000;
- assert(pthread_cond_init(&cv, NULL) == 0);
- assert(pthread_mutex_init(&mutex, NULL) == 0);
- assert(pthread_mutex_lock(&mutex) == 0);
-
- _ftime(&currSysTime);
- abstime.tv_sec = currSysTime.time;
- abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm;
- abstime.tv_sec += 1;
- assert(pthread_cond_timedwait(&cv, &mutex, &abstime) == ETIMEDOUT);
- assert(pthread_mutex_unlock(&mutex) == 0);
- {
- int result = pthread_cond_destroy(&cv);
- assert(result == 0);
- }
- assert(pthread_mutex_destroy(&mutex) == 0);
- return 0;
- }
|