Skip to content
Snippets Groups Projects
Verified Commit c23d36e8 authored by jD91mZM2's avatar jD91mZM2
Browse files

ptrace: stop on fexec

parent 9ecdc11d
No related branches found
No related tags found
1 merge request!50ptrace: stop on fexec
......@@ -190,6 +190,7 @@ bitflags! {
const PTRACE_STOP_SIGNAL = 0x0000_0000_0000_0008;
const PTRACE_STOP_BREAKPOINT = 0x0000_0000_0000_0010;
const PTRACE_STOP_EXIT = 0x0000_0000_0000_0020;
const PTRACE_STOP_EXEC = 0x0000_0000_0000_0040;
const PTRACE_STOP_MASK = 0x0000_0000_0000_00FF;
const PTRACE_EVENT_CLONE = 0x0000_0000_0000_0100;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment