unistd.h 42 KB

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