123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- #include "test.h"
- static pthread_cond_t cv;
- static pthread_mutex_t mutex;
- static int shared = 0;
- enum
- {
- NUMTHREADS = 2
- };
- static void *
- mythread(void * arg)
- {
- assert(pthread_mutex_lock(&mutex) == 0);
- shared++;
- assert(pthread_mutex_unlock(&mutex) == 0);
- assert(pthread_cond_signal(&cv) == 0);
- return (void *) 0;
- }
- int pthread_test_condvar3()
- {
- pthread_t t[NUMTHREADS];
- struct timespec abstime =
- {
- 0, 0
- };
- struct _timeb currSysTime;
- const unsigned int NANOSEC_PER_MILLISEC = 1000000;
- assert((t[0] = pthread_self()).p != NULL);
- 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;
- assert(pthread_create(&t[1], NULL, mythread, (void *) 1) == 0);
- abstime.tv_sec += 5;
- while (! (shared > 0))
- assert(pthread_cond_timedwait(&cv, &mutex, &abstime) == 0);
- assert(shared > 0);
- assert(pthread_mutex_unlock(&mutex) == 0);
- assert(pthread_join(t[1], NULL) == 0);
- assert(pthread_cond_destroy(&cv) == 0);
- assert(pthread_mutex_destroy(&mutex) == 0);
- return 0;
- }
|