summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjhwgh1968 <jhwgh1968@users.noreply.github.com>2018-09-08 16:23:03 -0500
committerjhwgh1968 <jhwgh1968@users.noreply.github.com>2018-09-08 16:23:03 -0500
commit19914fe76bde0720c79698aca2f77921dc9145ca (patch)
treeb15dba9cb9bd716c4a301130c5052c283c17666a
parent267375e99957d97317b24f19210af576cb58b2f2 (diff)
downloadrust-libc-19914fe76bde0720c79698aca2f77921dc9145ca.tar.gz
uClibc: fix mips signal constants
-rw-r--r--src/unix/uclibc/mips/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unix/uclibc/mips/mod.rs b/src/unix/uclibc/mips/mod.rs
index d197249d05..27f6fe5846 100644
--- a/src/unix/uclibc/mips/mod.rs
+++ b/src/unix/uclibc/mips/mod.rs
@@ -226,8 +226,8 @@ pub const SO_BPF_EXTENSIONS: ::c_int = 48;
pub const FIOCLEX: ::c_ulong = 0x6601;
pub const FIONBIO: ::c_ulong = 0x667e;
-pub const SA_ONSTACK: ::c_int = 0x08000000;
-pub const SA_SIGINFO: ::c_int = 0x00000008;
+pub const SA_ONSTACK: ::c_uint = 0x08000000;
+pub const SA_SIGINFO: ::c_uint = 0x00000008;
pub const SA_NOCLDWAIT: ::c_int = 0x00010000;
pub const SIGCHLD: ::c_int = 18;