File tree 3 files changed +4
-0
lines changed
3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
19
19
(#[ 1581] ( https://github.com/nix-rust/nix/pull/1581 ) )
20
20
- Added ` sched_setaffinity ` and ` sched_getaffinity ` on DragonFly.
21
21
(#[ 1537] ( https://github.com/nix-rust/nix/pull/1537 ) )
22
+ - Added ` posix_fallocate ` on DragonFly.
23
+ (#[ 1621] ( https://github.com/nix-rust/nix/pull/1621 ) )
22
24
- Added the ` SO_TIMESTAMPING ` support
23
25
(#[ 1547] ( https://github.com/nix-rust/nix/pull/1547 ) )
24
26
Original file line number Diff line number Diff line change @@ -749,6 +749,7 @@ mod posix_fadvise {
749
749
#[ cfg( any(
750
750
target_os = "linux" ,
751
751
target_os = "android" ,
752
+ target_os = "dragonfly" ,
752
753
target_os = "emscripten" ,
753
754
target_os = "fuchsia" ,
754
755
any( target_os = "wasi" , target_env = "wasi" ) ,
Original file line number Diff line number Diff line change @@ -488,6 +488,7 @@ mod test_posix_fadvise {
488
488
489
489
#[ cfg( any( target_os = "linux" ,
490
490
target_os = "android" ,
491
+ target_os = "dragonfly" ,
491
492
target_os = "emscripten" ,
492
493
target_os = "fuchsia" ,
493
494
any( target_os = "wasi" , target_env = "wasi" ) ,
You can’t perform that action at this time.
0 commit comments