在linux 0.11内核中,sleep_if_empty为什么不会引起死锁?详细描述在帖子内
先贴代码:程序代码:
static void sleep_if_empty(struct tty_queue * queue) { cli(); while (!current->signal && EMPTY(*queue)) interruptible_sleep_on(&queue->proc_list); sti(); }
其中interruptible_sleep_on 在current task 进入TASK_INTERRUPTIBLE 后会引起进程切换, 因为此时 中断已经被屏蔽,所以 sti 一直无法执行,切换到的进程就一直会运行下去,这不就引起死锁了吗?有大佬帮忙解惑吗?