9.10 getpid/getppid

int getpid();
int getppid();

getpid returns the process ID (PID) of the calling process. getppid does the same but it returns the one of the parent, which is the process that created the callee by a myriad of ways.

This functions are always successful.