File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
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 @@ -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