summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-01-12 12:01:12 -0800
committerAlex Crichton <alex@alexcrichton.com>2016-01-12 12:01:12 -0800
commit95d6a00134f284e6b889d98f4c2cb4b285950327 (patch)
tree2a3e1f1deb77e273f7f9642f57ff7909709cf120
parent4d9ab7ebea11c8ce08101f993bb604e825c0d09b (diff)
parente9c088bffd3897bb1c9261bb62672a68fe8cd985 (diff)
downloadrust-libc-95d6a00134f284e6b889d98f4c2cb4b285950327.tar.gz
Merge pull request #135 from alexcrichton/fix-mips-flags
Correct MIPS types of SA_* flags
-rw-r--r--src/unix/notbsd/linux/mips.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/unix/notbsd/linux/mips.rs b/src/unix/notbsd/linux/mips.rs
index 6cd32ee857..ebf2d230f7 100644
--- a/src/unix/notbsd/linux/mips.rs
+++ b/src/unix/notbsd/linux/mips.rs
@@ -327,9 +327,9 @@ pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4;
pub const FIOCLEX: ::c_ulong = 0x6601;
pub const FIONBIO: ::c_ulong = 0x667e;
-pub const SA_ONSTACK: ::c_uint = 0x08000000;
-pub const SA_SIGINFO: ::c_uint = 0x00000008;
-pub const SA_NOCLDWAIT: ::c_uint = 0x00010000;
+pub const SA_ONSTACK: ::c_int = 0x08000000;
+pub const SA_SIGINFO: ::c_int = 0x00000008;
+pub const SA_NOCLDWAIT: ::c_int = 0x00010000;
pub const SIGCHLD: ::c_int = 18;
pub const SIGBUS: ::c_int = 10;