- 论坛徽章:
- 0
|
本帖最后由 nathan10 于 2010-09-07 11:49 编辑
- static inline void __sleep_on(struct task_struct **p, int state)
- {
- struct task_struct *tmp;
- unsigned int flags;
- if (!p)
- return;
- if (current == &(init_task.task))
- panic("task[0] trying to sleep");
- __asm__("pushfl ; popl %0":"=r" (flags));
- tmp = *p;
- *p = current;
- current->state = state;
- /* make sure interrupts are enabled: there should be no more races here */
- sti();
- repeat: schedule();
- if (*p && *p != current) {
- current->state = TASK_UNINTERRUPTIBLE;
- (**p).state = 0;
- goto repeat;
- }
- if (*p = tmp)
- tmp->state=0;
- __asm__("pushl %0 ; popfl"::"r" (flags));
- }
复制代码 上述代码repeat位置执行任务调度schedule()后,为何一定在当前这个等待任务*P被唤醒以后,调度程序才返回这里,并继续向下执行?这里我遗漏了什么吗?
百思不得其解。。。请教,谢谢 |
|