File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -2880,6 +2880,8 @@ SIOCSRARP
28802880SIOCWANDEV
28812881SIOGIFINDEX
28822882SI_ASYNCIO
2883+ SI_ASYNCNL
2884+ SI_DETHREAD
28832885SI_KERNEL
28842886SI_LOAD_SHIFT
28852887SI_MESGQ
@@ -3371,6 +3373,7 @@ TP_STATUS_WRONG_FORMAT
33713373TRAP_BRANCH
33723374TRAP_BRKPT
33733375TRAP_HWBKPT
3376+ TRAP_PERF
33743377TRAP_TRACE
33753378TRAP_UNK
33763379TUNATTACHFILTER
Original file line number Diff line number Diff line change @@ -1297,6 +1297,8 @@ pub const SI_MESGQ: c_int = -3;
12971297pub const SI_ASYNCIO : c_int = -4 ;
12981298pub const SI_SIGIO : c_int = -5 ;
12991299pub const SI_TKILL : c_int = -6 ;
1300+ pub const SI_DETHREAD : c_int = -7 ;
1301+ pub const SI_ASYNCNL : c_int = -60 ;
13001302
13011303// si_code values for SIGBUS signal
13021304pub const BUS_ADRALN : c_int = 1 ;
@@ -1312,6 +1314,7 @@ pub const TRAP_TRACE: c_int = 2;
13121314pub const TRAP_BRANCH : c_int = 3 ;
13131315pub const TRAP_HWBKPT : c_int = 4 ;
13141316pub const TRAP_UNK : c_int = 5 ;
1317+ pub const TRAP_PERF : c_int = 6 ;
13151318
13161319// si_code values for SIGCHLD signal
13171320pub const CLD_EXITED : c_int = 1 ;
You can’t perform that action at this time.
0 commit comments