Skip to content

Commit ed0e859

Browse files
bors[bot]cppcoffee
andauthored
Merge #1952
1952: fix: linux+mips+uclibc unreachable pattern r=asomers a=cppcoffee Signed-off-by: Xiaobo Liu <cppcoffee@gmail.com> Co-authored-by: Xiaobo Liu <cppcoffee@gmail.com>
2 parents 99ea907 + 2e0f533 commit ed0e859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sys/signal.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ mod sigevent {
10661066
SigevNotify::SigevThreadId{..} => libc::SIGEV_THREAD_ID,
10671067
#[cfg(all(target_os = "linux", target_env = "gnu", not(target_arch = "mips")))]
10681068
SigevNotify::SigevThreadId{..} => libc::SIGEV_THREAD_ID,
1069-
#[cfg(all(target_os = "linux", target_env = "uclibc"))]
1069+
#[cfg(all(target_os = "linux", target_env = "uclibc", not(target_arch = "mips")))]
10701070
SigevNotify::SigevThreadId{..} => libc::SIGEV_THREAD_ID,
10711071
#[cfg(any(all(target_os = "linux", target_env = "musl"), target_arch = "mips"))]
10721072
SigevNotify::SigevThreadId{..} => 4 // No SIGEV_THREAD_ID defined

0 commit comments

Comments
 (0)