Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: handle core dumped signals for process exit
The ProcessExit event returns a signal that the process received when it exited. However, core dumped signals (SIGSEGV, SIGILL, etc.) are not returned. This patch fixes the issue by checking if the process exit code has the core dump bit set (7th bit, 0x80), and returns the correct signal. Signed-off-by: Justin Chen <[email protected]>
- Loading branch information