Skip to content

Instantly share code, notes, and snippets.

@jdx
Last active May 4, 2020 03:33
Show Gist options
  • Save jdx/f40709ea7abfd3b76f8886cc14111c51 to your computer and use it in GitHub Desktop.
Save jdx/f40709ea7abfd3b76f8886cc14111c51 to your computer and use it in GitHub Desktop.
c++ check if pid is running
bool pid_id_active(pid_t pid) {
return kill(pid, 0) == 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment