unistd.h 41 KB

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