- 论坛徽章:
- 0
|
原帖由 mars007 于 2008-10-28 18:10 发表 ![]()
内核线程没有用户态,不会调用resume_userspace(),也就不会执行do_signal()函数
kernel thread应该不是通过signal机制来结束的吧
比如ksoftirqd/n这个kernel thread执行的函数就是ksoftirqd(),是一个循环
205 while (!kthread_should_stop()) {
//do something
216 }
其他的也是这样的
而kthread_should_stop()的定义如下
47 int kthread_should_stop(void)
48 {
49 return (kthread_stop_info.k == current);
50 }
其中kthread_stop_info是一个全局变量,那么应该是要kill一个kernel thread的时候,将kthread_stop_info.k设置为kernel thread的process descriptor就行了
------------------------------------------------------
为什么要这么实现?
个人认为kernel thread本身就不应该在exception或者interrupt返回时处理signal,因为此时kernel thread本身就在kernel mode中可能请求了kernel中的各种lock,interrupt/exception随时可能发生,如果返回是导致kernel thread结束,此时lock还没有释放,肯定是不行的。而while()循环保证所有lock都释放之后,才判断是否应该要终止kernel thread。
普通的process返回到user mode时肯定已经释放了lock,此时终止是安全的。 |
|