pub const SYS_PROC_YIELD: usize = 301; // 301usize
Yield the CPU to the scheduler.
The current thread is placed at the back of the run queue and another thread is scheduled. Returns 0 when the thread is rescheduled.
0