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 @@ -1991,6 +1991,7 @@ PTRACE_EVENT_VFORK_DONE
1991
1991
PTRACE_GETEVENTMSG
1992
1992
PTRACE_GETREGSET
1993
1993
PTRACE_GETSIGINFO
1994
+ PTRACE_GETSIGMASK
1994
1995
PTRACE_INTERRUPT
1995
1996
PTRACE_KILL
1996
1997
PTRACE_LISTEN
@@ -2016,6 +2017,7 @@ PTRACE_SEIZE
2016
2017
PTRACE_SETOPTIONS
2017
2018
PTRACE_SETREGSET
2018
2019
PTRACE_SETSIGINFO
2020
+ PTRACE_SETSIGMASK
2019
2021
PTRACE_SINGLESTEP
2020
2022
PTRACE_SYSCALL
2021
2023
PTRACE_TRACEME
Original file line number Diff line number Diff line change @@ -852,6 +852,8 @@ pub const PTRACE_SEIZE: ::c_uint = 0x4206;
852
852
pub const PTRACE_INTERRUPT : :: c_uint = 0x4207 ;
853
853
pub const PTRACE_LISTEN : :: c_uint = 0x4208 ;
854
854
pub const PTRACE_PEEKSIGINFO : :: c_uint = 0x4209 ;
855
+ pub const PTRACE_GETSIGMASK : :: c_uint = 0x420a ;
856
+ pub const PTRACE_SETSIGMASK : :: c_uint = 0x420b ;
855
857
pub const PTRACE_GET_SYSCALL_INFO : :: c_uint = 0x420e ;
856
858
pub const PTRACE_SYSCALL_INFO_NONE : :: __u8 = 0 ;
857
859
pub 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;
591
591
pub const PTRACE_INTERRUPT : :: c_int = 0x4207 ;
592
592
pub const PTRACE_LISTEN : :: c_int = 0x4208 ;
593
593
pub const PTRACE_PEEKSIGINFO : :: c_int = 0x4209 ;
594
+ pub const PTRACE_GETSIGMASK : :: c_uint = 0x420a ;
595
+ pub const PTRACE_SETSIGMASK : :: c_uint = 0x420b ;
594
596
595
597
pub const AF_IB : :: c_int = 27 ;
596
598
pub 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;
280
280
pub const PF_VSOCK : :: c_int = 40 ;
281
281
pub const POSIX_MADV_DONTNEED : :: c_int = 4 ;
282
282
pub const PTRACE_EVENT_STOP : :: c_int = 128 ;
283
+ pub const PTRACE_GETSIGMASK : :: c_uint = 0x420a ;
283
284
pub const PTRACE_PEEKSIGINFO : :: c_int = 0x4209 ;
285
+ pub const PTRACE_SETSIGMASK : :: c_uint = 0x420b ;
284
286
pub const RTLD_NOLOAD : :: c_int = 0x00004 ;
285
287
pub const RUSAGE_THREAD : :: c_int = 1 ;
286
288
pub const SHM_EXEC : :: c_int = 0100000 ;
You can’t perform that action at this time.
0 commit comments