File tree 3 files changed +5
-0
lines changed 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -957,6 +957,9 @@ fn test_solarish(target: &str) {
957
957
// skip sighandler_t assignments
958
958
"SIG_DFL" | "SIG_ERR" | "SIG_IGN" => true ,
959
959
960
+ // Skip
961
+ "SI_DETHREAD" | "TRAP_PERF" => true ,
962
+
960
963
"DT_UNKNOWN" => true ,
961
964
962
965
"_UTX_LINESIZE" | "_UTX_USERSIZE" | "_UTX_PADSIZE" | "_UTX_IDSIZE" | "_UTX_HOSTSIZE" => {
Original file line number Diff line number Diff line change @@ -3373,6 +3373,7 @@ TP_STATUS_WRONG_FORMAT
3373
3373
TRAP_BRANCH
3374
3374
TRAP_BRKPT
3375
3375
TRAP_HWBKPT
3376
+ TRAP_PERF
3376
3377
TRAP_TRACE
3377
3378
TRAP_UNK
3378
3379
TUNATTACHFILTER
Original file line number Diff line number Diff line change @@ -1314,6 +1314,7 @@ pub const TRAP_TRACE: c_int = 2;
1314
1314
pub const TRAP_BRANCH : c_int = 3 ;
1315
1315
pub const TRAP_HWBKPT : c_int = 4 ;
1316
1316
pub const TRAP_UNK : c_int = 5 ;
1317
+ pub const TRAP_PERF : c_int = 6 ;
1317
1318
1318
1319
// si_code values for SIGCHLD signal
1319
1320
pub const CLD_EXITED : c_int = 1 ;
You can’t perform that action at this time.
0 commit comments