我想在我的程序中知道是否存在具有特定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():
原文链接:https://www.f2er.com/linux/440442.htmlif (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.