File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
src/unix/notbsd/linux/musl Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,16 @@ pub const PTRACE_INTERRUPT: ::c_int = 0x4207;
138
138
pub const PTRACE_LISTEN : :: c_int = 0x4208 ;
139
139
pub const PTRACE_PEEKSIGINFO : :: c_int = 0x4209 ;
140
140
141
+ pub const PTRACE_O_EXITKILL : :: c_int = 1048576 ;
142
+ pub const PTRACE_O_TRACECLONE : :: c_int = 8 ;
143
+ pub const PTRACE_O_TRACEEXEC : :: c_int = 16 ;
144
+ pub const PTRACE_O_TRACEEXIT : :: c_int = 64 ;
145
+ pub const PTRACE_O_TRACEFORK : :: c_int = 2 ;
146
+ pub const PTRACE_O_TRACESYSGOOD : :: c_int = 1 ;
147
+ pub const PTRACE_O_TRACEVFORK : :: c_int = 4 ;
148
+ pub const PTRACE_O_TRACEVFORKDONE : :: c_int = 32 ;
149
+ pub const PTRACE_O_SUSPEND_SECCOMP : :: c_int = 2097152 ;
150
+
141
151
pub const MADV_DODUMP : :: c_int = 17 ;
142
152
pub const MADV_DONTDUMP : :: c_int = 16 ;
143
153
You can’t perform that action at this time.
0 commit comments