File tree Expand file tree Collapse file tree
src/unix/linux_like/linux/gnu Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4495,6 +4495,9 @@ fn test_linux(target: &str) {
44954495 // Linux 6.14
44964496 "AT_EXECVE_CHECK" => true ,
44974497
4498+ // FIXME(linux): Requires >= 6.16 kernel headers.
4499+ "PTRACE_SET_SYSCALL_INFO" => true ,
4500+
44984501 _ => false ,
44994502 }
45004503 } ) ;
Original file line number Diff line number Diff line change @@ -345,6 +345,7 @@ PR_SET_VMA_ANON_NAME
345345PTHREAD_MUTEX_ADAPTIVE_NP
346346PTRACE_GET_SYSCALL_INFO
347347PTRACE_GET_SYSCALL_USER_DISPATCH_CONFIG
348+ PTRACE_SET_SYSCALL_INFO
348349PTRACE_SET_SYSCALL_USER_DISPATCH_CONFIG
349350PTRACE_SYSCALL_INFO_ENTRY
350351PTRACE_SYSCALL_INFO_EXIT
Original file line number Diff line number Diff line change @@ -748,6 +748,7 @@ pub const PTRACE_PEEKSIGINFO: c_uint = 0x4209;
748748pub const PTRACE_GETSIGMASK : c_uint = 0x420a ;
749749pub const PTRACE_SETSIGMASK : c_uint = 0x420b ;
750750pub const PTRACE_GET_SYSCALL_INFO : c_uint = 0x420e ;
751+ pub const PTRACE_SET_SYSCALL_INFO : c_uint = 0x4212 ;
751752pub const PTRACE_SYSCALL_INFO_NONE : crate :: __u8 = 0 ;
752753pub const PTRACE_SYSCALL_INFO_ENTRY : crate :: __u8 = 1 ;
753754pub const PTRACE_SYSCALL_INFO_EXIT : crate :: __u8 = 2 ;
You can’t perform that action at this time.
0 commit comments