File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -162,13 +162,13 @@ mod consts {
162
162
163
163
bitflags ! {
164
164
pub struct MsFlags : c_int {
165
- const MS_ASYNC = libc:: MS_ASYNC , /* [MF|SIO] return immediately */
166
- const MS_INVALIDATE = libc:: MS_INVALIDATE , /* [MF|SIO] invalidate all cached data */
165
+ const MS_ASYNC = libc:: MS_ASYNC ; /* [MF|SIO] return immediately */
166
+ const MS_INVALIDATE = libc:: MS_INVALIDATE ; /* [MF|SIO] invalidate all cached data */
167
167
#[ cfg( not( target_os = "dragonfly" ) ) ]
168
- const MS_KILLPAGES = 0x0004 , /* invalidate pages, leave mapped */
168
+ const MS_KILLPAGES = 0x0004 ; /* invalidate pages, leave mapped */
169
169
#[ cfg( not( target_os = "dragonfly" ) ) ]
170
- const MS_DEACTIVATE = 0x0004 , /* deactivate pages, leave mapped */
171
- const MS_SYNC = libc:: MS_SYNC , /* [MF|SIO] msync synchronously */
170
+ const MS_DEACTIVATE = 0x0004 ; /* deactivate pages, leave mapped */
171
+ const MS_SYNC = libc:: MS_SYNC ; /* [MF|SIO] msync synchronously */
172
172
}
173
173
}
174
174
You can’t perform that action at this time.
0 commit comments