123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- #include "test.h"
- static pthread_rwlock_t rwlock1 = PTHREAD_RWLOCK_INITIALIZER;
- static int bankAccount = 0;
- static void * wrfunc(void * arg)
- {
- assert(pthread_rwlock_wrlock(&rwlock1) == 0);
- pte_osThreadSleep(2000);
- bankAccount += 10;
- assert(pthread_rwlock_unlock(&rwlock1) == 0);
- return ((void *) bankAccount);
- }
- static void * rdfunc(void * arg)
- {
- int ba = -1;
- struct timespec abstime =
- {
- 0, 0
- };
- struct _timeb currSysTime;
- const long long NANOSEC_PER_MILLISEC = 1000000;
- _ftime(&currSysTime);
- abstime.tv_sec = currSysTime.time;
- abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm;
- if ((int) arg == 1)
- {
- abstime.tv_sec += 1;
- assert(pthread_rwlock_timedrdlock(&rwlock1, &abstime) == ETIMEDOUT);
- ba = 0;
- }
- else if ((int) arg == 2)
- {
- abstime.tv_sec += 3;
- assert(pthread_rwlock_timedrdlock(&rwlock1, &abstime) == 0);
- ba = bankAccount;
- assert(pthread_rwlock_unlock(&rwlock1) == 0);
- }
- return ((void *) ba);
- }
- int pthread_test_rwlock6t()
- {
- pthread_t wrt1;
- pthread_t wrt2;
- pthread_t rdt1;
- pthread_t rdt2;
- int wr1Result = 0;
- int wr2Result = 0;
- int rd1Result = 0;
- int rd2Result = 0;
- rwlock1 = PTHREAD_RWLOCK_INITIALIZER;
- bankAccount = 0;
- assert(pthread_create(&wrt1, NULL, wrfunc, NULL) == 0);
- pte_osThreadSleep(500);
- assert(pthread_create(&rdt1, NULL, rdfunc, (void *) 1) == 0);
- pte_osThreadSleep(500);
- assert(pthread_create(&wrt2, NULL, wrfunc, NULL) == 0);
- pte_osThreadSleep(500);
- assert(pthread_create(&rdt2, NULL, rdfunc, (void *) 2) == 0);
- assert(pthread_join(wrt1, (void **) &wr1Result) == 0);
- assert(pthread_join(rdt1, (void **) &rd1Result) == 0);
- assert(pthread_join(wrt2, (void **) &wr2Result) == 0);
- assert(pthread_join(rdt2, (void **) &rd2Result) == 0);
- assert(wr1Result == 10);
- assert(rd1Result == 0);
- assert(wr2Result == 20);
- assert(rd2Result == 20);
- assert(pthread_rwlock_destroy(&rwlock1) == 0);
- return 0;
- }
|