📄 wakeup.c
字号:
/* wakeup.c - wakeup */
#include <conf.h>
#include <kernel.h>
#include <proc.h>
#include <q.h>
#include <sleep.h>
/*------------------------------------------------------------------------
* wakeup -- called by clock interrupt dispatcher to awaken processes
*------------------------------------------------------------------------
*/
INTPROC wakeup()
{
while (nonempty(clockq) && firstkey(clockq) <= 0)
ready(getfirst(clockq),RESCHNO);
if ( slnempty = nonempty(clockq) )
sltop = & q[q[clockq].qnext].qkey;
resched();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -