File tree 3 files changed +6
-1
lines changed
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/).
6
6
## [ Unreleased] - ReleaseDate
7
7
### Added
8
8
9
+ - Added ` NSFS_MAGIC ` FsType on Linux and Android.
10
+ ([ #1829 ] ( https://github.com/nix-rust/nix/pull/1829 ) )
9
11
- Added ` sched_getcpu ` on platforms that support it.
10
12
([ #1825 ] ( https://github.com/nix-rust/nix/pull/1825 ) )
11
13
- Added ` sched_getaffinity ` and ` sched_setaffinity ` on FreeBSD.
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ targets = [
27
27
]
28
28
29
29
[dependencies ]
30
- libc = { version = " 0.2.133 " , features = [ " extra_traits" ] }
30
+ libc = { version = " 0.2.134 " , features = [ " extra_traits" ] }
31
31
bitflags = " 1.1"
32
32
cfg-if = " 1.0"
33
33
pin-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
205
205
#[ cfg( any( target_os = "linux" , target_os = "android" ) ) ]
206
206
#[ allow( missing_docs) ]
207
207
pub 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 ) ;
208
211
209
212
210
213
impl Statfs {
You can’t perform that action at this time.
0 commit comments