Skip to content

Commit 95d6a00

Browse files
committed
Merge pull request #135 from alexcrichton/fix-mips-flags
Correct MIPS types of SA_* flags
2 parents 4d9ab7e + e9c088b commit 95d6a00

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/unix/notbsd/linux/mips.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,9 +327,9 @@ pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4;
327327
pub const FIOCLEX: ::c_ulong = 0x6601;
328328
pub const FIONBIO: ::c_ulong = 0x667e;
329329

330-
pub const SA_ONSTACK: ::c_uint = 0x08000000;
331-
pub const SA_SIGINFO: ::c_uint = 0x00000008;
332-
pub const SA_NOCLDWAIT: ::c_uint = 0x00010000;
330+
pub const SA_ONSTACK: ::c_int = 0x08000000;
331+
pub const SA_SIGINFO: ::c_int = 0x00000008;
332+
pub const SA_NOCLDWAIT: ::c_int = 0x00010000;
333333

334334
pub const SIGCHLD: ::c_int = 18;
335335
pub const SIGBUS: ::c_int = 10;

0 commit comments

Comments
 (0)