Skip to content

Commit c129f86

Browse files
committed
---
yaml --- r: 174008 b: refs/heads/batch c: d48fa78 h: refs/heads/master v: v3
1 parent d2c7ccb commit c129f86

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
@@ -29,7 +29,7 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
2929
refs/heads/issue-18208-method-dispatch-2: 9e1eae4fb9b6527315b4441cf8a0f5ca911d1671
3030
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32-
refs/heads/batch: 164981042d6afd38c6635ab10ef8ed3c0daffe8b
32+
refs/heads/batch: d48fa78694a4403837a9e0b5df3f1f6c0abf1e84
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3434
refs/heads/beta: 44a287e6eb22ec3c2a687fc156813577464017f7
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928

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