123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- #define _WIN32_WINNT 0x400
- #include "test.h"
- static pthread_cond_t cv;
- static pthread_cond_t cv1;
- static pthread_mutex_t mutex;
- static pthread_mutex_t mutex1;
- static struct timespec abstime =
- {
- 0, 0
- };
- static int timedout = 0;
- static int signaled = 0;
- static int awoken = 0;
- static int waiting = 0;
- enum
- {
- NUMTHREADS = 30
- };
- static void *
- mythread(void * arg)
- {
- int result;
- struct _timeb currSysTime;
- const unsigned int NANOSEC_PER_MILLISEC = 1000000;
- assert(pthread_mutex_lock(&mutex1) == 0);
- ++waiting;
- assert(pthread_mutex_unlock(&mutex1) == 0);
- assert(pthread_cond_signal(&cv1) == 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 += 5;
- result = pthread_cond_timedwait(&cv, &mutex, &abstime);
- if (result == ETIMEDOUT)
- {
- timedout++;
- }
- else
- {
- awoken++;
- }
- assert(pthread_mutex_unlock(&mutex) == 0);
- return arg;
- }
- #include "../implement.h"
- int pthread_test_condvar3_1()
- {
- int i;
- pthread_t t[NUMTHREADS + 1];
- int result = 0;
- timedout = 0;
- signaled = 0;
- awoken = 0;
- waiting = 0;
- assert(pthread_cond_init(&cv, NULL) == 0);
- assert(pthread_cond_init(&cv1, NULL) == 0);
- assert(pthread_mutex_init(&mutex, NULL) == 0);
- assert(pthread_mutex_init(&mutex1, NULL) == 0);
- assert(pthread_mutex_lock(&mutex1) == 0);
- for (i = 1; i <= NUMTHREADS; i++)
- {
- assert(pthread_create(&t[i], NULL, mythread, (void *) i) == 0);
- }
- do
- {
- assert(pthread_cond_wait(&cv1,&mutex1) == 0);
- }
- while ( NUMTHREADS > waiting );
- assert(pthread_mutex_unlock(&mutex1) == 0);
- for (i = NUMTHREADS/3; i <= 2*NUMTHREADS/3; i++)
- {
- assert(pthread_cond_signal(&cv) == 0);
- signaled++;
- }
- for (i = 1; i <= NUMTHREADS; i++)
- {
- assert(pthread_join(t[i], (void **) &result) == 0);
- assert(result == i);
- }
- assert(signaled == awoken);
- assert(timedout == NUMTHREADS - signaled);
- assert(pthread_cond_destroy(&cv1) == 0);
- {
- assert(pthread_cond_destroy(&cv) == 0);
- }
- assert(pthread_mutex_destroy(&mutex1) == 0);
- assert(pthread_mutex_destroy(&mutex) == 0);
- return 0;
- }
|