Skip to content

Commit 5ff317f

Browse files
committed
---
yaml --- r: 173734 b: refs/heads/auto c: d48fa78 h: refs/heads/master v: v3
1 parent a91827d commit 5ff317f

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
@@ -10,7 +10,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1010
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1111
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1212
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
13-
refs/heads/auto: 164981042d6afd38c6635ab10ef8ed3c0daffe8b
13+
refs/heads/auto: d48fa78694a4403837a9e0b5df3f1f6c0abf1e84
1414
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1515
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1616
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

branches/auto/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)