Get the parent process ID
#include <sys/types.h> #include <process.h> pid_t getppid( void );
libc
The getppid() function gets the process ID of the parent of the calling process.
The calling process's parent's process ID.
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <process.h>
int main( void )
{
printf( "My parent is %d\n", getppid() );
return EXIT_SUCCESS;
}
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | No |
| Signal handler | Yes |
| Thread | Yes |