File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
src/unix/linux_like/linux/musl/b32/mips Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -4307,6 +4307,10 @@ fn test_linux(target: &str) {
43074307 if old_musl && name == "RLIM_NLIMITS" {
43084308 return true ;
43094309 }
4310+ // Incorrectly named and renamed upstream:
4311+ if old_musl && name == "SIGSTKFLT" {
4312+ return true ;
4313+ }
43104314 }
43114315 match name {
43124316 // These constants are not available if gnu headers have been included
Original file line number Diff line number Diff line change @@ -563,6 +563,14 @@ pub const SIGTSTP: c_int = 24;
563563pub const SIGURG : c_int = 21 ;
564564pub const SIGIO : c_int = 22 ;
565565pub const SIGSYS : c_int = 12 ;
566+ #[ cfg( musl_v1_2_3) ]
567+ pub const SIGEMT : c_int = 7 ;
568+ #[ cfg( not( musl_v1_2_3) ) ]
569+ #[ deprecated(
570+ since = "0.2.173" ,
571+ note = "This signal is actually corresponds to SIGEMT was incorrectly named in musl.
572+ As it does not exist on mips it will be dropped entirely in a future release"
573+ ) ]
566574pub const SIGSTKFLT : c_int = 7 ;
567575pub const SIGPOLL : c_int = crate :: SIGIO ;
568576pub const SIGPWR : c_int = 19 ;
You can’t perform that action at this time.
0 commit comments