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
2880
2880
SIOCWANDEV
2881
2881
SIOGIFINDEX
2882
2882
SI_ASYNCIO
2883
+ SI_ASYNCNL
2884
+ SI_DETHREAD
2883
2885
SI_KERNEL
2884
2886
SI_LOAD_SHIFT
2885
2887
SI_MESGQ
@@ -3371,6 +3373,7 @@ TP_STATUS_WRONG_FORMAT
3371
3373
TRAP_BRANCH
3372
3374
TRAP_BRKPT
3373
3375
TRAP_HWBKPT
3376
+ TRAP_PERF
3374
3377
TRAP_TRACE
3375
3378
TRAP_UNK
3376
3379
TUNATTACHFILTER
Original file line number Diff line number Diff line change @@ -1297,6 +1297,8 @@ pub const SI_MESGQ: c_int = -3;
1297
1297
pub const SI_ASYNCIO : c_int = -4 ;
1298
1298
pub const SI_SIGIO : c_int = -5 ;
1299
1299
pub const SI_TKILL : c_int = -6 ;
1300
+ pub const SI_DETHREAD : c_int = -7 ;
1301
+ pub const SI_ASYNCNL : c_int = -60 ;
1300
1302
1301
1303
// si_code values for SIGBUS signal
1302
1304
pub const BUS_ADRALN : c_int = 1 ;
@@ -1312,6 +1314,7 @@ pub const TRAP_TRACE: c_int = 2;
1312
1314
pub const TRAP_BRANCH : c_int = 3 ;
1313
1315
pub const TRAP_HWBKPT : c_int = 4 ;
1314
1316
pub const TRAP_UNK : c_int = 5 ;
1317
+ pub const TRAP_PERF : c_int = 6 ;
1315
1318
1316
1319
// si_code values for SIGCHLD signal
1317
1320
pub const CLD_EXITED : c_int = 1 ;
You can’t perform that action at this time.
0 commit comments