Skip to content

Commit

Permalink
Auto merge of #2922 - devnexen:mman_update_solarish, r=JohnTitor
Browse files Browse the repository at this point in the history
mmap/madvise specific solaris additional flags.
  • Loading branch information
bors committed Sep 30, 2022
2 parents a157194 + 73d674b commit 5ffe00e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/unix/solarish/illumos.rs
Expand Up @@ -54,6 +54,8 @@ pub const FILF_AUTO: ::c_int = 0x2;
pub const FILF_BYPASS: ::c_int = 0x4;
pub const SOL_FILTER: ::c_int = 0xfffc;

pub const MADV_PURGE: ::c_int = 9;

pub const MR_HDR_AOUT: ::c_uint = 0x3;

pub const B1000000: ::speed_t = 24;
Expand Down
4 changes: 4 additions & 0 deletions src/unix/solarish/mod.rs
Expand Up @@ -1440,6 +1440,7 @@ pub const MAP_RENAME: ::c_int = 0x20;
pub const MAP_ALIGN: ::c_int = 0x200;
pub const MAP_TEXT: ::c_int = 0x400;
pub const MAP_INITDATA: ::c_int = 0x800;
pub const MAP_32BIT: ::c_int = 0x80;
pub const MAP_FAILED: *mut ::c_void = !0 as *mut ::c_void;

pub const MCL_CURRENT: ::c_int = 0x0001;
Expand Down Expand Up @@ -1683,6 +1684,9 @@ pub const MADV_SEQUENTIAL: ::c_int = 2;
pub const MADV_WILLNEED: ::c_int = 3;
pub const MADV_DONTNEED: ::c_int = 4;
pub const MADV_FREE: ::c_int = 5;
pub const MADV_ACCESS_DEFAULT: ::c_int = 6;
pub const MADV_ACCESS_LWP: ::c_int = 7;
pub const MADV_ACCESS_MANY: ::c_int = 8;

pub const AF_UNSPEC: ::c_int = 0;
pub const AF_UNIX: ::c_int = 1;
Expand Down

0 comments on commit 5ffe00e

Please sign in to comment.