在 Linux 系統中,你可以使用 getppid()
函數來獲取當前進程的父進程 ID(Parent Process ID)
下面是一個簡單的示例代碼,展示了如何使用 getppid()
函數:
#include <stdio.h>
#include <unistd.h>
int main() {
pid_t ppid = getppid();
printf("The parent process ID of this process is: %d\n", ppid);
return 0;
}
在這個示例中,我們首先包含了 <stdio.h>
和 <unistd.h>
頭文件,這兩個頭文件分別提供了 printf()
函數和 getppid()
函數的聲明。然后,在 main()
函數中,我們調用了 getppid()
函數并將返回值存儲在 ppid
變量中。最后,我們使用 printf()
函數輸出父進程 ID。
當你運行這個程序時,它將輸出當前進程的父進程 ID。請注意,由于每個進程都是另一個進程創建的,因此這個程序將輸出你運行該程序時作為父進程的那個進程的 ID。