File tree 4 files changed +8
-0
lines changed
src/unix/linux_like/linux
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
1888
1888
PTRACE_GETEVENTMSG
1889
1889
PTRACE_GETREGSET
1890
1890
PTRACE_GETSIGINFO
1891
+ PTRACE_GETSIGMASK
1891
1892
PTRACE_INTERRUPT
1892
1893
PTRACE_KILL
1893
1894
PTRACE_LISTEN
@@ -1913,6 +1914,7 @@ PTRACE_SEIZE
1913
1914
PTRACE_SETOPTIONS
1914
1915
PTRACE_SETREGSET
1915
1916
PTRACE_SETSIGINFO
1917
+ PTRACE_SETSIGMASK
1916
1918
PTRACE_SINGLESTEP
1917
1919
PTRACE_SYSCALL
1918
1920
PTRACE_TRACEME
Original file line number Diff line number Diff line change @@ -853,6 +853,8 @@ pub const PTRACE_SEIZE: ::c_uint = 0x4206;
853
853
pub const PTRACE_INTERRUPT : :: c_uint = 0x4207 ;
854
854
pub const PTRACE_LISTEN : :: c_uint = 0x4208 ;
855
855
pub const PTRACE_PEEKSIGINFO : :: c_uint = 0x4209 ;
856
+ pub const PTRACE_GETSIGMASK : :: c_uint = 0x420a ;
857
+ pub const PTRACE_SETSIGMASK : :: c_uint = 0x420b ;
856
858
pub const PTRACE_GET_SYSCALL_INFO : :: c_uint = 0x420e ;
857
859
pub const PTRACE_SYSCALL_INFO_NONE : :: __u8 = 0 ;
858
860
pub 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;
579
579
pub const PTRACE_INTERRUPT : :: c_int = 0x4207 ;
580
580
pub const PTRACE_LISTEN : :: c_int = 0x4208 ;
581
581
pub const PTRACE_PEEKSIGINFO : :: c_int = 0x4209 ;
582
+ pub const PTRACE_GETSIGMASK : :: c_uint = 0x420a ;
583
+ pub const PTRACE_SETSIGMASK : :: c_uint = 0x420b ;
582
584
583
585
pub const FAN_MARK_INODE : :: c_uint = 0x0000_0000 ;
584
586
pub 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;
282
282
pub const PF_VSOCK : :: c_int = 40 ;
283
283
pub const POSIX_MADV_DONTNEED : :: c_int = 4 ;
284
284
pub const PTRACE_EVENT_STOP : :: c_int = 128 ;
285
+ pub const PTRACE_GETSIGMASK : :: c_uint = 0x420a ;
285
286
pub const PTRACE_PEEKSIGINFO : :: c_int = 0x4209 ;
287
+ pub const PTRACE_SETSIGMASK : :: c_uint = 0x420b ;
286
288
pub const RTLD_NOLOAD : :: c_int = 0x00004 ;
287
289
pub const RUSAGE_THREAD : :: c_int = 1 ;
288
290
pub const SHM_EXEC : :: c_int = 0100000 ;
You can’t perform that action at this time.
0 commit comments