c – 根据进程ID确定进程是否存在

前端之家收集整理的这篇文章主要介绍了c – 根据进程ID确定进程是否存在前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想在我的程序中知道是否存在具有特定ID的进程.我实现了以下函数来实现它,它检查是否存在/ proc /< PID> / maps.但是,我注意到即使我杀了一个具有给定ID的函数,这个函数仍然会返回1.有没有更好的方法来实现我想要做的事情,如果不是这个代码有什么问题,如果有的话,为什么当它应该返回0时它返回1.

int proc_exists(pid_t pid)
{
    stringstream ss (stringstream::out);

    ss << dec << pid;

    string path = "/proc/" + ss.str() + "/maps"; 

    ifstream fp( path.c_str() );

    if ( !fp )
        return 0;
    return 1;
}
最佳答案
使用带信号0的kill():

if (0 == kill(pid,0))
{
    // Process exists.
}

man kill开始:

If sig is 0,then no signal is sent,but error checking is still performed; this can be used to check for the existence of a process ID or process group ID.

原文链接:https://www.f2er.com/linux/440442.html

猜你在找的Linux相关文章