0

我正在尝试编写一个函数,该函数将通过字符串中的程序名称杀死实例

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。

知道我的代码有什么问题吗?

谢谢

4

2 回答 2

5

除了关于检测错误的评论/答案popen(这似乎不正确),我相信实际的问题是你试图在管道上使用 fseek/ftell,这不是一个有效的操作。管道不是传统意义上的“文件”,它是一个数据流,其中每个数据项只能读取一次。

只需阅读 usingfscanf()或类似的内容,直到它为您提供 EOF。

于 2013-06-06T09:19:57.303 回答
0

popen() 使用管道与生成的进程通信。管道不可搜索。

您根本不能在 popen 返回的 FILE* 上使用 fseek/ftell,它们总是会失败。

于 2013-06-06T09:21:10.263 回答