Lines Matching refs:Ready
22 - Ready: The task is in the Ready queue and waits for scheduling by the CPU.
36 - Init→Ready:
37 …tialization is complete, the task is inserted into the scheduling queue and enters the Ready state.
39 - Ready→Running:
40 … the highest priority in the Ready queue is executed and enters the Running state. Then, this task…
43 …. Then, a task switching is triggered to run the task with the highest priority in the Ready queue.
45 - Blocked→Ready:
46 …semaphore is read), the task is added to the Ready queue and will change from the Blocked state to…
48 - Ready→Blocked:
49 …When a task in the Ready state is blocked (suspended), the task changes to the Blocked state and i…
51 - Running→Ready:
52 …riority in the Ready queue changes to the Running state. The originally running task changes to th…
75 | LOS_TaskCreateOnly | Creates a task and blocks it. The task will not be added to the Ready queue …
83 | LOS_TaskSuspend | Suspends a task. The suspended task will be removed from the Ready queue. …
87 …the current task from the queue of the tasks with the same priority to the end of the Ready queue.|
241 …/* Unlock task scheduling. The task with the highest priority in the Ready queue will be executed.…