pid); } task_init.c: In function '....">

当前位置:  技术问答>linux和unix

关于 task_struct 结构????? 编译问题,求指点。

    来源: 互联网  发布时间:2017-04-18

    本文导语:  #include  int main() {         struct task_struct *task;         for(task=current; task!=&init_task; task=task->parent)                 ;         printf("%dn",task->pid); } task_init.c: In function 'main': task_init.c:7:11: error: 'current' und...

#include 

int main()
{
        struct task_struct *task;
        for(task=current; task!=&init_task; task=task->parent)
                ;
        printf("%dn",task->pid);
}


task_init.c: In function 'main':
task_init.c:7:11: error: 'current' undeclared (first use in this function)
task_init.c:7:11: note: each undeclared identifier is reported only once for each function it appears in
task_init.c:7:27: error: 'init_task' undeclared (first use in this function)
task_init.c:7:47: error: dereferencing pointer to incomplete type
task_init.c:9:2: warning: incompatible implicit declaration of built-in function 'printf'
task_init.c:9:20: error: dereferencing pointer to incomplete type

上面的程序如何能编译,目的是获得到 第一个进程init的 pid。

|
你写的是用户态的C程序吧,task_struct是内核态的结构,不能直接用...

在头文件和其他一般会有宏控制。

你改成内核模块、驱动的方式来访问task列表吧,建议搜索下Linux驱动相关的基本知识先。

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 如何由pid获得task_struct?
  • ubuntu11.04 task_struct结构
  • 如何用pid获取该进程对应的task_struct
  • 进程运行时,内核的哪部分来维护task_struct结构?
  • 关于task_struct,页表,页目录
  • 如何在用户进程中获取当前进程的task_struct结构地址?
  • linux2.4.0:task_struct成员意义问题
  • 关于task_struct flags的race condition
  • struct task_struct * get_current(void)函数的解释--help!!
  • 谁有task_struct数据结构中文注解---急救啊!!!!在线等待


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,