免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2531 | 回复: 3
打印 上一主题 下一主题

在HP-UX 11iv2中用什么函数可以枚举当前运行的进程列表? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-02-29 15:31 |只看该作者 |倒序浏览
在HP-UX 中用什么函数可以枚举当前运行的进程列表?
或者有没有类似Solaris的/proc目录?
多谢!

论坛徽章:
0
2 [报告]
发表于 2008-03-03 20:01 |只看该作者
自己顶
高手帮帮忙了。

论坛徽章:
0
3 [报告]
发表于 2008-03-03 22:40 |只看该作者
man pstat

[ 本帖最后由 chu11cn 于 2008-3-3 22:41 编辑 ]

论坛徽章:
0
4 [报告]
发表于 2008-03-04 15:55 |只看该作者
多谢楼上大哥帮忙,已经搞定,把代码拿出来共享一下

//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 编辑 ]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP