Skip to content

Commit 1140c02

Browse files
committed
---
yaml --- r: 173279 b: refs/heads/snap-stage3 c: d48fa78 h: refs/heads/master i: 173277: d225b3f 173275: ecdf439 173271: 5567710 173263: 2b56c49 173247: 060cb2c v: v3
1 parent 4271f56 commit 1140c02

File tree

2 files changed

+10
-4
lines changed
  • branches/snap-stage3/src/libstd/sys/unix

2 files changed

+10
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 896cb36ecab3eaeb7f101087e030e43771eca5ca
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 164981042d6afd38c6635ab10ef8ed3c0daffe8b
4+
refs/heads/snap-stage3: d48fa78694a4403837a9e0b5df3f1f6c0abf1e84
55
refs/heads/try: 957472483d3a2f43c0e4f7c2056280a1022af93c
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/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)