在Linux中,getpid()
函数用于获取当前进程的ID,而不是父进程的ID。要获取父进程的ID,你可以使用getppid()
函数。
以下是一个简单的C程序示例,演示了如何使用getppid()
函数:
#include <stdio.h>
#include <unistd.h>
int main() {
pid_t parent_pid = getppid();
printf("Parent process ID: %d\n", parent_pid);
return 0;
}
在这个示例中,getppid()
函数返回当前进程的父进程ID,然后将其打印到控制台。