- 论坛徽章:
- 0
|
刚刚看情景分析到内核线程这里,有点疑惑:
439int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
02. 440{
03. 441 long retval, d0;
04. 442
05. 443 __asm__ __volatile__(
06. 444 "movl %%esp,%%esi\n\t"
07. 445 "int $0x80\n\t" /* Linux/i386 system call */
08. 446 "cmpl %%esp,%%esi\n\t" /* child or parent? */
09. 447 "je 1f\n\t" /* parent - jump */
10. 448 /* Load the argument into eax, and push it. That way, it does
11. 449 * not matter whether the called function is compiled with
12. 450 * -mregparm or not. */
13. 451 "movl %4,%%eax\n\t"
14. 452 "pushl %%eax\n\t"
15. 453 "call *%5\n\t" /* call fn */
16. 454 "movl %3,%0\n\t" /* exit */
17. 455 "int $0x80\n"
18. 456 "1:\t"
19. 457 :"=&a" (retval), "=&S" (d0)
20. 458 :"0" (__NR_clone), "i" (__NR_exit),
21. 459 "r" (arg), "r" (fn),
22. 460 "b" (flags | CLONE_VM)
23. 461 : "memory");
24. 462 return retval;
25. 463}
不明白 ECX为什么不赋值,因为int $80后,会调用sys_clone
asmlinkage int sys_clone(struct pt_regs regs)
696 {
697 unsigned long clone_flags;
698 unsigned long newsp;
699
700 clone_flags = regs.ebx;
701 newsp = regs.ecx;
702 if (!newsp)
703 newsp = regs.esp;
704 return do_fork(clone_flags, newsp, ®s, 0);
705 }
第701行,会取ecx做为newsp,如果为0,则为当前的堆栈,
希望大侠答复,感谢啊 |
|