Skip to content

Commit

Permalink
Add missing MAP_ANONYMOUS for Solaris
Browse files Browse the repository at this point in the history
  • Loading branch information
psumbera committed Nov 6, 2019
1 parent 53ce57e commit a7c0dcf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/unix/solarish/mod.rs
Expand Up @@ -1010,6 +1010,7 @@ pub const MAP_PRIVATE: ::c_int = 0x0002;
pub const MAP_FIXED: ::c_int = 0x0010;
pub const MAP_NORESERVE: ::c_int = 0x40;
pub const MAP_ANON: ::c_int = 0x0100;
pub const MAP_ANONYMOUS: ::c_int = 0x0100;
pub const MAP_RENAME: ::c_int = 0x20;
pub const MAP_ALIGN: ::c_int = 0x200;
pub const MAP_TEXT: ::c_int = 0x400;
Expand Down

0 comments on commit a7c0dcf

Please sign in to comment.