1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use crate::backend::c;
use bitflags::bitflags;
bitflags! {
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)]
pub struct FdFlags: c::c_uint {
const CLOEXEC = linux_raw_sys::general::FD_CLOEXEC;
}
}
bitflags! {
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)]
pub struct ReadWriteFlags: c::c_uint {
const DSYNC = linux_raw_sys::general::RWF_DSYNC;
const HIPRI = linux_raw_sys::general::RWF_HIPRI;
const SYNC = linux_raw_sys::general::RWF_SYNC;
const NOWAIT = linux_raw_sys::general::RWF_NOWAIT;
const APPEND = linux_raw_sys::general::RWF_APPEND;
}
}
bitflags! {
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)]
pub struct DupFlags: c::c_uint {
const CLOEXEC = linux_raw_sys::general::O_CLOEXEC;
}
}