Linux获取进程信息[转]

[linux] 获取进程信息

遍历所有的进程

for_each_process,这个函数本身就可以遍历所有的进程,代码:

struct task_struct *p;
char buff[1024];


if(offset>0)

return 0;
//加锁(SMP)
read_lock(&tasklist_lock);

for_each_process(p)

{

sprintf(buff,"%d/t%d/t/t%s/n",p->pid,p->parent->pid,p->comm);

}
//解锁

read_unlock(&tasklist_lock);


for_each_process是在linux/sched.h中的宏定义:
#define for_each_process(p) for (p = &init_task ; (p = next_task(p)) != &init_task ; )
作用是从init_task遍历所有的进程描述符。


当前进程

linux内核是如何获取当前进程的任务结构指针的,以下代码均参照linux内核2.4.0的源码
在include/asm-i386/ current.h中

#ifndef _I386_CURRENT_H
#define _I386_CURRENT_H

struct task_struct;

static inline struct task_struct * get_current(void)
{
struct task_struct *current;
__asm__("andl %%esp,%0; ":"=r" (current) : "0" (~8191UL));
return current;
}
#define current get_current()

#endif /* !(_I386_CURRENT_H) */
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值