Skip to content

Commit 0dc988e

Browse files
committed
---
yaml --- r: 173480 b: refs/heads/master c: d48fa78 h: refs/heads/master v: v3
1 parent 55d09cf commit 0dc988e

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 164981042d6afd38c6635ab10ef8ed3c0daffe8b
2+
refs/heads/master: d48fa78694a4403837a9e0b5df3f1f6c0abf1e84
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 210f0dcf007104240b2e286ed0b80cb4a61d7bae
55
refs/heads/try: 957472483d3a2f43c0e4f7c2056280a1022af93c

trunk/src/libstd/sys/unix/c.rs

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ pub const FIONBIO: libc::c_ulong = 0x8004667e;
3333
target_os = "android"))]
3434
pub const FIONBIO: libc::c_ulong = 0x5421;
3535
#[cfg(all(target_os = "linux",
36-
any(target_arch = "mips", target_arch = "mipsel")))]
36+
any(target_arch = "mips",
37+
target_arch = "mipsel",
38+
target_arch = "powerpc")))]
3739
pub const FIONBIO: libc::c_ulong = 0x667e;
3840

3941
#[cfg(any(target_os = "macos",
@@ -49,7 +51,9 @@ pub const FIOCLEX: libc::c_ulong = 0x20006601;
4951
target_os = "android"))]
5052
pub const FIOCLEX: libc::c_ulong = 0x5451;
5153
#[cfg(all(target_os = "linux",
52-
any(target_arch = "mips", target_arch = "mipsel")))]
54+
any(target_arch = "mips",
55+
target_arch = "mipsel",
56+
target_arch = "powerpc")))]
5357
pub const FIOCLEX: libc::c_ulong = 0x6601;
5458

5559
#[cfg(any(target_os = "macos",
@@ -182,7 +186,9 @@ mod signal {
182186
}
183187

184188
#[cfg(all(target_os = "linux",
185-
any(target_arch = "mips", target_arch = "mipsel")))]
189+
any(target_arch = "mips",
190+
target_arch = "mipsel",
191+
target_arch = "powerpc")))]
186192
mod signal {
187193
use libc;
188194

0 commit comments

Comments
 (0)