ubuntu c语言 获取当前程序的父进程ID
在Ubuntu系统中,可以使用getppid()函数来获取当前程序的父进程ID。以下是示例代码:
#include <stdio.h>
#include <unistd.h>
int main() {
pid_t parent_pid = getppid();
printf("Parent process ID: %d\n", parent_pid);
return 0;
}
注意:在Ubuntu系统中,所有进程的父进程都是init进程。因此,如果当前程序的父进程ID是1,则表示其父进程已经退出或被终止。
原文地址: https://www.cveoy.top/t/topic/fj5U 著作权归作者所有。请勿转载和采集!