Searched refs:kthread (Results 1 – 5 of 5) sorted by relevance
1 # kthread 内核线程3   内核线程模块定义在`common/kthread.h`中,提供对内核线程的及支持功能。内核线程作为内核的“分身”,能够提升系统的并行化程度以及故障容错能力。11   当内核线程被创建后,虽然会加入调度队列,但是当其被第一次调度,执行引导程序`kthread()`后,将进入休眠状态。直到其他模块使用`process_wakeup()`,它才…75   当外部模块希望停止一个内核线程时,调用该函数,向kthread发送停止消息,请求其结束。并等待其退出,返回内核线程的退出返回值。
7 kthread
94 struct kthread_info_t *kthread = to_kthread(pcb); in __kthread_create_on_node() local97 kthread->full_name = full_name; in __kthread_create_on_node()153 static int kthread(void *_create) in kthread() function193 pid_t pid = kernel_thread(kthread, create, CLONE_FS | CLONE_SIGNAL); in __create_kthread()322 struct kthread_info_t *kthread = to_kthread(pcb); in free_kthread_struct() local323 if (!kthread) in free_kthread_struct()328 kfree(kthread->full_name); in free_kthread_struct()329 kfree(kthread); in free_kthread_struct()
33 - [x] kthread机制
100 - kthread机制