- 论坛徽章:
- 0
|
本帖最后由 kitifaye 于 2010-09-01 10:09 编辑
最近在找一个问题不得不看到内核源码main.c(我是菜鸟~~)
在rest_init函数中
426 static noinline void __init_refok rest_init(void)
427 __releases(kernel_lock)
428 {
429 int pid;
430
431 rcu_scheduler_starting();
432 /*
433 * We need to spawn init first so that it obtains pid 1, however
434 * the init task will end up wanting to create kthreads, which, if
435 * we schedule it before we create kthreadd, will OOPS.
436 */
437 kernel_thread(kernel_init, NULL, CLONE_FS | CLONE_SIGHAND); ------------------->1
438 numa_default_policy();
439 pid = kernel_thread(kthreadd, NULL, CLONE_FS | CLONE_FILES);------------------->2
440 rcu_read_lock();
441 kthreadd_task = find_task_by_pid_ns(pid, &init_pid_ns);
442 rcu_read_unlock();
443 complete(&kthreadd_done);
444
445 /*
446 * The boot idle thread must execute schedule()
447 * at least once to get things moving:
448 */
449 init_idle_bootup_task(current);
450 preempt_enable_no_resched();
451 schedule();
452 preempt_disable();
453
454 /* Call into cpu_idle with preempt disabled */
455 cpu_idle();
456 }
上面1处是创建1号init进程,求教2这里是干什么用来
菜得一坨的鸟,求指教~~ |
|