unistd.h 44 KB

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