Home
last modified time | relevance | path

Searched refs:tskChildBitMap (Results 1 – 2 of 2) sorted by relevance

/kernel/uniproton/src/core/kernel/task/
Dprt_amp_task_internal.h32 U32 *tskChildBitMap = NULL; in OsGetReadyList() local
38 tskChildBitMap = &runQue->tskChildBitMap[0]; in OsGetReadyList()
47 tskChildBitMap[priority >> OS_TSK_PRIO_BIT_MAP_POW] |= OS_SET_CHILD_BIT_MAP(priority); in OsGetReadyList()
76 U32 *tskChildBitMap = NULL; in OsDequeueTaskAmp() local
84 tskChildBitMap = &runQue->tskChildBitMap[0]; in OsDequeueTaskAmp()
90 tskChildBitMap[priority >> OS_TSK_PRIO_BIT_MAP_POW] &= OS_CLR_CHILD_BIT_MAP(priority); in OsDequeueTaskAmp()
93 if (tskChildBitMap[priority >> OS_TSK_PRIO_BIT_MAP_POW] == 0) { in OsDequeueTaskAmp()
/kernel/uniproton/src/core/kernel/include/
Dprt_task_external.h30 U32 tskChildBitMap[OS_GET_WORD_NUM_BY_PRIONUM(OS_TSK_NUM_OF_PRIORITIES)]; member
210 rdyListIdx = OsGetLmb1(g_runQueue.tskChildBitMap[childBitMapIdx]); in OsTskHighestSet()