123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- #define _WIN32_WINNT 0x400
- #include "test.h"
- static pthread_cond_t cv;
- static pthread_mutex_t mutex;
- static struct timespec abstime =
- {
- 0, 0
- };
- enum
- {
- NUMTHREADS = OS_MAX_SIMUL_THREADS
- };
- static void *
- mythread(void * arg)
- {
- assert(pthread_mutex_lock(&mutex) == 0);
- assert(pthread_cond_timedwait(&cv, &mutex, &abstime) == ETIMEDOUT);
- assert(pthread_mutex_unlock(&mutex) == 0);
- return arg;
- }
- #include "../implement.h"
- int pthread_test_condvar2_1()
- {
- int i;
- pthread_t t[NUMTHREADS + 1];
- int result = 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);
-
- _ftime(&currSysTime);
- abstime.tv_sec = currSysTime.time;
- abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm;
- abstime.tv_sec += 5;
- assert(pthread_mutex_lock(&mutex) == 0);
- for (i = 1; i <= NUMTHREADS; i++)
- {
- assert(pthread_create(&t[i], NULL, mythread, (void *) i) == 0);
- }
- assert(pthread_mutex_unlock(&mutex) == 0);
- for (i = 1; i <= NUMTHREADS; i++)
- {
- assert(pthread_join(t[i], (void **) &result) == 0);
- assert(result == i);
- }
- assert(pthread_cond_destroy(&cv) == 0);
- assert(pthread_mutex_destroy(&mutex) == 0);
- return 0;
- }
|