- 论坛徽章:
- 0
|
一个很简单的问题?
#include <stdio.h>;
#include <signal.h>;
#include <string.h>;
#define BUF_SIZE 200
#define ITEM_SIZE 40
main(int argc, char * argv[] )
{
FILE *fp;
char buffer[BUF_SIZE];
char pid[ITEM_SIZE], proc[ITEM_SIZE];
int i;
if (argc<2)
{
fprintf(stderr, "Usage %s processname\n",argv[0]);
exit(0);
}
if ((fp = popen("ps -e -o pid -o comm", "r" ) != NULL)
{
fgets(buffer, BUF_SIZE, fp);
while (fgets(buffer, BUF_SIZE, fp))
{
sscanf(buffer, "%s%s", pid, proc);
for (i=0; i<argc-1; i++)
if (!memcmp(proc, argv[i+1], strlen(proc)))
kill(atol(pid),SIGUSR1);
}
pclose(fp);
}
}
我想得到 fp 的个数应该怎么做?? |
|