123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568 |
- #include "pthread.h"
- #include "implement.h"
- typedef struct
- {
- pthread_mutex_t *mutexPtr;
- pthread_cond_t cv;
- int *resultPtr;
- } pte_cond_wait_cleanup_args_t;
- static void
- pte_cond_wait_cleanup (void *args)
- {
- pte_cond_wait_cleanup_args_t *cleanup_args =
- (pte_cond_wait_cleanup_args_t *) args;
- pthread_cond_t cv = cleanup_args->cv;
- int *resultPtr = cleanup_args->resultPtr;
- int nSignalsWasLeft;
- int result;
-
- if ((result = pthread_mutex_lock (&(cv->mtxUnblockLock))) != 0)
- {
- *resultPtr = result;
- return;
- }
- if (0 != (nSignalsWasLeft = cv->nWaitersToUnblock))
- {
- --(cv->nWaitersToUnblock);
- }
- else if (INT_MAX / 2 == ++(cv->nWaitersGone))
- {
-
- if (sem_wait (&(cv->semBlockLock)) != 0)
- {
- *resultPtr = errno;
-
- return;
- }
- cv->nWaitersBlocked -= cv->nWaitersGone;
- if (sem_post (&(cv->semBlockLock)) != 0)
- {
- *resultPtr = errno;
-
- return;
- }
- cv->nWaitersGone = 0;
- }
- if ((result = pthread_mutex_unlock (&(cv->mtxUnblockLock))) != 0)
- {
- *resultPtr = result;
- return;
- }
- if (1 == nSignalsWasLeft)
- {
- if (sem_post (&(cv->semBlockLock)) != 0)
- {
- *resultPtr = errno;
- return;
- }
- }
-
- if ((result = pthread_mutex_lock (cleanup_args->mutexPtr)) != 0)
- {
- *resultPtr = result;
- }
- }
- static int
- pte_cond_timedwait (pthread_cond_t * cond,
- pthread_mutex_t * mutex, const struct timespec *abstime)
- {
- int result = 0;
- pthread_cond_t cv;
- pte_cond_wait_cleanup_args_t cleanup_args;
- if (cond == NULL || *cond == NULL)
- {
- return EINVAL;
- }
-
- if (*cond == PTHREAD_COND_INITIALIZER)
- {
- result = pte_cond_check_need_init (cond);
- }
- if (result != 0 && result != EBUSY)
- {
- return result;
- }
- cv = *cond;
-
- if (sem_wait (&(cv->semBlockLock)) != 0)
- {
- return errno;
- }
- ++(cv->nWaitersBlocked);
- if (sem_post (&(cv->semBlockLock)) != 0)
- {
- return errno;
- }
-
- cleanup_args.mutexPtr = mutex;
- cleanup_args.cv = cv;
- cleanup_args.resultPtr = &result;
- pthread_cleanup_push (pte_cond_wait_cleanup, (void *) &cleanup_args);
-
- if ((result = pthread_mutex_unlock (mutex)) == 0)
- {
-
- if (sem_timedwait (&(cv->semBlockQueue), abstime) != 0)
- {
- result = errno;
- }
- }
-
- pthread_cleanup_pop (1);
-
- return result;
- }
- int
- pthread_cond_wait (pthread_cond_t * cond, pthread_mutex_t * mutex)
- {
-
- return (pte_cond_timedwait (cond, mutex, NULL));
- }
- int
- pthread_cond_timedwait (pthread_cond_t * cond,
- pthread_mutex_t * mutex,
- const struct timespec *abstime)
- {
- if (abstime == NULL)
- {
- return EINVAL;
- }
- return (pte_cond_timedwait (cond, mutex, abstime));
- }
|