Skip to content

Commit

Permalink
hurd: Add MAP_32BIT and MAP_EXCL
Browse files Browse the repository at this point in the history
  • Loading branch information
sthibaul authored and tgross35 committed Nov 21, 2024
1 parent 34fdd5b commit b3f0be0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/unix/hurd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2734,6 +2734,8 @@ pub const MAP_FIXED: ::c_int = 256;
pub const MAP_NOEXTEND: ::c_int = 512;
pub const MAP_HASSEMAPHORE: ::c_int = 1024;
pub const MAP_INHERIT: ::c_int = 2048;
pub const MAP_32BIT: ::c_int = 4096;
pub const MAP_EXCL: ::c_int = 16384;
pub const MAP_FAILED: *mut ::c_void = !0 as *mut ::c_void;
pub const MADV_NORMAL: ::c_int = 0;
pub const MADV_RANDOM: ::c_int = 1;
Expand Down

0 comments on commit b3f0be0

Please sign in to comment.