File tree Expand file tree Collapse file tree 4 files changed +8
-0
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -1991,6 +1991,7 @@ PTRACE_EVENT_VFORK_DONE
19911991PTRACE_GETEVENTMSG
19921992PTRACE_GETREGSET
19931993PTRACE_GETSIGINFO
1994+ PTRACE_GETSIGMASK
19941995PTRACE_INTERRUPT
19951996PTRACE_KILL
19961997PTRACE_LISTEN
@@ -2016,6 +2017,7 @@ PTRACE_SEIZE
20162017PTRACE_SETOPTIONS
20172018PTRACE_SETREGSET
20182019PTRACE_SETSIGINFO
2020+ PTRACE_SETSIGMASK
20192021PTRACE_SINGLESTEP
20202022PTRACE_SYSCALL
20212023PTRACE_TRACEME
Original file line number Diff line number Diff line change @@ -852,6 +852,8 @@ pub const PTRACE_SEIZE: ::c_uint = 0x4206;
852852pub const PTRACE_INTERRUPT : :: c_uint = 0x4207 ;
853853pub const PTRACE_LISTEN : :: c_uint = 0x4208 ;
854854pub const PTRACE_PEEKSIGINFO : :: c_uint = 0x4209 ;
855+ pub const PTRACE_GETSIGMASK : :: c_uint = 0x420a ;
856+ pub const PTRACE_SETSIGMASK : :: c_uint = 0x420b ;
855857pub const PTRACE_GET_SYSCALL_INFO : :: c_uint = 0x420e ;
856858pub const PTRACE_SYSCALL_INFO_NONE : :: __u8 = 0 ;
857859pub const PTRACE_SYSCALL_INFO_ENTRY : :: __u8 = 1 ;
Original file line number Diff line number Diff line change @@ -591,6 +591,8 @@ pub const PTRACE_SEIZE: ::c_int = 0x4206;
591591pub const PTRACE_INTERRUPT : :: c_int = 0x4207 ;
592592pub const PTRACE_LISTEN : :: c_int = 0x4208 ;
593593pub const PTRACE_PEEKSIGINFO : :: c_int = 0x4209 ;
594+ pub const PTRACE_GETSIGMASK : :: c_uint = 0x420a ;
595+ pub const PTRACE_SETSIGMASK : :: c_uint = 0x420b ;
594596
595597pub const AF_IB : :: c_int = 27 ;
596598pub const AF_MPLS : :: c_int = 28 ;
Original file line number Diff line number Diff line change @@ -280,7 +280,9 @@ pub const PF_NFC: ::c_int = 39;
280280pub const PF_VSOCK : :: c_int = 40 ;
281281pub const POSIX_MADV_DONTNEED : :: c_int = 4 ;
282282pub const PTRACE_EVENT_STOP : :: c_int = 128 ;
283+ pub const PTRACE_GETSIGMASK : :: c_uint = 0x420a ;
283284pub const PTRACE_PEEKSIGINFO : :: c_int = 0x4209 ;
285+ pub const PTRACE_SETSIGMASK : :: c_uint = 0x420b ;
284286pub const RTLD_NOLOAD : :: c_int = 0x00004 ;
285287pub const RUSAGE_THREAD : :: c_int = 1 ;
286288pub const SHM_EXEC : :: c_int = 0100000 ;
You can’t perform that action at this time.
0 commit comments