unistd.h 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174
  1. /* Copyright (C) 1991-2020 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <https://www.gnu.org/licenses/>. */
  14. /*
  15. * POSIX Standard: 2.10 Symbolic Constants <unistd.h>
  16. */
  17. #ifndef _UNISTD_H
  18. #define _UNISTD_H 1
  19. #include <features.h>
  20. __BEGIN_DECLS
  21. /* These may be used to determine what facilities are present at compile time.
  22. Their values can be obtained at run time from `sysconf'. */
  23. #ifdef __USE_XOPEN2K8
  24. /* POSIX Standard approved as ISO/IEC 9945-1 as of September 2008. */
  25. # define _POSIX_VERSION 200809L
  26. #elif defined __USE_XOPEN2K
  27. /* POSIX Standard approved as ISO/IEC 9945-1 as of December 2001. */
  28. # define _POSIX_VERSION 200112L
  29. #elif defined __USE_POSIX199506
  30. /* POSIX Standard approved as ISO/IEC 9945-1 as of June 1995. */
  31. # define _POSIX_VERSION 199506L
  32. #elif defined __USE_POSIX199309
  33. /* POSIX Standard approved as ISO/IEC 9945-1 as of September 1993. */
  34. # define _POSIX_VERSION 199309L
  35. #else
  36. /* POSIX Standard approved as ISO/IEC 9945-1 as of September 1990. */
  37. # define _POSIX_VERSION 199009L
  38. #endif
  39. /* These are not #ifdef __USE_POSIX2 because they are
  40. in the theoretically application-owned namespace. */
  41. #ifdef __USE_XOPEN2K8
  42. # define __POSIX2_THIS_VERSION 200809L
  43. /* The utilities on GNU systems also correspond to this version. */
  44. #elif defined __USE_XOPEN2K
  45. /* The utilities on GNU systems also correspond to this version. */
  46. # define __POSIX2_THIS_VERSION 200112L
  47. #elif defined __USE_POSIX199506
  48. /* The utilities on GNU systems also correspond to this version. */
  49. # define __POSIX2_THIS_VERSION 199506L
  50. #else
  51. /* The utilities on GNU systems also correspond to this version. */
  52. # define __POSIX2_THIS_VERSION 199209L
  53. #endif
  54. /* The utilities on GNU systems also correspond to this version. */
  55. #define _POSIX2_VERSION __POSIX2_THIS_VERSION
  56. /* This symbol was required until the 2001 edition of POSIX. */
  57. #define _POSIX2_C_VERSION __POSIX2_THIS_VERSION
  58. /* If defined, the implementation supports the
  59. C Language Bindings Option. */
  60. #define _POSIX2_C_BIND __POSIX2_THIS_VERSION
  61. /* If defined, the implementation supports the
  62. C Language Development Utilities Option. */
  63. #define _POSIX2_C_DEV __POSIX2_THIS_VERSION
  64. /* If defined, the implementation supports the
  65. Software Development Utilities Option. */
  66. #define _POSIX2_SW_DEV __POSIX2_THIS_VERSION
  67. /* If defined, the implementation supports the
  68. creation of locales with the localedef utility. */
  69. #define _POSIX2_LOCALEDEF __POSIX2_THIS_VERSION
  70. /* X/Open version number to which the library conforms. It is selectable. */
  71. #ifdef __USE_XOPEN2K8
  72. # define _XOPEN_VERSION 700
  73. #elif defined __USE_XOPEN2K
  74. # define _XOPEN_VERSION 600
  75. #elif defined __USE_UNIX98
  76. # define _XOPEN_VERSION 500
  77. #else
  78. # define _XOPEN_VERSION 4
  79. #endif
  80. /* Commands and utilities from XPG4 are available. */
  81. #define _XOPEN_XCU_VERSION 4
  82. /* We are compatible with the old published standards as well. */
  83. #define _XOPEN_XPG2 1
  84. #define _XOPEN_XPG3 1
  85. #define _XOPEN_XPG4 1
  86. /* The X/Open Unix extensions are available. */
  87. #define _XOPEN_UNIX 1
  88. /* The enhanced internationalization capabilities according to XPG4.2
  89. are present. */
  90. #define _XOPEN_ENH_I18N 1
  91. /* The legacy interfaces are also available. */
  92. #define _XOPEN_LEGACY 1
  93. /* Get values of POSIX options:
  94. If these symbols are defined, the corresponding features are
  95. always available. If not, they may be available sometimes.
  96. The current values can be obtained with `sysconf'.
  97. _POSIX_JOB_CONTROL Job control is supported.
  98. _POSIX_SAVED_IDS Processes have a saved set-user-ID
  99. and a saved set-group-ID.
  100. _POSIX_REALTIME_SIGNALS Real-time, queued signals are supported.
  101. _POSIX_PRIORITY_SCHEDULING Priority scheduling is supported.
  102. _POSIX_TIMERS POSIX.4 clocks and timers are supported.
  103. _POSIX_ASYNCHRONOUS_IO Asynchronous I/O is supported.
  104. _POSIX_PRIORITIZED_IO Prioritized asynchronous I/O is supported.
  105. _POSIX_SYNCHRONIZED_IO Synchronizing file data is supported.
  106. _POSIX_FSYNC The fsync function is present.
  107. _POSIX_MAPPED_FILES Mapping of files to memory is supported.
  108. _POSIX_MEMLOCK Locking of all memory is supported.
  109. _POSIX_MEMLOCK_RANGE Locking of ranges of memory is supported.
  110. _POSIX_MEMORY_PROTECTION Setting of memory protections is supported.
  111. _POSIX_MESSAGE_PASSING POSIX.4 message queues are supported.
  112. _POSIX_SEMAPHORES POSIX.4 counting semaphores are supported.
  113. _POSIX_SHARED_MEMORY_OBJECTS POSIX.4 shared memory objects are supported.
  114. _POSIX_THREADS POSIX.1c pthreads are supported.
  115. _POSIX_THREAD_ATTR_STACKADDR Thread stack address attribute option supported.
  116. _POSIX_THREAD_ATTR_STACKSIZE Thread stack size attribute option supported.
  117. _POSIX_THREAD_SAFE_FUNCTIONS Thread-safe functions are supported.
  118. _POSIX_THREAD_PRIORITY_SCHEDULING
  119. POSIX.1c thread execution scheduling supported.
  120. _POSIX_THREAD_PRIO_INHERIT Thread priority inheritance option supported.
  121. _POSIX_THREAD_PRIO_PROTECT Thread priority protection option supported.
  122. _POSIX_THREAD_PROCESS_SHARED Process-shared synchronization supported.
  123. _POSIX_PII Protocol-independent interfaces are supported.
  124. _POSIX_PII_XTI XTI protocol-indep. interfaces are supported.
  125. _POSIX_PII_SOCKET Socket protocol-indep. interfaces are supported.
  126. _POSIX_PII_INTERNET Internet family of protocols supported.
  127. _POSIX_PII_INTERNET_STREAM Connection-mode Internet protocol supported.
  128. _POSIX_PII_INTERNET_DGRAM Connectionless Internet protocol supported.
  129. _POSIX_PII_OSI ISO/OSI family of protocols supported.
  130. _POSIX_PII_OSI_COTS Connection-mode ISO/OSI service supported.
  131. _POSIX_PII_OSI_CLTS Connectionless ISO/OSI service supported.
  132. _POSIX_POLL Implementation supports `poll' function.
  133. _POSIX_SELECT Implementation supports `select' and `pselect'.
  134. _XOPEN_REALTIME X/Open realtime support is available.
  135. _XOPEN_REALTIME_THREADS X/Open realtime thread support is available.
  136. _XOPEN_SHM Shared memory interface according to XPG4.2.
  137. _XBS5_ILP32_OFF32 Implementation provides environment with 32-bit
  138. int, long, pointer, and off_t types.
  139. _XBS5_ILP32_OFFBIG Implementation provides environment with 32-bit
  140. int, long, and pointer and off_t with at least
  141. 64 bits.
  142. _XBS5_LP64_OFF64 Implementation provides environment with 32-bit
  143. int, and 64-bit long, pointer, and off_t types.
  144. _XBS5_LPBIG_OFFBIG Implementation provides environment with at
  145. least 32 bits int and long, pointer, and off_t
  146. with at least 64 bits.
  147. If any of these symbols is defined as -1, the corresponding option is not
  148. true for any file. If any is defined as other than -1, the corresponding
  149. option is true for all files. If a symbol is not defined at all, the value
  150. for a specific file can be obtained from `pathconf' and `fpathconf'.
  151. _POSIX_CHOWN_RESTRICTED Only the super user can use `chown' to change
  152. the owner of a file. `chown' can only be used
  153. to change the group ID of a file to a group of
  154. which the calling process is a member.
  155. _POSIX_NO_TRUNC Pathname components longer than
  156. NAME_MAX generate an error.
  157. _POSIX_VDISABLE If defined, if the value of an element of the
  158. `c_cc' member of `struct termios' is
  159. _POSIX_VDISABLE, no character will have the
  160. effect associated with that element.
  161. _POSIX_SYNC_IO Synchronous I/O may be performed.
  162. _POSIX_ASYNC_IO Asynchronous I/O may be performed.
  163. _POSIX_PRIO_IO Prioritized Asynchronous I/O may be performed.
  164. Support for the Large File Support interface is not generally available.
  165. If it is available the following constants are defined to one.
  166. _LFS64_LARGEFILE Low-level I/O supports large files.
  167. _LFS64_STDIO Standard I/O supports large files.
  168. */
  169. #include <bits/posix_opt.h>
  170. /* Get the environment definitions from Unix98. */
  171. #if defined __USE_UNIX98 || defined __USE_XOPEN2K
  172. # include <bits/environments.h>
  173. #endif
  174. /* Standard file descriptors. */
  175. #define STDIN_FILENO 0 /* Standard input. */
  176. #define STDOUT_FILENO 1 /* Standard output. */
  177. #define STDERR_FILENO 2 /* Standard error output. */
  178. /* All functions that are not declared anywhere else. */
  179. #include <bits/types.h>
  180. #ifndef __ssize_t_defined
  181. typedef __ssize_t ssize_t;
  182. # define __ssize_t_defined
  183. #endif
  184. #define __need_size_t
  185. #define __need_NULL
  186. #include <stddef.h>
  187. #if defined __USE_XOPEN || defined __USE_XOPEN2K
  188. /* The Single Unix specification says that some more types are
  189. available here. */
  190. # ifndef __gid_t_defined
  191. typedef __gid_t gid_t;
  192. # define __gid_t_defined
  193. # endif
  194. # ifndef __uid_t_defined
  195. typedef __uid_t uid_t;
  196. # define __uid_t_defined
  197. # endif
  198. # ifndef __off_t_defined
  199. # ifndef __USE_FILE_OFFSET64
  200. typedef __off_t off_t;
  201. # else
  202. typedef __off64_t off_t;
  203. # endif
  204. # define __off_t_defined
  205. # endif
  206. # if defined __USE_LARGEFILE64 && !defined __off64_t_defined
  207. typedef __off64_t off64_t;
  208. # define __off64_t_defined
  209. # endif
  210. # ifndef __useconds_t_defined
  211. typedef __useconds_t useconds_t;
  212. # define __useconds_t_defined
  213. # endif
  214. # ifndef __pid_t_defined
  215. typedef __pid_t pid_t;
  216. # define __pid_t_defined
  217. # endif
  218. #endif /* X/Open */
  219. #if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K
  220. # ifndef __intptr_t_defined
  221. typedef __intptr_t intptr_t;
  222. # define __intptr_t_defined
  223. # endif
  224. #endif
  225. #if defined __USE_MISC || defined __USE_XOPEN
  226. # ifndef __socklen_t_defined
  227. typedef __socklen_t socklen_t;
  228. # define __socklen_t_defined
  229. # endif
  230. #endif
  231. /* Values for the second argument to access.
  232. These may be OR'd together. */
  233. #define R_OK 4 /* Test for read permission. */
  234. #define W_OK 2 /* Test for write permission. */
  235. #define X_OK 1 /* Test for execute permission. */
  236. #define F_OK 0 /* Test for existence. */
  237. /* Test for access to NAME using the real UID and real GID. */
  238. extern int access (const char *__name, int __type) __THROW __nonnull ((1));
  239. #ifdef __USE_GNU
  240. /* Test for access to NAME using the effective UID and GID
  241. (as normal file operations use). */
  242. extern int euidaccess (const char *__name, int __type)
  243. __THROW __nonnull ((1));
  244. /* An alias for `euidaccess', used by some other systems. */
  245. extern int eaccess (const char *__name, int __type)
  246. __THROW __nonnull ((1));
  247. #endif
  248. #ifdef __USE_ATFILE
  249. /* Test for access to FILE relative to the directory FD is open on.
  250. If AT_EACCESS is set in FLAG, then use effective IDs like `eaccess',
  251. otherwise use real IDs like `access'. */
  252. extern int faccessat (int __fd, const char *__file, int __type, int __flag)
  253. __THROW __nonnull ((2)) __wur;
  254. #endif /* Use GNU. */
  255. /* Values for the WHENCE argument to lseek. */
  256. #ifndef _STDIO_H /* <stdio.h> has the same definitions. */
  257. # define SEEK_SET 0 /* Seek from beginning of file. */
  258. # define SEEK_CUR 1 /* Seek from current position. */
  259. # define SEEK_END 2 /* Seek from end of file. */
  260. # ifdef __USE_GNU
  261. # define SEEK_DATA 3 /* Seek to next data. */
  262. # define SEEK_HOLE 4 /* Seek to next hole. */
  263. # endif
  264. #endif
  265. #if defined __USE_MISC && !defined L_SET
  266. /* Old BSD names for the same constants; just for compatibility. */
  267. # define L_SET SEEK_SET
  268. # define L_INCR SEEK_CUR
  269. # define L_XTND SEEK_END
  270. #endif
  271. /* Move FD's file position to OFFSET bytes from the
  272. beginning of the file (if WHENCE is SEEK_SET),
  273. the current position (if WHENCE is SEEK_CUR),
  274. or the end of the file (if WHENCE is SEEK_END).
  275. Return the new file position. */
  276. #ifndef __USE_FILE_OFFSET64
  277. extern __off_t lseek (int __fd, __off_t __offset, int __whence) __THROW;
  278. #else
  279. # ifdef __REDIRECT_NTH
  280. extern __off64_t __REDIRECT_NTH (lseek,
  281. (int __fd, __off64_t __offset, int __whence),
  282. lseek64);
  283. # else
  284. # define lseek lseek64
  285. # endif
  286. #endif
  287. #ifdef __USE_LARGEFILE64
  288. extern __off64_t lseek64 (int __fd, __off64_t __offset, int __whence)
  289. __THROW;
  290. #endif
  291. /* Close the file descriptor FD.
  292. This function is a cancellation point and therefore not marked with
  293. __THROW. */
  294. extern int close (int __fd);
  295. /* Read NBYTES into BUF from FD. Return the
  296. number read, -1 for errors or 0 for EOF.
  297. This function is a cancellation point and therefore not marked with
  298. __THROW. */
  299. extern ssize_t read (int __fd, void *__buf, size_t __nbytes) __wur;
  300. /* Write N bytes of BUF to FD. Return the number written, or -1.
  301. This function is a cancellation point and therefore not marked with
  302. __THROW. */
  303. extern ssize_t write (int __fd, const void *__buf, size_t __n) __wur;
  304. #if defined __USE_UNIX98 || defined __USE_XOPEN2K8
  305. # ifndef __USE_FILE_OFFSET64
  306. /* Read NBYTES into BUF from FD at the given position OFFSET without
  307. changing the file pointer. Return the number read, -1 for errors
  308. or 0 for EOF.
  309. This function is a cancellation point and therefore not marked with
  310. __THROW. */
  311. extern ssize_t pread (int __fd, void *__buf, size_t __nbytes,
  312. __off_t __offset) __wur;
  313. /* Write N bytes of BUF to FD at the given position OFFSET without
  314. changing the file pointer. Return the number written, or -1.
  315. This function is a cancellation point and therefore not marked with
  316. __THROW. */
  317. extern ssize_t pwrite (int __fd, const void *__buf, size_t __n,
  318. __off_t __offset) __wur;
  319. # else
  320. # ifdef __REDIRECT
  321. extern ssize_t __REDIRECT (pread, (int __fd, void *__buf, size_t __nbytes,
  322. __off64_t __offset),
  323. pread64) __wur;
  324. extern ssize_t __REDIRECT (pwrite, (int __fd, const void *__buf,
  325. size_t __nbytes, __off64_t __offset),
  326. pwrite64) __wur;
  327. # else
  328. # define pread pread64
  329. # define pwrite pwrite64
  330. # endif
  331. # endif
  332. # ifdef __USE_LARGEFILE64
  333. /* Read NBYTES into BUF from FD at the given position OFFSET without
  334. changing the file pointer. Return the number read, -1 for errors
  335. or 0 for EOF. */
  336. extern ssize_t pread64 (int __fd, void *__buf, size_t __nbytes,
  337. __off64_t __offset) __wur;
  338. /* Write N bytes of BUF to FD at the given position OFFSET without
  339. changing the file pointer. Return the number written, or -1. */
  340. extern ssize_t pwrite64 (int __fd, const void *__buf, size_t __n,
  341. __off64_t __offset) __wur;
  342. # endif
  343. #endif
  344. /* Create a one-way communication channel (pipe).
  345. If successful, two file descriptors are stored in PIPEDES;
  346. bytes written on PIPEDES[1] can be read from PIPEDES[0].
  347. Returns 0 if successful, -1 if not. */
  348. extern int pipe (int __pipedes[2]) __THROW __wur;
  349. #ifdef __USE_GNU
  350. /* Same as pipe but apply flags passed in FLAGS to the new file
  351. descriptors. */
  352. extern int pipe2 (int __pipedes[2], int __flags) __THROW __wur;
  353. #endif
  354. /* Schedule an alarm. In SECONDS seconds, the process will get a SIGALRM.
  355. If SECONDS is zero, any currently scheduled alarm will be cancelled.
  356. The function returns the number of seconds remaining until the last
  357. alarm scheduled would have signaled, or zero if there wasn't one.
  358. There is no return value to indicate an error, but you can set `errno'
  359. to 0 and check its value after calling `alarm', and this might tell you.
  360. The signal may come late due to processor scheduling. */
  361. extern unsigned int alarm (unsigned int __seconds) __THROW;
  362. /* Make the process sleep for SECONDS seconds, or until a signal arrives
  363. and is not ignored. The function returns the number of seconds less
  364. than SECONDS which it actually slept (thus zero if it slept the full time).
  365. If a signal handler does a `longjmp' or modifies the handling of the
  366. SIGALRM signal while inside `sleep' call, the handling of the SIGALRM
  367. signal afterwards is undefined. There is no return value to indicate
  368. error, but if `sleep' returns SECONDS, it probably didn't work.
  369. This function is a cancellation point and therefore not marked with
  370. __THROW. */
  371. extern unsigned int sleep (unsigned int __seconds);
  372. #if (defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K8) \
  373. || defined __USE_MISC
  374. /* Set an alarm to go off (generating a SIGALRM signal) in VALUE
  375. microseconds. If INTERVAL is nonzero, when the alarm goes off, the
  376. timer is reset to go off every INTERVAL microseconds thereafter.
  377. Returns the number of microseconds remaining before the alarm. */
  378. extern __useconds_t ualarm (__useconds_t __value, __useconds_t __interval)
  379. __THROW;
  380. /* Sleep USECONDS microseconds, or until a signal arrives that is not blocked
  381. or ignored.
  382. This function is a cancellation point and therefore not marked with
  383. __THROW. */
  384. extern int usleep (__useconds_t __useconds);
  385. #endif
  386. /* Suspend the process until a signal arrives.
  387. This always returns -1 and sets `errno' to EINTR.
  388. This function is a cancellation point and therefore not marked with
  389. __THROW. */
  390. extern int pause (void);
  391. /* Change the owner and group of FILE. */
  392. extern int chown (const char *__file, __uid_t __owner, __gid_t __group)
  393. __THROW __nonnull ((1)) __wur;
  394. #if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8
  395. /* Change the owner and group of the file that FD is open on. */
  396. extern int fchown (int __fd, __uid_t __owner, __gid_t __group) __THROW __wur;
  397. /* Change owner and group of FILE, if it is a symbolic
  398. link the ownership of the symbolic link is changed. */
  399. extern int lchown (const char *__file, __uid_t __owner, __gid_t __group)
  400. __THROW __nonnull ((1)) __wur;
  401. #endif /* Use X/Open Unix. */
  402. #ifdef __USE_ATFILE
  403. /* Change the owner and group of FILE relative to the directory FD is open
  404. on. */
  405. extern int fchownat (int __fd, const char *__file, __uid_t __owner,
  406. __gid_t __group, int __flag)
  407. __THROW __nonnull ((2)) __wur;
  408. #endif /* Use GNU. */
  409. /* Change the process's working directory to PATH. */
  410. extern int chdir (const char *__path) __THROW __nonnull ((1)) __wur;
  411. #if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8
  412. /* Change the process's working directory to the one FD is open on. */
  413. extern int fchdir (int __fd) __THROW __wur;
  414. #endif
  415. /* Get the pathname of the current working directory,
  416. and put it in SIZE bytes of BUF. Returns NULL if the
  417. directory couldn't be determined or SIZE was too small.
  418. If successful, returns BUF. In GNU, if BUF is NULL,
  419. an array is allocated with `malloc'; the array is SIZE
  420. bytes long, unless SIZE == 0, in which case it is as
  421. big as necessary. */
  422. extern char *getcwd (char *__buf, size_t __size) __THROW __wur;
  423. #ifdef __USE_GNU
  424. /* Return a malloc'd string containing the current directory name.
  425. If the environment variable `PWD' is set, and its value is correct,
  426. that value is used. */
  427. extern char *get_current_dir_name (void) __THROW;
  428. #endif
  429. #if (defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K8) \
  430. || defined __USE_MISC
  431. /* Put the absolute pathname of the current working directory in BUF.
  432. If successful, return BUF. If not, put an error message in
  433. BUF and return NULL. BUF should be at least PATH_MAX bytes long. */
  434. extern char *getwd (char *__buf)
  435. __THROW __nonnull ((1)) __attribute_deprecated__ __wur;
  436. #endif
  437. /* Duplicate FD, returning a new file descriptor on the same file. */
  438. extern int dup (int __fd) __THROW __wur;
  439. /* Duplicate FD to FD2, closing FD2 and making it open on the same file. */
  440. extern int dup2 (int __fd, int __fd2) __THROW;
  441. #ifdef __USE_GNU
  442. /* Duplicate FD to FD2, closing FD2 and making it open on the same
  443. file while setting flags according to FLAGS. */
  444. extern int dup3 (int __fd, int __fd2, int __flags) __THROW;
  445. #endif
  446. /* NULL-terminated array of "NAME=VALUE" environment variables. */
  447. extern char **__environ;
  448. #ifdef __USE_GNU
  449. extern char **environ;
  450. #endif
  451. /* Replace the current process, executing PATH with arguments ARGV and
  452. environment ENVP. ARGV and ENVP are terminated by NULL pointers. */
  453. extern int execve (const char *__path, char *const __argv[],
  454. char *const __envp[]) __THROW __nonnull ((1, 2));
  455. #ifdef __USE_XOPEN2K8
  456. /* Execute the file FD refers to, overlaying the running program image.
  457. ARGV and ENVP are passed to the new program, as for `execve'. */
  458. extern int fexecve (int __fd, char *const __argv[], char *const __envp[])
  459. __THROW __nonnull ((2));
  460. #endif
  461. /* Execute PATH with arguments ARGV and environment from `environ'. */
  462. extern int execv (const char *__path, char *const __argv[])
  463. __THROW __nonnull ((1, 2));
  464. /* Execute PATH with all arguments after PATH until a NULL pointer,
  465. and the argument after that for environment. */
  466. extern int execle (const char *__path, const char *__arg, ...)
  467. __THROW __nonnull ((1, 2));
  468. /* Execute PATH with all arguments after PATH until
  469. a NULL pointer and environment from `environ'. */
  470. extern int execl (const char *__path, const char *__arg, ...)
  471. __THROW __nonnull ((1, 2));
  472. /* Execute FILE, searching in the `PATH' environment variable if it contains
  473. no slashes, with arguments ARGV and environment from `environ'. */
  474. extern int execvp (const char *__file, char *const __argv[])
  475. __THROW __nonnull ((1, 2));
  476. /* Execute FILE, searching in the `PATH' environment variable if
  477. it contains no slashes, with all arguments after FILE until a
  478. NULL pointer and environment from `environ'. */
  479. extern int execlp (const char *__file, const char *__arg, ...)
  480. __THROW __nonnull ((1, 2));
  481. #ifdef __USE_GNU
  482. /* Execute FILE, searching in the `PATH' environment variable if it contains
  483. no slashes, with arguments ARGV and environment from `environ'. */
  484. extern int execvpe (const char *__file, char *const __argv[],
  485. char *const __envp[])
  486. __THROW __nonnull ((1, 2));
  487. #endif
  488. #if defined __USE_MISC || defined __USE_XOPEN
  489. /* Add INC to priority of the current process. */
  490. extern int nice (int __inc) __THROW __wur;
  491. #endif
  492. /* Terminate program execution with the low-order 8 bits of STATUS. */
  493. extern void _exit (int __status) __attribute__ ((__noreturn__));
  494. /* Get the `_PC_*' symbols for the NAME argument to `pathconf' and `fpathconf';
  495. the `_SC_*' symbols for the NAME argument to `sysconf';
  496. and the `_CS_*' symbols for the NAME argument to `confstr'. */
  497. #include <bits/confname.h>
  498. /* Get file-specific configuration information about PATH. */
  499. extern long int pathconf (const char *__path, int __name)
  500. __THROW __nonnull ((1));
  501. /* Get file-specific configuration about descriptor FD. */
  502. extern long int fpathconf (int __fd, int __name) __THROW;
  503. /* Get the value of the system variable NAME. */
  504. extern long int sysconf (int __name) __THROW;
  505. #ifdef __USE_POSIX2
  506. /* Get the value of the string-valued system variable NAME. */
  507. extern size_t confstr (int __name, char *__buf, size_t __len) __THROW;
  508. #endif
  509. /* Get the process ID of the calling process. */
  510. extern __pid_t getpid (void) __THROW;
  511. /* Get the process ID of the calling process's parent. */
  512. extern __pid_t getppid (void) __THROW;
  513. /* Get the process group ID of the calling process. */
  514. extern __pid_t getpgrp (void) __THROW;
  515. /* Get the process group ID of process PID. */
  516. extern __pid_t __getpgid (__pid_t __pid) __THROW;
  517. #if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8
  518. extern __pid_t getpgid (__pid_t __pid) __THROW;
  519. #endif
  520. /* Set the process group ID of the process matching PID to PGID.
  521. If PID is zero, the current process's process group ID is set.
  522. If PGID is zero, the process ID of the process is used. */
  523. extern int setpgid (__pid_t __pid, __pid_t __pgid) __THROW;
  524. #if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
  525. /* Both System V and BSD have `setpgrp' functions, but with different
  526. calling conventions. The BSD function is the same as POSIX.1 `setpgid'
  527. (above). The System V function takes no arguments and puts the calling
  528. process in its on group like `setpgid (0, 0)'.
  529. New programs should always use `setpgid' instead.
  530. GNU provides the POSIX.1 function. */
  531. /* Set the process group ID of the calling process to its own PID.
  532. This is exactly the same as `setpgid (0, 0)'. */
  533. extern int setpgrp (void) __THROW;
  534. #endif /* Use misc or X/Open. */
  535. /* Create a new session with the calling process as its leader.
  536. The process group IDs of the session and the calling process
  537. are set to the process ID of the calling process, which is returned. */
  538. extern __pid_t setsid (void) __THROW;
  539. #if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8
  540. /* Return the session ID of the given process. */
  541. extern __pid_t getsid (__pid_t __pid) __THROW;
  542. #endif
  543. /* Get the real user ID of the calling process. */
  544. extern __uid_t getuid (void) __THROW;
  545. /* Get the effective user ID of the calling process. */
  546. extern __uid_t geteuid (void) __THROW;
  547. /* Get the real group ID of the calling process. */
  548. extern __gid_t getgid (void) __THROW;
  549. /* Get the effective group ID of the calling process. */
  550. extern __gid_t getegid (void) __THROW;
  551. /* If SIZE is zero, return the number of supplementary groups
  552. the calling process is in. Otherwise, fill in the group IDs
  553. of its supplementary groups in LIST and return the number written. */
  554. extern int getgroups (int __size, __gid_t __list[]) __THROW __wur;
  555. #ifdef __USE_GNU
  556. /* Return nonzero iff the calling process is in group GID. */
  557. extern int group_member (__gid_t __gid) __THROW;
  558. #endif
  559. /* Set the user ID of the calling process to UID.
  560. If the calling process is the super-user, set the real
  561. and effective user IDs, and the saved set-user-ID to UID;
  562. if not, the effective user ID is set to UID. */
  563. extern int setuid (__uid_t __uid) __THROW __wur;
  564. #if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
  565. /* Set the real user ID of the calling process to RUID,
  566. and the effective user ID of the calling process to EUID. */
  567. extern int setreuid (__uid_t __ruid, __uid_t __euid) __THROW __wur;
  568. #endif
  569. #ifdef __USE_XOPEN2K
  570. /* Set the effective user ID of the calling process to UID. */
  571. extern int seteuid (__uid_t __uid) __THROW __wur;
  572. #endif /* Use POSIX.1-2001. */
  573. /* Set the group ID of the calling process to GID.
  574. If the calling process is the super-user, set the real
  575. and effective group IDs, and the saved set-group-ID to GID;
  576. if not, the effective group ID is set to GID. */
  577. extern int setgid (__gid_t __gid) __THROW __wur;
  578. #if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
  579. /* Set the real group ID of the calling process to RGID,
  580. and the effective group ID of the calling process to EGID. */
  581. extern int setregid (__gid_t __rgid, __gid_t __egid) __THROW __wur;
  582. #endif
  583. #ifdef __USE_XOPEN2K
  584. /* Set the effective group ID of the calling process to GID. */
  585. extern int setegid (__gid_t __gid) __THROW __wur;
  586. #endif /* Use POSIX.1-2001. */
  587. #ifdef __USE_GNU
  588. /* Fetch the real user ID, effective user ID, and saved-set user ID,
  589. of the calling process. */
  590. extern int getresuid (__uid_t *__ruid, __uid_t *__euid, __uid_t *__suid)
  591. __THROW;
  592. /* Fetch the real group ID, effective group ID, and saved-set group ID,
  593. of the calling process. */
  594. extern int getresgid (__gid_t *__rgid, __gid_t *__egid, __gid_t *__sgid)
  595. __THROW;
  596. /* Set the real user ID, effective user ID, and saved-set user ID,
  597. of the calling process to RUID, EUID, and SUID, respectively. */
  598. extern int setresuid (__uid_t __ruid, __uid_t __euid, __uid_t __suid)
  599. __THROW __wur;
  600. /* Set the real group ID, effective group ID, and saved-set group ID,
  601. of the calling process to RGID, EGID, and SGID, respectively. */
  602. extern int setresgid (__gid_t __rgid, __gid_t __egid, __gid_t __sgid)
  603. __THROW __wur;
  604. #endif
  605. /* Clone the calling process, creating an exact copy.
  606. Return -1 for errors, 0 to the new process,
  607. and the process ID of the new process to the old process. */
  608. extern __pid_t fork (void) __THROWNL;
  609. #if (defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K8) \
  610. || defined __USE_MISC
  611. /* Clone the calling process, but without copying the whole address space.
  612. The calling process is suspended until the new process exits or is
  613. replaced by a call to `execve'. Return -1 for errors, 0 to the new process,
  614. and the process ID of the new process to the old process. */
  615. extern __pid_t vfork (void) __THROW;
  616. #endif /* Use misc or XPG < 7. */
  617. /* Return the pathname of the terminal FD is open on, or NULL on errors.
  618. The returned storage is good only until the next call to this function. */
  619. extern char *ttyname (int __fd) __THROW;
  620. /* Store at most BUFLEN characters of the pathname of the terminal FD is
  621. open on in BUF. Return 0 on success, otherwise an error number. */
  622. extern int ttyname_r (int __fd, char *__buf, size_t __buflen)
  623. __THROW __nonnull ((2)) __wur;
  624. /* Return 1 if FD is a valid descriptor associated
  625. with a terminal, zero if not. */
  626. extern int isatty (int __fd) __THROW;
  627. #ifdef __USE_MISC
  628. /* Return the index into the active-logins file (utmp) for
  629. the controlling terminal. */
  630. extern int ttyslot (void) __THROW;
  631. #endif
  632. /* Make a link to FROM named TO. */
  633. extern int link (const char *__from, const char *__to)
  634. __THROW __nonnull ((1, 2)) __wur;
  635. #ifdef __USE_ATFILE
  636. /* Like link but relative paths in TO and FROM are interpreted relative
  637. to FROMFD and TOFD respectively. */
  638. extern int linkat (int __fromfd, const char *__from, int __tofd,
  639. const char *__to, int __flags)
  640. __THROW __nonnull ((2, 4)) __wur;
  641. #endif
  642. #if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K
  643. /* Make a symbolic link to FROM named TO. */
  644. extern int symlink (const char *__from, const char *__to)
  645. __THROW __nonnull ((1, 2)) __wur;
  646. /* Read the contents of the symbolic link PATH into no more than
  647. LEN bytes of BUF. The contents are not null-terminated.
  648. Returns the number of characters read, or -1 for errors. */
  649. extern ssize_t readlink (const char *__restrict __path,
  650. char *__restrict __buf, size_t __len)
  651. __THROW __nonnull ((1, 2)) __wur;
  652. #endif /* Use POSIX.1-2001. */
  653. #ifdef __USE_ATFILE
  654. /* Like symlink but a relative path in TO is interpreted relative to TOFD. */
  655. extern int symlinkat (const char *__from, int __tofd,
  656. const char *__to) __THROW __nonnull ((1, 3)) __wur;
  657. /* Like readlink but a relative PATH is interpreted relative to FD. */
  658. extern ssize_t readlinkat (int __fd, const char *__restrict __path,
  659. char *__restrict __buf, size_t __len)
  660. __THROW __nonnull ((2, 3)) __wur;
  661. #endif
  662. /* Remove the link NAME. */
  663. extern int unlink (const char *__name) __THROW __nonnull ((1));
  664. #ifdef __USE_ATFILE
  665. /* Remove the link NAME relative to FD. */
  666. extern int unlinkat (int __fd, const char *__name, int __flag)
  667. __THROW __nonnull ((2));
  668. #endif
  669. /* Remove the directory PATH. */
  670. extern int rmdir (const char *__path) __THROW __nonnull ((1));
  671. /* Return the foreground process group ID of FD. */
  672. extern __pid_t tcgetpgrp (int __fd) __THROW;
  673. /* Set the foreground process group ID of FD set PGRP_ID. */
  674. extern int tcsetpgrp (int __fd, __pid_t __pgrp_id) __THROW;
  675. /* Return the login name of the user.
  676. This function is a possible cancellation point and therefore not
  677. marked with __THROW. */
  678. extern char *getlogin (void);
  679. #ifdef __USE_POSIX199506
  680. /* Return at most NAME_LEN characters of the login name of the user in NAME.
  681. If it cannot be determined or some other error occurred, return the error
  682. code. Otherwise return 0.
  683. This function is a possible cancellation point and therefore not
  684. marked with __THROW. */
  685. extern int getlogin_r (char *__name, size_t __name_len) __nonnull ((1));
  686. #endif
  687. #ifdef __USE_MISC
  688. /* Set the login name returned by `getlogin'. */
  689. extern int setlogin (const char *__name) __THROW __nonnull ((1));
  690. #endif
  691. #ifdef __USE_POSIX2
  692. /* Get definitions and prototypes for functions to process the
  693. arguments in ARGV (ARGC of them, minus the program name) for
  694. options given in OPTS. */
  695. # include <bits/getopt_posix.h>
  696. #endif
  697. #if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K
  698. /* Put the name of the current host in no more than LEN bytes of NAME.
  699. The result is null-terminated if LEN is large enough for the full
  700. name and the terminator. */
  701. extern int gethostname (char *__name, size_t __len) __THROW __nonnull ((1));
  702. #endif
  703. #if defined __USE_MISC
  704. /* Set the name of the current host to NAME, which is LEN bytes long.
  705. This call is restricted to the super-user. */
  706. extern int sethostname (const char *__name, size_t __len)
  707. __THROW __nonnull ((1)) __wur;
  708. /* Set the current machine's Internet number to ID.
  709. This call is restricted to the super-user. */
  710. extern int sethostid (long int __id) __THROW __wur;
  711. /* Get and set the NIS (aka YP) domain name, if any.
  712. Called just like `gethostname' and `sethostname'.
  713. The NIS domain name is usually the empty string when not using NIS. */
  714. extern int getdomainname (char *__name, size_t __len)
  715. __THROW __nonnull ((1)) __wur;
  716. extern int setdomainname (const char *__name, size_t __len)
  717. __THROW __nonnull ((1)) __wur;
  718. /* Revoke access permissions to all processes currently communicating
  719. with the control terminal, and then send a SIGHUP signal to the process
  720. group of the control terminal. */
  721. extern int vhangup (void) __THROW;
  722. /* Revoke the access of all descriptors currently open on FILE. */
  723. extern int revoke (const char *__file) __THROW __nonnull ((1)) __wur;
  724. /* Enable statistical profiling, writing samples of the PC into at most
  725. SIZE bytes of SAMPLE_BUFFER; every processor clock tick while profiling
  726. is enabled, the system examines the user PC and increments
  727. SAMPLE_BUFFER[((PC - OFFSET) / 2) * SCALE / 65536]. If SCALE is zero,
  728. disable profiling. Returns zero on success, -1 on error. */
  729. extern int profil (unsigned short int *__sample_buffer, size_t __size,
  730. size_t __offset, unsigned int __scale)
  731. __THROW __nonnull ((1));
  732. /* Turn accounting on if NAME is an existing file. The system will then write
  733. a record for each process as it terminates, to this file. If NAME is NULL,
  734. turn accounting off. This call is restricted to the super-user. */
  735. extern int acct (const char *__name) __THROW;
  736. /* Successive calls return the shells listed in `/etc/shells'. */
  737. extern char *getusershell (void) __THROW;
  738. extern void endusershell (void) __THROW; /* Discard cached info. */
  739. extern void setusershell (void) __THROW; /* Rewind and re-read the file. */
  740. /* Put the program in the background, and dissociate from the controlling
  741. terminal. If NOCHDIR is zero, do `chdir ("/")'. If NOCLOSE is zero,
  742. redirects stdin, stdout, and stderr to /dev/null. */
  743. extern int daemon (int __nochdir, int __noclose) __THROW __wur;
  744. #endif /* Use misc. */
  745. #if defined __USE_MISC || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
  746. /* Make PATH be the root directory (the starting point for absolute paths).
  747. This call is restricted to the super-user. */
  748. extern int chroot (const char *__path) __THROW __nonnull ((1)) __wur;
  749. /* Prompt with PROMPT and read a string from the terminal without echoing.
  750. Uses /dev/tty if possible; otherwise stderr and stdin. */
  751. extern char *getpass (const char *__prompt) __nonnull ((1));
  752. #endif /* Use misc || X/Open. */
  753. /* Make all changes done to FD actually appear on disk.
  754. This function is a cancellation point and therefore not marked with
  755. __THROW. */
  756. extern int fsync (int __fd);
  757. #ifdef __USE_GNU
  758. /* Make all changes done to all files on the file system associated
  759. with FD actually appear on disk. */
  760. extern int syncfs (int __fd) __THROW;
  761. #endif
  762. #if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
  763. /* Return identifier for the current host. */
  764. extern long int gethostid (void);
  765. /* Make all changes done to all files actually appear on disk. */
  766. extern void sync (void) __THROW;
  767. # if defined __USE_MISC || !defined __USE_XOPEN2K
  768. /* Return the number of bytes in a page. This is the system's page size,
  769. which is not necessarily the same as the hardware page size. */
  770. extern int getpagesize (void) __THROW __attribute__ ((__const__));
  771. /* Return the maximum number of file descriptors
  772. the current process could possibly have. */
  773. extern int getdtablesize (void) __THROW;
  774. # endif
  775. #endif /* Use misc || X/Open Unix. */
  776. #if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8
  777. /* Truncate FILE to LENGTH bytes. */
  778. # ifndef __USE_FILE_OFFSET64
  779. extern int truncate (const char *__file, __off_t __length)
  780. __THROW __nonnull ((1)) __wur;
  781. # else
  782. # ifdef __REDIRECT_NTH
  783. extern int __REDIRECT_NTH (truncate,
  784. (const char *__file, __off64_t __length),
  785. truncate64) __nonnull ((1)) __wur;
  786. # else
  787. # define truncate truncate64
  788. # endif
  789. # endif
  790. # ifdef __USE_LARGEFILE64
  791. extern int truncate64 (const char *__file, __off64_t __length)
  792. __THROW __nonnull ((1)) __wur;
  793. # endif
  794. #endif /* Use X/Open Unix || POSIX 2008. */
  795. #if defined __USE_POSIX199309 \
  796. || defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K
  797. /* Truncate the file FD is open on to LENGTH bytes. */
  798. # ifndef __USE_FILE_OFFSET64
  799. extern int ftruncate (int __fd, __off_t __length) __THROW __wur;
  800. # else
  801. # ifdef __REDIRECT_NTH
  802. extern int __REDIRECT_NTH (ftruncate, (int __fd, __off64_t __length),
  803. ftruncate64) __wur;
  804. # else
  805. # define ftruncate ftruncate64
  806. # endif
  807. # endif
  808. # ifdef __USE_LARGEFILE64
  809. extern int ftruncate64 (int __fd, __off64_t __length) __THROW __wur;
  810. # endif
  811. #endif /* Use POSIX.1b || X/Open Unix || XPG6. */
  812. #if (defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K) \
  813. || defined __USE_MISC
  814. /* Set the end of accessible data space (aka "the break") to ADDR.
  815. Returns zero on success and -1 for errors (with errno set). */
  816. extern int brk (void *__addr) __THROW __wur;
  817. /* Increase or decrease the end of accessible data space by DELTA bytes.
  818. If successful, returns the address the previous end of data space
  819. (i.e. the beginning of the new space, if DELTA > 0);
  820. returns (void *) -1 for errors (with errno set). */
  821. extern void *sbrk (intptr_t __delta) __THROW;
  822. #endif
  823. #ifdef __USE_MISC
  824. /* Invoke `system call' number SYSNO, passing it the remaining arguments.
  825. This is completely system-dependent, and not often useful.
  826. In Unix, `syscall' sets `errno' for all errors and most calls return -1
  827. for errors; in many systems you cannot pass arguments or get return
  828. values for all system calls (`pipe', `fork', and `getppid' typically
  829. among them).
  830. In Mach, all system calls take normal arguments and always return an
  831. error code (zero for success). */
  832. extern long int syscall (long int __sysno, ...) __THROW;
  833. #endif /* Use misc. */
  834. #if (defined __USE_MISC || defined __USE_XOPEN_EXTENDED) && !defined F_LOCK
  835. /* NOTE: These declarations also appear in <fcntl.h>; be sure to keep both
  836. files consistent. Some systems have them there and some here, and some
  837. software depends on the macros being defined without including both. */
  838. /* `lockf' is a simpler interface to the locking facilities of `fcntl'.
  839. LEN is always relative to the current file position.
  840. The CMD argument is one of the following.
  841. This function is a cancellation point and therefore not marked with
  842. __THROW. */
  843. # define F_ULOCK 0 /* Unlock a previously locked region. */
  844. # define F_LOCK 1 /* Lock a region for exclusive use. */
  845. # define F_TLOCK 2 /* Test and lock a region for exclusive use. */
  846. # define F_TEST 3 /* Test a region for other processes locks. */
  847. # ifndef __USE_FILE_OFFSET64
  848. extern int lockf (int __fd, int __cmd, __off_t __len) __wur;
  849. # else
  850. # ifdef __REDIRECT
  851. extern int __REDIRECT (lockf, (int __fd, int __cmd, __off64_t __len),
  852. lockf64) __wur;
  853. # else
  854. # define lockf lockf64
  855. # endif
  856. # endif
  857. # ifdef __USE_LARGEFILE64
  858. extern int lockf64 (int __fd, int __cmd, __off64_t __len) __wur;
  859. # endif
  860. #endif /* Use misc and F_LOCK not already defined. */
  861. #ifdef __USE_GNU
  862. /* Evaluate EXPRESSION, and repeat as long as it returns -1 with `errno'
  863. set to EINTR. */
  864. # define TEMP_FAILURE_RETRY(expression) \
  865. (__extension__ \
  866. ({ long int __result; \
  867. do __result = (long int) (expression); \
  868. while (__result == -1L && errno == EINTR); \
  869. __result; }))
  870. /* Copy LENGTH bytes from INFD to OUTFD. */
  871. ssize_t copy_file_range (int __infd, __off64_t *__pinoff,
  872. int __outfd, __off64_t *__poutoff,
  873. size_t __length, unsigned int __flags);
  874. #endif /* __USE_GNU */
  875. #if defined __USE_POSIX199309 || defined __USE_UNIX98
  876. /* Synchronize at least the data part of a file with the underlying
  877. media. */
  878. extern int fdatasync (int __fildes);
  879. #endif /* Use POSIX199309 */
  880. #ifdef __USE_MISC
  881. /* One-way hash PHRASE, returning a string suitable for storage in the
  882. user database. SALT selects the one-way function to use, and
  883. ensures that no two users' hashes are the same, even if they use
  884. the same passphrase. The return value points to static storage
  885. which will be overwritten by the next call to crypt. */
  886. extern char *crypt (const char *__key, const char *__salt)
  887. __THROW __nonnull ((1, 2));
  888. #endif
  889. #ifdef __USE_XOPEN
  890. /* Swab pairs bytes in the first N bytes of the area pointed to by
  891. FROM and copy the result to TO. The value of TO must not be in the
  892. range [FROM - N + 1, FROM - 1]. If N is odd the first byte in FROM
  893. is without partner. */
  894. extern void swab (const void *__restrict __from, void *__restrict __to,
  895. ssize_t __n) __THROW __nonnull ((1, 2));
  896. #endif
  897. /* Prior to Issue 6, the Single Unix Specification required these
  898. prototypes to appear in this header. They are also found in
  899. <stdio.h>. */
  900. #if defined __USE_XOPEN && !defined __USE_XOPEN2K
  901. /* Return the name of the controlling terminal. */
  902. extern char *ctermid (char *__s) __THROW;
  903. /* Return the name of the current user. */
  904. extern char *cuserid (char *__s);
  905. #endif
  906. /* Unix98 requires this function to be declared here. In other
  907. standards it is in <pthread.h>. */
  908. #if defined __USE_UNIX98 && !defined __USE_XOPEN2K
  909. extern int pthread_atfork (void (*__prepare) (void),
  910. void (*__parent) (void),
  911. void (*__child) (void)) __THROW;
  912. #endif
  913. #ifdef __USE_MISC
  914. /* Write LENGTH bytes of randomness starting at BUFFER. Return 0 on
  915. success or -1 on error. */
  916. int getentropy (void *__buffer, size_t __length) __wur;
  917. #endif
  918. /* Define some macros helping to catch buffer overflows. */
  919. #if __USE_FORTIFY_LEVEL > 0 && defined __fortify_function
  920. # include <bits/unistd.h>
  921. #endif
  922. /* System-specific extensions. */
  923. #include <bits/unistd_ext.h>
  924. __END_DECLS
  925. #endif /* unistd.h */