免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1499 | 回复: 1
打印 上一主题 下一主题

[内核入门] kernel space module pid [复制链接]

论坛徽章:
1
2015年迎新春徽章
日期:2015-03-04 09:49:03
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2016-03-18 21:37 |只看该作者 |倒序浏览
本帖最后由 shihyu 于 2016-03-18 21:38 编辑
  1. #include <linux/kernel.h>
  2. #include <linux/init.h>
  3. #include <linux/module.h>
  4. #include <linux/version.h>
  5. #include <linux/kthread.h>

  6. MODULE_DESCRIPTION("Hello World !!");
  7. MODULE_AUTHOR("Bo-Yi Wu");
  8. MODULE_LICENSE("GPL");

  9. static int __init hello_init(void)
  10. {
  11.     printk(KERN_INFO "Hello, world\n");
  12.     printk(KERN_INFO "The process is \"%s\" (pid %i)\n", current->comm, current->pid);
  13.     return 0;
  14. }

  15. static void __exit hello_exit(void)
  16. {
  17.     printk(KERN_INFO " Goodbye The process is \"%s\" (pid %i)\n", current->comm, current->pid);
  18. }

  19. module_init(hello_init);
  20. module_exit(hello_exit);
复制代码
insmod hello.ko
rmmod hello.ko

  1. [ 1815.161400] Hello, world
  2. [ 1815.162181] The process is "insmod" (pid 3180)
  3. [ 1820.855711]  Goodbye The process is "rmmod" (pid 3182)
复制代码
为什么 hello_init  跟 hello_exit 的 kernel 的 pid 不同?

3180 跑完  hello_init 函数就死掉?

我用 ps | grep '3180' 找不到 , 还是  ps 无法查到 kernel pid ?


谢谢

论坛徽章:
2
寅虎
日期:2014-11-25 21:47:342015小元宵徽章
日期:2015-03-06 15:58:18
2 [报告]
发表于 2016-03-18 22:12 |只看该作者
为什么 hello_init  跟 hello_exit 的 kernel 的 pid 不同?
因为你一个是insmod,一个是rmmod,pid当然不同啦。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP