最終更新:2013-02-01 (金) 17:00:03 (4095d)  

asm-generic/fcntl.h
Top / asm-generic / fcntl.h

O_なんとか

O_ACCMODE?00000003
O_RDONLY?00000000
O_WRONLY00000001
O_RDWR?00000002
O_CREAT00000100not fcntl
O_EXCL?00000200not fcntl
O_NOCTTY00000400not fcntl
O_TRUNC?00001000not fcntl
O_APPEND?00002000
O_NONBLOCK?00004000
O_DSYNC?00010000used to be O_SYNC, see below
FASYNC?00020000fcntl, for BSD compatibility
O_DIRECT?00040000direct disk access hint
O_LARGEFILE?00100000
O_DIRECTORY?00200000must be a directory
O_NOFOLLOW?00400000don't follow links
O_NOATIME?01000000
O_CLOEXEC?02000000set close_on_exec

関連