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 @@ -4287,6 +4287,10 @@ fn test_linux(target: &str) {
4287
4287
if old_musl && name == "RLIM_NLIMITS" {
4288
4288
return true ;
4289
4289
}
4290
+ // Incorrectly named and renamed upstream:
4291
+ if old_musl && name == "SIGSTKFLT" {
4292
+ return true ;
4293
+ }
4290
4294
}
4291
4295
match name {
4292
4296
// 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;
563
563
pub const SIGURG : c_int = 21 ;
564
564
pub const SIGIO : c_int = 22 ;
565
565
pub 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
+ ) ]
566
574
pub const SIGSTKFLT : c_int = 7 ;
567
575
pub const SIGPOLL : c_int = crate :: SIGIO ;
568
576
pub const SIGPWR : c_int = 19 ;
You can’t perform that action at this time.
0 commit comments