Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
exitWithDefaultSignalHandler() should block until signal handler retu…
…rns (#464) raise() system call does the same as kill() system call in a single-threaded program. In a multithreaded program, it does the same as pthread_kill() which ensures that if the signal causes a handler to be called, raise() will return only after the signal handler has returned.
- Loading branch information