> PID为Linux工作?

我需要包含一个库吗? 任何人都可以请详细说明吗?

我知道是用来获取当前任务被调用的进程ID

但我想用current-> pid打印一些东西

printk("My current process id/pid is %dn", current->pid);

...并给我一个错误

error: dereferencing pointer to incomplete type


您正在寻找#include <linux/sched.h> 。 这就是task_struct被声明的地方。


你的代码应该工作。 你可能错过了一些标题。

current是一个在linux/arch/x86/include/asm/current.h定义的per-cpu变量(所有代码都是针对x86的):

DECLARE_PER_CPU(struct task_struct *, current_task);
static __always_inline struct task_struct *get_current(void)
{
    return percpu_read_stable(current_task);
}
#define current get_current()

current指向在给定时刻在CPU上运行的任务。 它的类型是struct task_struct ,它在linux/include/linux/sched.h

struct task_struct {
    ...
    pid_t pid;   // process identifier
    pid_t tgid;  // process thread group id
    ...
};

您可以在Linux交叉参考中浏览这些文件的代码:

  • current.h
  • sched.h中

  • 我认为你正在寻找getpid()系统调用。 我不知道current是什么。

    链接地址: http://www.djcxy.com/p/13687.html

    上一篇: >pid work for linux?

    下一篇: How do I copy folder with files to another folder in Unix/Linux?