From 3490cfeb79196d34586beff3dd2a5381dc8f700c Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Sun, 28 Aug 2016 20:48:55 -0500 Subject: [PATCH] mips64: define SIGSTKSZ --- src/unix/notbsd/linux/mips64.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/unix/notbsd/linux/mips64.rs b/src/unix/notbsd/linux/mips64.rs index eb2fe8b130d7e..7c51dffba44ac 100644 --- a/src/unix/notbsd/linux/mips64.rs +++ b/src/unix/notbsd/linux/mips64.rs @@ -201,6 +201,7 @@ pub const RLIM_INFINITY: ::rlim_t = 0xffffffffffffffff; pub const SA_ONSTACK: ::c_int = 0x08000000; pub const SA_SIGINFO: ::c_int = 0x00000008; pub const SIGBUS: ::c_int = 10; +pub const SIGSTKSZ: ::size_t = 0x2000; pub const SIG_SETMASK: ::c_int = 3; pub const SOCK_DGRAM: ::c_int = 1; pub const SOCK_STREAM: ::c_int = 2;