fcntl.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* O_*, F_*, FD_* bit values. 4.4BSD/Generic version.
  2. Copyright (C) 1991-2019 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _FCNTL_H
  16. #error "Never use <bits/fcntl.h> directly; include <fcntl.h> instead."
  17. #endif
  18. /* File access modes for `open' and `fcntl'. */
  19. #define O_RDONLY 0 /* Open read-only. */
  20. #define O_WRONLY 1 /* Open write-only. */
  21. #define O_RDWR 2 /* Open read/write. */
  22. /* Bits OR'd into the second argument to open. */
  23. #define O_CREAT 0x0200 /* Create file if it doesn't exist. */
  24. #define O_EXCL 0x0800 /* Fail if file already exists. */
  25. #define O_TRUNC 0x0400 /* Truncate file to zero length. */
  26. #define O_NOCTTY 0x8000 /* Don't assign a controlling terminal. */
  27. #define O_ASYNC 0x0040 /* Send SIGIO to owner when data is ready. */
  28. #define O_FSYNC 0x0080 /* Synchronous writes. */
  29. #define O_SYNC O_FSYNC
  30. #ifdef __USE_MISC
  31. #define O_SHLOCK 0x0010 /* Open with shared file lock. */
  32. #define O_EXLOCK 0x0020 /* Open with shared exclusive lock. */
  33. #endif
  34. #ifdef __USE_XOPEN2K8
  35. # define O_DIRECTORY 0x00200000 /* Must be a directory. */
  36. # define O_NOFOLLOW 0x00000100 /* Do not follow links. */
  37. # define O_CLOEXEC 0x00400000 /* Set close_on_exec. */
  38. #endif
  39. #if defined __USE_POSIX199309 || defined __USE_UNIX98
  40. # define O_DSYNC 0x00010000 /* Synchronize data. */
  41. # define O_RSYNC 0x00020000 /* Synchronize read operations. */
  42. #endif
  43. /* All opens support large file sizes, so there is no flag bit for this. */
  44. #ifdef __USE_LARGEFILE64
  45. # define O_LARGEFILE 0
  46. #endif
  47. /* File status flags for `open' and `fcntl'. */
  48. #define O_APPEND 0x0008 /* Writes append to the file. */
  49. #define O_NONBLOCK 0x0004 /* Non-blocking I/O. */
  50. #ifdef __USE_MISC
  51. # define O_NDELAY O_NONBLOCK
  52. #endif
  53. #ifdef __USE_MISC
  54. /* Flags for TIOCFLUSH. */
  55. # define FREAD 1
  56. # define FWRITE 2
  57. /* Traditional BSD names the O_* bits. */
  58. # define FASYNC O_ASYNC
  59. # define FFSYNC O_FSYNC
  60. # define FSYNC O_SYNC
  61. # define FAPPEND O_APPEND
  62. # define FNDELAY O_NDELAY
  63. #endif
  64. /* Mask for file access modes. This is system-dependent in case
  65. some system ever wants to define some other flavor of access. */
  66. #define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
  67. /* Values for the second argument to `fcntl'. */
  68. #define F_DUPFD 0 /* Duplicate file descriptor. */
  69. #define F_GETFD 1 /* Get file descriptor flags. */
  70. #define F_SETFD 2 /* Set file descriptor flags. */
  71. #define F_GETFL 3 /* Get file status flags. */
  72. #define F_SETFL 4 /* Set file status flags. */
  73. #if defined __USE_UNIX98 || defined __USE_XOPEN2K8
  74. #define F_GETOWN 5 /* Get owner (receiver of SIGIO). */
  75. #define F_SETOWN 6 /* Set owner (receiver of SIGIO). */
  76. #endif
  77. #define F_GETLK 7 /* Get record locking info. */
  78. #define F_SETLK 8 /* Set record locking info (non-blocking). */
  79. #define F_SETLKW 9 /* Set record locking info (blocking). */
  80. /* Not necessary, we always have 64-bit offsets. */
  81. #define F_GETLK64 F_GETLK /* Get record locking info. */
  82. #define F_SETLK64 F_SETLK /* Set record locking info (non-blocking). */
  83. #define F_SETLKW64 F_SETLKW/* Set record locking info (blocking). */
  84. #ifdef __USE_XOPEN2K8
  85. # define F_DUPFD_CLOEXEC 12 /* Duplicate file descriptor with
  86. close-on-exit set. */
  87. #endif
  88. /* File descriptor flags used with F_GETFD and F_SETFD. */
  89. #define FD_CLOEXEC 1 /* Close on exec. */
  90. #include <bits/types.h>
  91. /* The structure describing an advisory lock. This is the type of the third
  92. argument to `fcntl' for the F_GETLK, F_SETLK, and F_SETLKW requests. */
  93. struct flock
  94. {
  95. __off_t l_start; /* Offset where the lock begins. */
  96. __off_t l_len; /* Size of the locked area; zero means until EOF. */
  97. __pid_t l_pid; /* Process holding the lock. */
  98. short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */
  99. short int l_whence; /* Where `l_start' is relative to (like `lseek'). */
  100. };
  101. #ifdef __USE_LARGEFILE64
  102. /* Note this matches struct flock exactly. */
  103. struct flock64
  104. {
  105. __off_t l_start; /* Offset where the lock begins. */
  106. __off_t l_len; /* Size of the locked area; zero means until EOF. */
  107. __pid_t l_pid; /* Process holding the lock. */
  108. short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */
  109. short int l_whence; /* Where `l_start' is relative to (like `lseek'). */
  110. };
  111. #endif
  112. /* Values for the `l_type' field of a `struct flock'. */
  113. #define F_RDLCK 1 /* Read lock. */
  114. #define F_WRLCK 2 /* Write lock. */
  115. #define F_UNLCK 3 /* Remove lock. */
  116. /* Advise to `posix_fadvise'. */
  117. #ifdef __USE_XOPEN2K
  118. # define POSIX_FADV_NORMAL 0 /* No further special treatment. */
  119. # define POSIX_FADV_RANDOM 1 /* Expect random page references. */
  120. # define POSIX_FADV_SEQUENTIAL 2 /* Expect sequential page references. */
  121. # define POSIX_FADV_WILLNEED 3 /* Will need these pages. */
  122. # define POSIX_FADV_DONTNEED 4 /* Don't need these pages. */
  123. # define POSIX_FADV_NOREUSE 5 /* Data will be accessed once. */
  124. #endif