Home
last modified time | relevance | path

Searched refs:muxPosted (Results 1 - 5 of 5) sorted by relevance

/kernel/liteos_m/kernel/src/
H A Dlos_mux.c274 LosMuxCB *muxPosted = GET_MUX(muxHandle); in LOS_MuxPost() local
281 (muxPosted->muxStat == OS_MUX_UNUSED)) { in LOS_MuxPost()
292 if ((muxPosted->muxCount == 0) || (muxPosted->owner != runningTask)) { in LOS_MuxPost()
297 if (--(muxPosted->muxCount) != 0) { in LOS_MuxPost()
299 OsHookCall(LOS_HOOK_TYPE_MUX_POST, muxPosted); in LOS_MuxPost()
303 if ((muxPosted->owner->priority) != muxPosted->priority) { in LOS_MuxPost()
304 (VOID)OsSchedModifyTaskSchedParam(muxPosted->owner, muxPosted in LOS_MuxPost()
[all...]
/kernel/liteos_m/kal/posix/src/
H A Dpthread_mutex.c279 LosMuxCB *muxPosted = NULL; in MuxPostForPosix() local
284 muxPosted = GET_MUX(muxHandle); in MuxPostForPosix()
287 if (muxPosted->muxStat == OS_MUX_UNUSED) { in MuxPostForPosix()
293 if ((muxPosted->muxCount == 0) || (muxPosted->owner != runningTask)) { in MuxPostForPosix()
298 if ((--(muxPosted->muxCount) != 0) && (mutex->stAttr.type == PTHREAD_MUTEX_RECURSIVE)) { in MuxPostForPosix()
300 OsHookCall(LOS_HOOK_TYPE_MUX_POST, muxPosted); in MuxPostForPosix()
304 if ((muxPosted->owner->priority) != muxPosted->priority) { in MuxPostForPosix()
305 (VOID)OsSchedModifyTaskSchedParam(muxPosted in MuxPostForPosix()
[all...]
H A Dpthread_cond.c271 LosMuxCB *muxPosted = NULL; in pthread_cond_timedwait() local
277 muxPosted = GET_MUX(mutex->handle); in pthread_cond_timedwait()
278 if ((mutex->stAttr.type == PTHREAD_MUTEX_ERRORCHECK) && (g_losTask.runTask != muxPosted->owner)) { in pthread_cond_timedwait()
/kernel/liteos_a/kernel/extended/hook/include/
H A Dlos_hook_types.h81 LOS_HOOK_TYPE_DEF(LOS_HOOK_TYPE_MUX_POST, (const LosMux *muxPosted)) \
/kernel/liteos_m/utils/internal/
H A Dlos_hook_types.h87 LOS_HOOK_TYPE_DEF(LOS_HOOK_TYPE_MUX_POST, (const LosMuxCB *muxPosted)) \

Completed in 3 milliseconds