我正在尝试在C中实现ps命令,因此我遇到了很多奇怪的错误。
#include <dirent.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/procfs.h>
#include <fcntl.h>
#include <sys/ioctl.h>
int fdproc;
DIR *dirp;
struct dirent *DirEntry;
struct elf_prpsinfo pinfo;
/*
* open the /proc directory for reading process statuses
*/
int main()
{
if ((dirp = opendir("/proc")) == (DIR *)NULL)
{
perror("/proc");
exit(1);
}
/*
* loop for each process in the system
*/
while(DirEntry = readdir(dirp))
{
if (DirEntry->d_name[0] != '.')
{
strcpy(procbuf, "/proc/");
strcat(procbuf, DirEntry->d_name);
}
if ((fdproc = open(procbuf, O_RDONLY)) < 0)
{
continue;
}
/*
* get the ps status for the process
*/
if (ioctl(fdproc, PIOCPSINFO, &pinfo) < 0)
{
close(fdproc);
continue;
}
/* process the pinfo stuff here, see
/usr/include/sys/procfs.h for details */
close(fdproc);
}
}
我在互联网上找到了这个代码,在完成了我的一些操作后,我仍然遇到一些奇怪的错误:
‘PIOCPSINFO’ undeclared
‘procbuf’ undeclared
我认为是Ubuntu中预先定义的东西。有什么建议吗?
答案 0 :(得分:0)
您的错误问题:
定义char * procbuf
然后尝试检查/ proc目录是否已挂载,以便您具有访问权限或pid名称目录属性。还请阅读有关ioctl函数的参数请求的更多信息,以便您了解什么样的方法可以带你进一步解决这个问题。