如何在用户程序中获取当前进程的task
答案:1 悬赏:80 手机版
解决时间 2021-12-01 10:38
- 提问者网友:聂風
- 2021-12-01 07:38
如何在用户程序中获取当前进程的task
最佳答案
- 五星知识达人网友:胯下狙击手
- 2021-12-01 08:31
想得到当前进程的task ID
我只知道在 Kernel 模式下,可以读取全局变量current。
#include;
#incldue;
int init_module()
{
printk("current id is %d\n", current->;pid);
return 0;
}
用以下命令编译:
gcc -D__KERNEL__ -D__MODULE -I /usr/src/linux/include test.c
加载:
insmod ./test.o
我只知道在 Kernel 模式下,可以读取全局变量current。
#include
#incldue
int init_module()
{
printk("current id is %d\n", current->;pid);
return 0;
}
用以下命令编译:
gcc -D__KERNEL__ -D__MODULE -I /usr/src/linux/include test.c
加载:
insmod ./test.o
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯