We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 08f816f + 30dfc4b commit 2278a54Copy full SHA for 2278a54
src/unix/notbsd/linux/mips.rs
@@ -303,6 +303,7 @@ pub const MAP_EXECUTABLE: ::c_int = 0x4000;
303
pub const MAP_LOCKED: ::c_int = 0x8000;
304
pub const MAP_POPULATE: ::c_int = 0x10000;
305
pub const MAP_NONBLOCK: ::c_int = 0x20000;
306
+pub const MAP_STACK: ::c_int = 0x40000;
307
308
pub const SOCK_STREAM: ::c_int = 2;
309
pub const SOCK_DGRAM: ::c_int = 1;
@@ -426,6 +427,8 @@ pub const PTRACE_SETFPXREGS: ::c_uint = 19;
426
427
pub const PTRACE_GETREGS: ::c_uint = 12;
428
pub const PTRACE_SETREGS: ::c_uint = 13;
429
430
+pub const MAP_HUGETLB: ::c_int = 0x080000;
431
+
432
pub const EFD_NONBLOCK: ::c_int = 0x80;
433
434
pub const F_GETLK: ::c_int = 14;
0 commit comments