File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ libc_bitflags!{
65
65
MAP_LOCKED ;
66
66
/// Do not reserve swap space for this mapping.
67
67
///
68
- /// This was removed in FreeBSD 11.
69
- #[ cfg( not( target_os = "freebsd" ) ) ]
68
+ /// This was removed in FreeBSD 11 and is unused in DragonFlyBSD .
69
+ #[ cfg( not( any ( target_os = "dragonfly" , target_os = " freebsd") ) ) ]
70
70
MAP_NORESERVE ;
71
71
/// Populate page tables for a mapping.
72
72
#[ cfg( any( target_os = "android" , target_os = "linux" ) ) ]
@@ -122,8 +122,8 @@ libc_bitflags!{
122
122
MAP_NOSYNC ;
123
123
/// Rename private pages to a file.
124
124
///
125
- /// This was removed in FreeBSD 11.
126
- #[ cfg( any( target_os = "dragonfly" , target_os = " netbsd", target_os = "openbsd" ) ) ]
125
+ /// This was removed in FreeBSD 11 and is unused in DragonFlyBSD .
126
+ #[ cfg( any( target_os = "netbsd" , target_os = "openbsd" ) ) ]
127
127
MAP_RENAME ;
128
128
/// Region may contain semaphores.
129
129
#[ cfg( any( target_os = "dragonfly" , target_os = "freebsd" , target_os = "netbsd" , target_os = "openbsd" ) ) ]
You can’t perform that action at this time.
0 commit comments