Searched refs:LOS_CurTaskIDGet (Results 1 – 25 of 106) sorted by relevance
12345
| /kernel/liteos_m/testsuites/sample/kernel/signal/ |
| D | It_los_signal_001.c | 55 ret = LOS_SignalSend(LOS_CurTaskIDGet(), SIGUSR1); in Testcase() 62 ret = LOS_SignalSend(LOS_CurTaskIDGet(), SIGUSR1); in Testcase() 70 ret = LOS_SignalSend(LOS_CurTaskIDGet(), SIGUSR1); in Testcase()
|
| D | It_los_signal_002.c | 58 ret = LOS_SignalSend(LOS_CurTaskIDGet(), SIGUSR1); in Testcase() 62 ret = LOS_SignalSend(LOS_CurTaskIDGet(), SIGUSR2); in Testcase()
|
| D | It_los_signal_005.c | 55 ret = LOS_SignalSend(LOS_CurTaskIDGet(), SIGUSR1); in Testcase() 61 ret = LOS_SignalSend(LOS_CurTaskIDGet(), SIGUSR1); in Testcase()
|
| /kernel/liteos_m/components/backtrace/ |
| D | los_backtrace.c | 86 UINT32 taskID = LOS_CurTaskIDGet(); in OsStackAddrGet() 107 UINT32 taskID = LOS_CurTaskIDGet(); in OsStackAddrGet() 175 taskCB = OS_TCB_FROM_TID(LOS_CurTaskIDGet()); in IsValidFP() 295 UINT32 taskID = LOS_CurTaskIDGet(); in OsStackAddrGet() 315 UINT32 taskID = LOS_CurTaskIDGet(); in OsStackAddrGet() 390 UINT32 taskID = LOS_CurTaskIDGet(); in FindSuitableStack() 504 UINT32 taskID = LOS_CurTaskIDGet(); in FindSuitableStack() 630 taskID = LOS_CurTaskIDGet(); in LOS_RecordLR()
|
| /kernel/liteos_a/compat/posix/src/ |
| D | sched.c | 74 taskID = LOS_CurTaskIDGet(); in sched_setaffinity() 106 taskID = LOS_CurTaskIDGet(); in sched_getaffinity()
|
| /kernel/liteos_m/kal/posix/src/ |
| D | pthread_mutex.c | 341 ret = MuxPreCheck(mutex, OS_TCB_FROM_TID(LOS_CurTaskIDGet())); in pthread_mutex_timedlock() 361 (muxPended->owner == OS_TCB_FROM_TID(LOS_CurTaskIDGet()))) { in pthread_mutex_timedlock() 389 LosTaskCB *runTask = OS_TCB_FROM_TID(LOS_CurTaskIDGet()); in pthread_mutex_lock() 426 ret = MuxPreCheck(mutex, OS_TCB_FROM_TID(LOS_CurTaskIDGet())); in pthread_mutex_trylock() 453 ret = MuxPreCheck(mutex, OS_TCB_FROM_TID(LOS_CurTaskIDGet())); in pthread_mutex_unlock()
|
| D | errno.c | 44 runTask = OS_TCB_FROM_TID(LOS_CurTaskIDGet()); in __errno_location()
|
| /kernel/liteos_a/net/lwip-2.1/porting/src/ |
| D | sys_arch.c | 112 if (lwprot_thread != LOS_CurTaskIDGet()) { in sys_arch_protect() 116 lwprot_thread = LOS_CurTaskIDGet(); in sys_arch_protect() 132 if (lwprot_thread == LOS_CurTaskIDGet()) { in sys_arch_unprotect()
|
| /kernel/liteos_a/testsuites/kernel/sample/kernel_extend/cpup/full/ |
| D | It_extend_cpup_006.c | 82 ret = LOS_GetTaskScheduler(LOS_CurTaskIDGet()); in TaskF01() 84 ret = LOS_SetTaskScheduler(LOS_CurTaskIDGet(), ret, TASK_PRIO_TEST - 2); in TaskF01()
|
| /kernel/liteos_m/testsuites/sample/posix/mqueue/ |
| D | It_posix_queue_025.c | 40 g_mqueueTaskPID = LOS_CurTaskIDGet(); in PthreadF01() 89 "/mq025_%d", LOS_CurTaskIDGet()); in Testcase()
|
| D | It_posix_queue_042.c | 38 "/mq042_%d", LOS_CurTaskIDGet()); in Testcase()
|
| D | It_posix_queue_014.c | 39 "/mq014_%d", LOS_CurTaskIDGet()); in Testcase()
|
| D | It_posix_queue_004.c | 39 "/mq004_%d", LOS_CurTaskIDGet()); in Testcase()
|
| D | It_posix_queue_016.c | 39 "/mq016-1_%d", LOS_CurTaskIDGet()); in Testcase()
|
| D | It_posix_queue_021.c | 39 "/mq021_%d", LOS_CurTaskIDGet()); in Testcase()
|
| D | It_posix_queue_017.c | 39 "/mq017-1_%d", LOS_CurTaskIDGet()); in Testcase()
|
| D | It_posix_queue_013.c | 39 "/mq013_%d", LOS_CurTaskIDGet()); in Testcase()
|
| D | It_posix_queue_015.c | 42 "/mq015_%d", LOS_CurTaskIDGet()); in Testcase()
|
| D | It_posix_queue_001.c | 47 LOS_CurTaskIDGet()); in Testcase()
|
| /kernel/liteos_m/components/iar_tls/ |
| D | los_iar_tls.c | 47 UINT32 taskID = LOS_CurTaskIDGet(); in __iar_dlib_perthread_access() 63 UINT32 taskID = LOS_CurTaskIDGet(); in __aeabi_read_tp()
|
| /kernel/liteos_m/components/net/lwip-2.1/porting/src/ |
| D | sys_arch.c | 109 if (lwprot_thread != LOS_CurTaskIDGet()) { in sys_arch_protect() 113 lwprot_thread = LOS_CurTaskIDGet(); in sys_arch_protect() 129 if (lwprot_thread == LOS_CurTaskIDGet()) { in sys_arch_unprotect()
|
| /kernel/liteos_m/testsuites/sample/kernel/task/ |
| D | It_los_task_121.c | 36 UINT32 ret = LOS_TaskDetach(LOS_CurTaskIDGet()); in TaskDeatchf01()
|
| D | It_los_task_120.c | 36 UINT32 ret = LOS_TaskDetach(LOS_CurTaskIDGet()); in TaskDeatchf01()
|
| D | It_los_task_119.c | 36 int ret = LOS_TaskDetach(LOS_CurTaskIDGet()); in TaskDeatchf01()
|
| /kernel/liteos_a/testsuites/kernel/sample/kernel_base/core/task/smoke/ |
| D | It_los_task_045.c | 47 uwSwTmrTaskID = LOS_CurTaskIDGet(); in SwtmrF01()
|
12345