fcntl.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. #ifndef _ASM_GENERIC_FCNTL_H
  2. #define _ASM_GENERIC_FCNTL_H
  3. /* open/fcntl - O_SYNC is only implemented on blocks devices and on files
  4. located on an ext2 file system */
  5. #define O_ACCMODE 00000003
  6. #define O_RDONLY 00000000
  7. #define O_WRONLY 00000001
  8. #define O_RDWR 00000002
  9. #ifndef O_CREAT
  10. #define O_CREAT 00000100 /* not fcntl */
  11. #endif
  12. #ifndef O_EXCL
  13. #define O_EXCL 00000200 /* not fcntl */
  14. #endif
  15. #ifndef O_NOCTTY
  16. #define O_NOCTTY 00000400 /* not fcntl */
  17. #endif
  18. #ifndef O_TRUNC
  19. #define O_TRUNC 00001000 /* not fcntl */
  20. #endif
  21. #ifndef O_APPEND
  22. #define O_APPEND 00002000
  23. #endif
  24. #ifndef O_NONBLOCK
  25. #define O_NONBLOCK 00004000
  26. #endif
  27. #ifndef O_SYNC
  28. #define O_SYNC 00010000
  29. #endif
  30. #ifndef FASYNC
  31. #define FASYNC 00020000 /* fcntl, for BSD compatibility */
  32. #endif
  33. #ifndef O_DIRECT
  34. #define O_DIRECT 00040000 /* direct disk access hint */
  35. #endif
  36. #ifndef O_LARGEFILE
  37. #define O_LARGEFILE 00100000
  38. #endif
  39. #ifndef O_DIRECTORY
  40. #define O_DIRECTORY 00200000 /* must be a directory */
  41. #endif
  42. #ifndef O_NOFOLLOW
  43. #define O_NOFOLLOW 00400000 /* don't follow links */
  44. #endif
  45. #ifndef O_NOATIME
  46. #define O_NOATIME 01000000
  47. #endif
  48. #ifndef O_NDELAY
  49. #define O_NDELAY O_NONBLOCK
  50. #endif
  51. #define F_DUPFD 0 /* dup */
  52. #define F_GETFD 1 /* get close_on_exec */
  53. #define F_SETFD 2 /* set/clear close_on_exec */
  54. #define F_GETFL 3 /* get file->f_flags */
  55. #define F_SETFL 4 /* set file->f_flags */
  56. #ifndef F_GETLK
  57. #define F_GETLK 5
  58. #define F_SETLK 6
  59. #define F_SETLKW 7
  60. #endif
  61. #ifndef F_SETOWN
  62. #define F_SETOWN 8 /* for sockets. */
  63. #define F_GETOWN 9 /* for sockets. */
  64. #endif
  65. #ifndef F_SETSIG
  66. #define F_SETSIG 10 /* for sockets. */
  67. #define F_GETSIG 11 /* for sockets. */
  68. #endif
  69. /* for F_[GET|SET]FL */
  70. #define FD_CLOEXEC 1 /* actually anything with low bit set goes */
  71. /* for posix fcntl() and lockf() */
  72. #ifndef F_RDLCK
  73. #define F_RDLCK 0
  74. #define F_WRLCK 1
  75. #define F_UNLCK 2
  76. #endif
  77. /* for old implementation of bsd flock () */
  78. #ifndef F_EXLCK
  79. #define F_EXLCK 4 /* or 3 */
  80. #define F_SHLCK 8 /* or 4 */
  81. #endif
  82. /* for leases */
  83. #ifndef F_INPROGRESS
  84. #define F_INPROGRESS 16
  85. #endif
  86. /* operations for bsd flock(), also used by the kernel implementation */
  87. #define LOCK_SH 1 /* shared lock */
  88. #define LOCK_EX 2 /* exclusive lock */
  89. #define LOCK_NB 4 /* or'd with one of the above to prevent
  90. blocking */
  91. #define LOCK_UN 8 /* remove lock */
  92. #define LOCK_MAND 32 /* This is a mandatory flock ... */
  93. #define LOCK_READ 64 /* which allows concurrent read operations */
  94. #define LOCK_WRITE 128 /* which allows concurrent write operations */
  95. #define LOCK_RW 192 /* which allows concurrent read & write ops */
  96. #define F_LINUX_SPECIFIC_BASE 1024
  97. #endif /* _ASM_GENERIC_FCNTL_H */