File tree 3 files changed +202
-178
lines changed
3 files changed +202
-178
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
27
27
` statvfs::vfs ` module. Additionally ` (f)statvfs() ` now return the struct
28
28
directly. And the returned ` Statvfs ` struct now exposes its data through
29
29
accessor methods. ([ #729 ] ( https://github.com/nix-rust/nix/pull/729 ) )
30
+ - The ` addr ` argument to ` madvise ` and ` msync ` is now ` *mut ` to better match the
31
+ libc API. ([ #731 ] ( https://github.com/nix-rust/nix/pull/731 ) )
32
+ - ` shm_open ` and ` shm_unlink ` are no longer exposed on Android targets, where
33
+ they are not officially supported. ([ #731 ] ( https://github.com/nix-rust/nix/pull/731 ) )
34
+ - ` MapFlags ` , ` MmapAdvise ` , and ` MsFlags ` expose some more variants and only
35
+ officially-supported variants are provided for each target.
36
+ ([ #731 ] ( https://github.com/nix-rust/nix/pull/731 ) )
30
37
31
38
# Fixed
32
39
- Fix compilation and tests for OpenBSD targets
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ exclude = [
15
15
]
16
16
17
17
[dependencies ]
18
- libc = { git = " https://github.com/rust-lang /libc" }
18
+ libc = { git = " https://github.com/susurrus /libc" , branch = " mman_constants " }
19
19
bitflags = " 0.9"
20
20
cfg-if = " 0.1.0"
21
21
void = " 1.0.2"
You can’t perform that action at this time.
0 commit comments