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 @@ -1888,6 +1888,7 @@ PTRACE_EVENT_VFORK_DONE
18881888PTRACE_GETEVENTMSG
18891889PTRACE_GETREGSET
18901890PTRACE_GETSIGINFO
1891+ PTRACE_GETSIGMASK
18911892PTRACE_INTERRUPT
18921893PTRACE_KILL
18931894PTRACE_LISTEN
@@ -1913,6 +1914,7 @@ PTRACE_SEIZE
19131914PTRACE_SETOPTIONS
19141915PTRACE_SETREGSET
19151916PTRACE_SETSIGINFO
1917+ PTRACE_SETSIGMASK
19161918PTRACE_SINGLESTEP
19171919PTRACE_SYSCALL
19181920PTRACE_TRACEME
Original file line number Diff line number Diff line change @@ -853,6 +853,8 @@ pub const PTRACE_SEIZE: ::c_uint = 0x4206;
853853pub const PTRACE_INTERRUPT : :: c_uint = 0x4207 ;
854854pub const PTRACE_LISTEN : :: c_uint = 0x4208 ;
855855pub const PTRACE_PEEKSIGINFO : :: c_uint = 0x4209 ;
856+ pub const PTRACE_GETSIGMASK : :: c_uint = 0x420a ;
857+ pub const PTRACE_SETSIGMASK : :: c_uint = 0x420b ;
856858pub const PTRACE_GET_SYSCALL_INFO : :: c_uint = 0x420e ;
857859pub const PTRACE_SYSCALL_INFO_NONE : :: __u8 = 0 ;
858860pub const PTRACE_SYSCALL_INFO_ENTRY : :: __u8 = 1 ;
Original file line number Diff line number Diff line change @@ -579,6 +579,8 @@ pub const PTRACE_SEIZE: ::c_int = 0x4206;
579579pub const PTRACE_INTERRUPT : :: c_int = 0x4207 ;
580580pub const PTRACE_LISTEN : :: c_int = 0x4208 ;
581581pub const PTRACE_PEEKSIGINFO : :: c_int = 0x4209 ;
582+ pub const PTRACE_GETSIGMASK : :: c_uint = 0x420a ;
583+ pub const PTRACE_SETSIGMASK : :: c_uint = 0x420b ;
582584
583585pub const FAN_MARK_INODE : :: c_uint = 0x0000_0000 ;
584586pub const FAN_MARK_MOUNT : :: c_uint = 0x0000_0010 ;
Original file line number Diff line number Diff line change @@ -282,7 +282,9 @@ pub const PF_NFC: ::c_int = 39;
282282pub const PF_VSOCK : :: c_int = 40 ;
283283pub const POSIX_MADV_DONTNEED : :: c_int = 4 ;
284284pub const PTRACE_EVENT_STOP : :: c_int = 128 ;
285+ pub const PTRACE_GETSIGMASK : :: c_uint = 0x420a ;
285286pub const PTRACE_PEEKSIGINFO : :: c_int = 0x4209 ;
287+ pub const PTRACE_SETSIGMASK : :: c_uint = 0x420b ;
286288pub const RTLD_NOLOAD : :: c_int = 0x00004 ;
287289pub const RUSAGE_THREAD : :: c_int = 1 ;
288290pub const SHM_EXEC : :: c_int = 0100000 ;
You can’t perform that action at this time.
0 commit comments