File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
66## [ Unreleased] - ReleaseDate
77### Added
88
9+ - Added ` NSFS_MAGIC ` FsType on Linux and Android.
10+ ([ #1829 ] ( https://github.com/nix-rust/nix/pull/1829 ) )
911- Added ` sched_getcpu ` on platforms that support it.
1012 ([ #1825 ] ( https://github.com/nix-rust/nix/pull/1825 ) )
1113- Added ` sched_getaffinity ` and ` sched_setaffinity ` on FreeBSD.
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ targets = [
2727]
2828
2929[dependencies ]
30- libc = { version = " 0.2.133 " , features = [ " extra_traits" ] }
30+ libc = { version = " 0.2.134 " , features = [ " extra_traits" ] }
3131bitflags = " 1.1"
3232cfg-if = " 1.0"
3333pin-utils = { version = " 0.1.0" , optional = true }
Original file line number Diff line number Diff line change @@ -205,6 +205,9 @@ pub const USBDEVICE_SUPER_MAGIC: FsType = FsType(libc::USBDEVICE_SUPER_MAGIC as
205205#[ cfg( any( target_os = "linux" , target_os = "android" ) ) ]
206206#[ allow( missing_docs) ]
207207pub const XENFS_SUPER_MAGIC : FsType = FsType ( libc:: XENFS_SUPER_MAGIC as fs_type_t ) ;
208+ #[ cfg( any( target_os = "linux" , target_os = "android" ) ) ]
209+ #[ allow( missing_docs) ]
210+ pub const NSFS_MAGIC : FsType = FsType ( libc:: NSFS_MAGIC as fs_type_t ) ;
208211
209212
210213impl Statfs {
You can’t perform that action at this time.
0 commit comments