fcntl.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. #ifndef _ASM_GENERIC_FCNTL_H
  2. #define _ASM_GENERIC_FCNTL_H
  3. #include <linux/types.h>
  4. /* open/fcntl - O_SYNC is only implemented on blocks devices and on files
  5. located on an ext2 file system */
  6. #define O_ACCMODE 00000003
  7. #define O_RDONLY 00000000
  8. #define O_WRONLY 00000001
  9. #define O_RDWR 00000002
  10. #ifndef O_CREAT
  11. #define O_CREAT 00000100 /* not fcntl */
  12. #endif
  13. #ifndef O_EXCL
  14. #define O_EXCL 00000200 /* not fcntl */
  15. #endif
  16. #ifndef O_NOCTTY
  17. #define O_NOCTTY 00000400 /* not fcntl */
  18. #endif
  19. #ifndef O_TRUNC
  20. #define O_TRUNC 00001000 /* not fcntl */
  21. #endif
  22. #ifndef O_APPEND
  23. #define O_APPEND 00002000
  24. #endif
  25. #ifndef O_NONBLOCK
  26. #define O_NONBLOCK 00004000
  27. #endif
  28. #ifndef O_SYNC
  29. #define O_SYNC 00010000
  30. #endif
  31. #ifndef FASYNC
  32. #define FASYNC 00020000 /* fcntl, for BSD compatibility */
  33. #endif
  34. #ifndef O_DIRECT
  35. #define O_DIRECT 00040000 /* direct disk access hint */
  36. #endif
  37. #ifndef O_LARGEFILE
  38. #define O_LARGEFILE 00100000
  39. #endif
  40. #ifndef O_DIRECTORY
  41. #define O_DIRECTORY 00200000 /* must be a directory */
  42. #endif
  43. #ifndef O_NOFOLLOW
  44. #define O_NOFOLLOW 00400000 /* don't follow links */
  45. #endif
  46. #ifndef O_NOATIME
  47. #define O_NOATIME 01000000
  48. #endif
  49. #ifndef O_CLOEXEC
  50. #define O_CLOEXEC 02000000 /* set close_on_exec */
  51. #endif
  52. #ifndef O_NDELAY
  53. #define O_NDELAY O_NONBLOCK
  54. #endif
  55. #define F_DUPFD 0 /* dup */
  56. #define F_GETFD 1 /* get close_on_exec */
  57. #define F_SETFD 2 /* set/clear close_on_exec */
  58. #define F_GETFL 3 /* get file->f_flags */
  59. #define F_SETFL 4 /* set file->f_flags */
  60. #ifndef F_GETLK
  61. #define F_GETLK 5
  62. #define F_SETLK 6
  63. #define F_SETLKW 7
  64. #endif
  65. #ifndef F_SETOWN
  66. #define F_SETOWN 8 /* for sockets. */
  67. #define F_GETOWN 9 /* for sockets. */
  68. #endif
  69. #ifndef F_SETSIG
  70. #define F_SETSIG 10 /* for sockets. */
  71. #define F_GETSIG 11 /* for sockets. */
  72. #endif
  73. #ifndef F_SETOWN_EX
  74. #define F_SETOWN_EX 12
  75. #define F_GETOWN_EX 13
  76. #endif
  77. #define F_OWNER_TID 0
  78. #define F_OWNER_PID 1
  79. #define F_OWNER_GID 2
  80. struct f_owner_ex {
  81. int type;
  82. pid_t pid;
  83. };
  84. /* for F_[GET|SET]FL */
  85. #define FD_CLOEXEC 1 /* actually anything with low bit set goes */
  86. /* for posix fcntl() and lockf() */
  87. #ifndef F_RDLCK
  88. #define F_RDLCK 0
  89. #define F_WRLCK 1
  90. #define F_UNLCK 2
  91. #endif
  92. /* for old implementation of bsd flock () */
  93. #ifndef F_EXLCK
  94. #define F_EXLCK 4 /* or 3 */
  95. #define F_SHLCK 8 /* or 4 */
  96. #endif
  97. /* for leases */
  98. #ifndef F_INPROGRESS
  99. #define F_INPROGRESS 16
  100. #endif
  101. /* operations for bsd flock(), also used by the kernel implementation */
  102. #define LOCK_SH 1 /* shared lock */
  103. #define LOCK_EX 2 /* exclusive lock */
  104. #define LOCK_NB 4 /* or'd with one of the above to prevent
  105. blocking */
  106. #define LOCK_UN 8 /* remove lock */
  107. #define LOCK_MAND 32 /* This is a mandatory flock ... */
  108. #define LOCK_READ 64 /* which allows concurrent read operations */
  109. #define LOCK_WRITE 128 /* which allows concurrent write operations */
  110. #define LOCK_RW 192 /* which allows concurrent read & write ops */
  111. #define F_LINUX_SPECIFIC_BASE 1024
  112. #ifndef HAVE_ARCH_STRUCT_FLOCK
  113. #ifndef __ARCH_FLOCK_PAD
  114. #define __ARCH_FLOCK_PAD
  115. #endif
  116. struct flock {
  117. short l_type;
  118. short l_whence;
  119. __kernel_off_t l_start;
  120. __kernel_off_t l_len;
  121. __kernel_pid_t l_pid;
  122. __ARCH_FLOCK_PAD
  123. };
  124. #endif
  125. #ifndef CONFIG_64BIT
  126. #ifndef F_GETLK64
  127. #define F_GETLK64 12 /* using 'struct flock64' */
  128. #define F_SETLK64 13
  129. #define F_SETLKW64 14
  130. #endif
  131. #ifndef HAVE_ARCH_STRUCT_FLOCK64
  132. #ifndef __ARCH_FLOCK64_PAD
  133. #define __ARCH_FLOCK64_PAD
  134. #endif
  135. struct flock64 {
  136. short l_type;
  137. short l_whence;
  138. __kernel_loff_t l_start;
  139. __kernel_loff_t l_len;
  140. __kernel_pid_t l_pid;
  141. __ARCH_FLOCK64_PAD
  142. };
  143. #endif
  144. #endif /* !CONFIG_64BIT */
  145. #endif /* _ASM_GENERIC_FCNTL_H */