- 论坛徽章:
- 0
|
Linux内核进程调度程序的switch_to
进程调度的代码:
asmlinkage void __sched schedule(void)
{
。。。。。。
prev = context_switch(rq, prev, next);
。。。。。。
}
static inline
task_t * context_switch(runqueue_t *rq, task_t *prev, task_t *next)
{
。。。。。。
/* Here we just switch the register state and the stack. */
switch_to(prev, next, prev);
return prev;
}
#define switch_to(prev,next,last) do { \
unsigned long esi,edi; \
asm volatile("pushl %%ebp\n\t" \
"movl %%esp,%0\n\t" /* save ESP */ \
"movl %5,%%esp\n\t" /* restore ESP */ \
"movl $1f,%1\n\t" /* save EIP */ \
"pushl %6\n\t" /* restore EIP */ \
"jmp __switch_to\n" \
"1:\t" \
"popl %%ebp\n\t" \
:"=m" (prev->thread.esp),"=m" (prev->thread.eip), \
"=a" (last),"=S" (esi),"=D" (edi) \
:"m" (next->thread.esp),"m" (next->thread.eip), \
"2" (prev), "d" (next)); \
} while (0)
我想问下,这个switch_to(prev, next, prev)执行后prev指向哪个进程,另外next从哪开始运行的 |
|