Home
last modified time | relevance | path

Searched refs:FIBER_WAIT (Results 1 – 4 of 4) sorted by relevance

/xnu-12377.61.12/tests/unit/mocks/fibers/
H A Dcondition.c52 …FIBERS_ASSERT(target->state == FIBER_WAIT, "fibers_condition_wakeup_some: waking up %d that is not… in fibers_condition_wakeup_some()
78 fibers_choose_next(FIBER_WAIT); in fibers_condition_wait()
122 …FIBERS_ASSERT(target->state == FIBER_WAIT, "fibers_condition_wakeup_identified: waking up %d that … in fibers_condition_wakeup_identified()
H A Drwlock.c71 fibers_choose_next(FIBER_WAIT); in fibers_rwlock_rdlock_helper()
129 fibers_choose_next(FIBER_WAIT); in fibers_rwlock_wrlock_helper()
186 …FIBERS_ASSERT(new_writer->state == FIBER_WAIT, "fibers_rwlock_rdunlock_helper: woken writer %d is … in fibers_rwlock_rdunlock_helper()
215 …FIBERS_ASSERT(new_writer->state == FIBER_WAIT, "fibers_rwlock_wrunlock_helper: woken writer %d is … in fibers_rwlock_wrunlock_helper()
226 …FIBERS_ASSERT(new_reader->state == FIBER_WAIT, "fibers_rwlock_wrunlock_helper: woken reader %d is … in fibers_rwlock_wrunlock_helper()
352 fibers_choose_next(FIBER_WAIT); in fibers_rwlock_upgrade()
407 …FIBERS_ASSERT(new_reader->state == FIBER_WAIT, "fibers_rwlock_downgrade: woken reader %d is not FI… in fibers_rwlock_downgrade()
H A Dmutex.c70 fibers_choose_next(FIBER_WAIT); in fibers_mutex_lock_helper()
105 …FIBERS_ASSERT(new_holder->state == FIBER_WAIT, "fibers_mutex_unlock_helper: new holder %d is not F… in fibers_mutex_unlock_helper()
H A Dfibers.h149 #define FIBER_WAIT 0x4 macro