我正在尝试编写一个函数,该函数将通过字符串中的程序名称杀死实例
unsigned int kill_all_program_instances(const char * program_name){
int res;
char buf[1024];
string first;
string second;
int lSize, pid , pos;
string command="pidof ";
FILE *fd;
memset(buf,'\0',sizeof(buf));
fd=popen((command+program_name).c_str(),"r");
unsigned int mypid = getpid();
if(fd != NULL){
fseek (fd , 0 , SEEK_END);
lSize = ftell(fd);
rewind (fd);
if (lSize <= 0)
{
printf("lsize is %d\n",lSize);
pclose(fd);
return 0;
}
.....
}
这只是函数的开始,但对于 lSize,我总是得到 -1。我跑了
pidof chromium-browse
并得到
26487 19353 16993 11504 10960 10880 10868 10829 10825 10805 8607 8263 8154 8089 7764 3965 3950
但是当我跑步时
kill_all_program_instances('chromium-browse')
对于 lSize,我仍然得到 -1。
知道我的代码有什么问题吗?
谢谢