File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Expand file tree Collapse file tree 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) {
957957 // skip sighandler_t assignments
958958 "SIG_DFL" | "SIG_ERR" | "SIG_IGN" => true ,
959959
960+ // Skip
961+ "SI_DETHREAD" | "TRAP_PERF" => true ,
962+
960963 "DT_UNKNOWN" => true ,
961964
962965 "_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
33733373TRAP_BRANCH
33743374TRAP_BRKPT
33753375TRAP_HWBKPT
3376+ TRAP_PERF
33763377TRAP_TRACE
33773378TRAP_UNK
33783379TUNATTACHFILTER
Original file line number Diff line number Diff line change @@ -1314,6 +1314,7 @@ pub const TRAP_TRACE: c_int = 2;
13141314pub const TRAP_BRANCH : c_int = 3 ;
13151315pub const TRAP_HWBKPT : c_int = 4 ;
13161316pub const TRAP_UNK : c_int = 5 ;
1317+ pub const TRAP_PERF : c_int = 6 ;
13171318
13181319// si_code values for SIGCHLD signal
13191320pub const CLD_EXITED : c_int = 1 ;
You can’t perform that action at this time.
0 commit comments