Programming Tips - Programming: Obtain the ID of the current process

Date: 2011sep30 Language: C/C++ Keywords: pid, ppid Q. Programming: Obtain the ID of the current process A. On Windows:
DWORD dwPid = GetCurrentProcessId();
On Linux:
pid_t pid = getpid();
There is also getppid() for getting your parent's ID. Among other things, the process ID is useful for making unique temporary file names.