Skip to content
Snippets Groups Projects
Unverified Commit 681b3435 authored by Nikita Baksalyar's avatar Nikita Baksalyar
Browse files

Add missing consts on Solaris

parent b117b261
No related branches found
No related tags found
No related merge requests found
......@@ -432,6 +432,7 @@ pub const FIONBIO: ::c_int = 0x8004667e;
pub const SIGCHLD: ::c_int = 18;
pub const SIGBUS: ::c_int = 10;
pub const SIGINFO: ::c_int = 41;
pub const SIG_BLOCK: ::c_int = 1;
pub const SIG_UNBLOCK: ::c_int = 2;
pub const SIG_SETMASK: ::c_int = 3;
......@@ -541,6 +542,7 @@ pub const SIGXCPU: ::c_int = 30;
pub const SIGXFSZ: ::c_int = 31;
pub const WNOHANG: ::c_int = 0x40;
pub const WUNTRACED: ::c_int = 0x04;
pub const PROT_NONE: ::c_int = 0;
pub const PROT_READ: ::c_int = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment