git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
refactor: separate syscall interfaces from kernel space, into posix compliant structure.
[lunaix-os.git]
/
lunaix-os
/
includes
/
usr
/
fcntl_defs.h
1
#ifndef __LUNAIX_SYS_FCNTL_DEFS_H
2
#define __LUNAIX_SYS_FCNTL_DEFS_H
3
4
#define FO_CREATE 0x1
5
#define FO_APPEND 0x2
6
#define FO_DIRECT 0x4
7
8
#define FSEEK_SET 0x1
9
#define FSEEK_CUR 0x2
10
#define FSEEK_END 0x3
11
12
#define MNT_RO 0x1
13
14
#endif /* __LUNAIX_FNCTL_DEFS_H */