作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了一个模块,用户可以在其中读取或写入 proc 文件 - 如何确定在内核级编程中读取或写入的用户进程中的线程数?
最佳答案
在你的读/写函数中使用current
作为指向当前任务的指针(current task_struct
):
#include <linux/sched.h>
struct task_struct * t;
for (t = next_thread(current); t != current; t = next_thread(t)) {
// do the stuff
}
关于multithreading - 如何访问当前从用户空间读取/写入的线程数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12655742/
我是一名优秀的程序员,十分优秀!