- 论坛徽章:
- 0
|
多谢楼上大哥帮忙,已经搞定,把代码拿出来共享一下
//plist.c
#include <sys/pstat.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
//每次取10个进程
#define PS_BUFF_SIZE ((size_t)10)
int main(int argc,char* argv[])
{
struct pst_status* pst = (struct pst_status*)malloc(sizeof(struct pst_status)*PS_BUFF_SIZE);
int i, count;
int idx = 0;
printf(" PID\t\tCMD\n") ;
printf("===============================================\n") ;
while ((count = pstat_getproc(pst, sizeof(pst_status), PS_BUFF_SIZE, idx)) > 0) {
for (i = 0; i < count; i++) {
printf("%6d\t\t%s\n", (pst+i)->pst_pid,(pst+i)->pst_cmd);
}
idx = pst[count-1].pst_idx + 1;
}
if (count == -1) {
perror("pstat_getproc()");
}
free((char*)pst) ;
return 0 ;
}
编译的时候一定要加-D_PSTAT64,要不然运行失败
aCC -D_PSTAT64 -o plist plist.c
[ 本帖最后由 lov 于 2008-3-4 16:01 编辑 ] |
|