Skip to content

Commit 19914fe

Browse files
committed
uClibc: fix mips signal constants
1 parent 267375e commit 19914fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/unix/uclibc/mips/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ pub const SO_BPF_EXTENSIONS: ::c_int = 48;
226226
pub const FIOCLEX: ::c_ulong = 0x6601;
227227
pub const FIONBIO: ::c_ulong = 0x667e;
228228

229-
pub const SA_ONSTACK: ::c_int = 0x08000000;
230-
pub const SA_SIGINFO: ::c_int = 0x00000008;
229+
pub const SA_ONSTACK: ::c_uint = 0x08000000;
230+
pub const SA_SIGINFO: ::c_uint = 0x00000008;
231231
pub const SA_NOCLDWAIT: ::c_int = 0x00010000;
232232

233233
pub const SIGCHLD: ::c_int = 18;

0 commit comments

Comments
 (0)