unistd.h 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051
  1. /* Copyright (C) 1991-2002, 2003, 2004 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. #endif
  215. /* Values for the WHENCE argument to lseek. */
  216. #ifndef _STDIO_H /* <stdio.h> has the same definitions. */
  217. # define SEEK_SET 0 /* Seek from beginning of file. */
  218. # define SEEK_CUR 1 /* Seek from current position. */
  219. # define SEEK_END 2 /* Seek from end of file. */
  220. #endif
  221. #if defined __USE_BSD && !defined L_SET
  222. /* Old BSD names for the same constants; just for compatibility. */
  223. # define L_SET SEEK_SET
  224. # define L_INCR SEEK_CUR
  225. # define L_XTND SEEK_END
  226. #endif
  227. /* Move FD's file position to OFFSET bytes from the
  228. beginning of the file (if WHENCE is SEEK_SET),
  229. the current position (if WHENCE is SEEK_CUR),
  230. or the end of the file (if WHENCE is SEEK_END).
  231. Return the new file position. */
  232. #ifndef __USE_FILE_OFFSET64
  233. extern __off_t lseek (int __fd, __off_t __offset, int __whence) __THROW;
  234. #else
  235. # ifdef __REDIRECT
  236. extern __off64_t __REDIRECT (lseek,
  237. (int __fd, __off64_t __offset, int __whence),
  238. lseek64);
  239. # else
  240. # define lseek lseek64
  241. # endif
  242. #endif
  243. #ifdef __USE_LARGEFILE64
  244. extern __off64_t lseek64 (int __fd, __off64_t __offset, int __whence) __THROW;
  245. #endif
  246. /* Close the file descriptor FD.
  247. This function is a cancellation point and therefore not marked with
  248. __THROW. */
  249. extern int close (int __fd);
  250. /* Read NBYTES into BUF from FD. Return the
  251. number read, -1 for errors or 0 for EOF.
  252. This function is a cancellation point and therefore not marked with
  253. __THROW. */
  254. extern ssize_t read (int __fd, void *__buf, size_t __nbytes);
  255. /* Write N bytes of BUF to FD. Return the number written, or -1.
  256. This function is a cancellation point and therefore not marked with
  257. __THROW. */
  258. extern ssize_t write (int __fd, __const void *__buf, size_t __n);
  259. #ifdef __USE_UNIX98
  260. # ifndef __USE_FILE_OFFSET64
  261. /* Read NBYTES into BUF from FD at the given position OFFSET without
  262. changing the file pointer. Return the number read, -1 for errors
  263. or 0 for EOF.
  264. This function is a cancellation point and therefore not marked with
  265. __THROW. */
  266. extern ssize_t pread (int __fd, void *__buf, size_t __nbytes,
  267. __off_t __offset);
  268. /* Write N bytes of BUF to FD at the given position OFFSET without
  269. changing the file pointer. Return the number written, or -1.
  270. This function is a cancellation point and therefore not marked with
  271. __THROW. */
  272. extern ssize_t pwrite (int __fd, __const void *__buf, size_t __n,
  273. __off_t __offset);
  274. # else
  275. # ifdef __REDIRECT
  276. extern ssize_t __REDIRECT (pread, (int __fd, void *__buf, size_t __nbytes,
  277. __off64_t __offset),
  278. pread64);
  279. extern ssize_t __REDIRECT (pwrite, (int __fd, __const void *__buf,
  280. size_t __nbytes, __off64_t __offset),
  281. pwrite64);
  282. # else
  283. # define pread pread64
  284. # define pwrite pwrite64
  285. # endif
  286. # endif
  287. # ifdef __USE_LARGEFILE64
  288. /* Read NBYTES into BUF from FD at the given position OFFSET without
  289. changing the file pointer. Return the number read, -1 for errors
  290. or 0 for EOF. */
  291. extern ssize_t pread64 (int __fd, void *__buf, size_t __nbytes,
  292. __off64_t __offset);
  293. /* Write N bytes of BUF to FD at the given position OFFSET without
  294. changing the file pointer. Return the number written, or -1. */
  295. extern ssize_t pwrite64 (int __fd, __const void *__buf, size_t __n,
  296. __off64_t __offset);
  297. # endif
  298. #endif
  299. /* Create a one-way communication channel (pipe).
  300. If successful, two file descriptors are stored in PIPEDES;
  301. bytes written on PIPEDES[1] can be read from PIPEDES[0].
  302. Returns 0 if successful, -1 if not. */
  303. extern int pipe (int __pipedes[2]) __THROW;
  304. /* Schedule an alarm. In SECONDS seconds, the process will get a SIGALRM.
  305. If SECONDS is zero, any currently scheduled alarm will be cancelled.
  306. The function returns the number of seconds remaining until the last
  307. alarm scheduled would have signaled, or zero if there wasn't one.
  308. There is no return value to indicate an error, but you can set `errno'
  309. to 0 and check its value after calling `alarm', and this might tell you.
  310. The signal may come late due to processor scheduling. */
  311. extern unsigned int alarm (unsigned int __seconds) __THROW;
  312. /* Make the process sleep for SECONDS seconds, or until a signal arrives
  313. and is not ignored. The function returns the number of seconds less
  314. than SECONDS which it actually slept (thus zero if it slept the full time).
  315. If a signal handler does a `longjmp' or modifies the handling of the
  316. SIGALRM signal while inside `sleep' call, the handling of the SIGALRM
  317. signal afterwards is undefined. There is no return value to indicate
  318. error, but if `sleep' returns SECONDS, it probably didn't work.
  319. This function is a cancellation point and therefore not marked with
  320. __THROW. */
  321. extern unsigned int sleep (unsigned int __seconds);
  322. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  323. /* Set an alarm to go off (generating a SIGALRM signal) in VALUE
  324. microseconds. If INTERVAL is nonzero, when the alarm goes off, the
  325. timer is reset to go off every INTERVAL microseconds thereafter.
  326. Returns the number of microseconds remaining before the alarm. */
  327. extern __useconds_t ualarm (__useconds_t __value, __useconds_t __interval)
  328. __THROW;
  329. /* Sleep USECONDS microseconds, or until a signal arrives that is not blocked
  330. or ignored.
  331. This function is a cancellation point and therefore not marked with
  332. __THROW. */
  333. extern int usleep (__useconds_t __useconds);
  334. #endif
  335. /* Suspend the process until a signal arrives.
  336. This always returns -1 and sets `errno' to EINTR.
  337. This function is a cancellation point and therefore not marked with
  338. __THROW. */
  339. extern int pause (void);
  340. /* Change the owner and group of FILE. */
  341. extern int chown (__const char *__file, __uid_t __owner, __gid_t __group)
  342. __THROW __nonnull ((1));
  343. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  344. /* Change the owner and group of the file that FD is open on. */
  345. extern int fchown (int __fd, __uid_t __owner, __gid_t __group) __THROW;
  346. /* Change owner and group of FILE, if it is a symbolic
  347. link the ownership of the symbolic link is changed. */
  348. extern int lchown (__const char *__file, __uid_t __owner, __gid_t __group)
  349. __THROW __nonnull ((1));
  350. #endif /* Use BSD || X/Open Unix. */
  351. /* Change the process's working directory to PATH. */
  352. extern int chdir (__const char *__path) __THROW __nonnull ((1));
  353. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  354. /* Change the process's working directory to the one FD is open on. */
  355. extern int fchdir (int __fd) __THROW;
  356. #endif
  357. /* Get the pathname of the current working directory,
  358. and put it in SIZE bytes of BUF. Returns NULL if the
  359. directory couldn't be determined or SIZE was too small.
  360. If successful, returns BUF. In GNU, if BUF is NULL,
  361. an array is allocated with `malloc'; the array is SIZE
  362. bytes long, unless SIZE == 0, in which case it is as
  363. big as necessary. */
  364. extern char *getcwd (char *__buf, size_t __size) __THROW;
  365. #ifdef __USE_GNU
  366. /* Return a malloc'd string containing the current directory name.
  367. If the environment variable `PWD' is set, and its value is correct,
  368. that value is used. */
  369. extern char *get_current_dir_name (void) __THROW;
  370. #endif
  371. #if 0 /* defined __USE_BSD || defined __USE_XOPEN_EXTENDED */
  372. /* Put the absolute pathname of the current working directory in BUF.
  373. If successful, return BUF. If not, put an error message in
  374. BUF and return NULL. BUF should be at least PATH_MAX bytes long. */
  375. extern char *getwd (char *__buf) __THROW __nonnull ((1));
  376. #endif
  377. /* Duplicate FD, returning a new file descriptor on the same file. */
  378. extern int dup (int __fd) __THROW;
  379. /* Duplicate FD to FD2, closing FD2 and making it open on the same file. */
  380. extern int dup2 (int __fd, int __fd2) __THROW;
  381. /* NULL-terminated array of "NAME=VALUE" environment variables. */
  382. extern char **__environ;
  383. #ifdef __USE_GNU
  384. extern char **environ;
  385. #endif
  386. /* Replace the current process, executing PATH with arguments ARGV and
  387. environment ENVP. ARGV and ENVP are terminated by NULL pointers. */
  388. extern int execve (__const char *__path, char *__const __argv[],
  389. char *__const __envp[]) __THROW __nonnull ((1));
  390. #if 0 /* def __USE_GNU */
  391. /* Execute the file FD refers to, overlaying the running program image.
  392. ARGV and ENVP are passed to the new program, as for `execve'. */
  393. extern int fexecve (int __fd, char *__const __argv[], char *__const __envp[])
  394. __THROW;
  395. #endif
  396. /* Execute PATH with arguments ARGV and environment from `environ'. */
  397. extern int execv (__const char *__path, char *__const __argv[])
  398. __THROW __nonnull ((1));
  399. /* Execute PATH with all arguments after PATH until a NULL pointer,
  400. and the argument after that for environment. */
  401. extern int execle (__const char *__path, __const char *__arg, ...)
  402. __THROW __nonnull ((1));
  403. /* Execute PATH with all arguments after PATH until
  404. a NULL pointer and environment from `environ'. */
  405. extern int execl (__const char *__path, __const char *__arg, ...)
  406. __THROW __nonnull ((1));
  407. /* Execute FILE, searching in the `PATH' environment variable if it contains
  408. no slashes, with arguments ARGV and environment from `environ'. */
  409. extern int execvp (__const char *__file, char *__const __argv[])
  410. __THROW __nonnull ((1));
  411. /* Execute FILE, searching in the `PATH' environment variable if
  412. it contains no slashes, with all arguments after FILE until a
  413. NULL pointer and environment from `environ'. */
  414. extern int execlp (__const char *__file, __const char *__arg, ...)
  415. __THROW __nonnull ((1));
  416. #if defined __USE_MISC || defined __USE_XOPEN
  417. /* Add INC to priority of the current process. */
  418. extern int nice (int __inc) __THROW;
  419. #endif
  420. /* Terminate program execution with the low-order 8 bits of STATUS. */
  421. extern void _exit (int __status) __attribute__ ((__noreturn__));
  422. /* Get the `_PC_*' symbols for the NAME argument to `pathconf' and `fpathconf';
  423. the `_SC_*' symbols for the NAME argument to `sysconf';
  424. and the `_CS_*' symbols for the NAME argument to `confstr'. */
  425. #include <bits/confname.h>
  426. /* Get file-specific configuration information about PATH. */
  427. extern long int pathconf (__const char *__path, int __name)
  428. __THROW __nonnull ((1));
  429. /* Get file-specific configuration about descriptor FD. */
  430. extern long int fpathconf (int __fd, int __name) __THROW;
  431. /* Get the value of the system variable NAME. */
  432. extern long int sysconf (int __name) __THROW __attribute__ ((__const__));
  433. #ifdef __USE_POSIX2
  434. /* Get the value of the string-valued system variable NAME. */
  435. extern size_t confstr (int __name, char *__buf, size_t __len) __THROW;
  436. #endif
  437. /* Get the process ID of the calling process. */
  438. extern __pid_t getpid (void) __THROW;
  439. /* Get the process ID of the calling process's parent. */
  440. extern __pid_t getppid (void) __THROW;
  441. /* Get the process group ID of the calling process.
  442. This function is different on old BSD. */
  443. #ifndef __FAVOR_BSD
  444. extern __pid_t getpgrp (void) __THROW;
  445. #else
  446. # ifdef __REDIRECT
  447. extern __pid_t __REDIRECT (getpgrp, (__pid_t __pid), __getpgid);
  448. # else
  449. # define getpgrp __getpgid
  450. # endif
  451. #endif
  452. /* Get the process group ID of process PID. */
  453. extern __pid_t __getpgid (__pid_t __pid) __THROW;
  454. #ifdef __USE_XOPEN_EXTENDED
  455. extern __pid_t getpgid (__pid_t __pid) __THROW;
  456. #endif
  457. /* Set the process group ID of the process matching PID to PGID.
  458. If PID is zero, the current process's process group ID is set.
  459. If PGID is zero, the process ID of the process is used. */
  460. extern int setpgid (__pid_t __pid, __pid_t __pgid) __THROW;
  461. #if defined __USE_SVID || defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  462. /* Both System V and BSD have `setpgrp' functions, but with different
  463. calling conventions. The BSD function is the same as POSIX.1 `setpgid'
  464. (above). The System V function takes no arguments and puts the calling
  465. process in its on group like `setpgid (0, 0)'.
  466. New programs should always use `setpgid' instead.
  467. The default in GNU is to provide the System V function. The BSD
  468. function is available under -D_BSD_SOURCE. */
  469. # ifndef __FAVOR_BSD
  470. /* Set the process group ID of the calling process to its own PID.
  471. This is exactly the same as `setpgid (0, 0)'. */
  472. extern int setpgrp (void) __THROW;
  473. # else
  474. /* Another name for `setpgid' (above). */
  475. # ifdef __REDIRECT
  476. extern int __REDIRECT (setpgrp, (__pid_t __pid, __pid_t __pgrp), setpgid);
  477. # else
  478. # define setpgrp setpgid
  479. # endif
  480. # endif /* Favor BSD. */
  481. #endif /* Use SVID or BSD. */
  482. /* Create a new session with the calling process as its leader.
  483. The process group IDs of the session and the calling process
  484. are set to the process ID of the calling process, which is returned. */
  485. extern __pid_t setsid (void) __THROW;
  486. #ifdef __USE_XOPEN_EXTENDED
  487. /* Return the session ID of the given process. */
  488. extern __pid_t getsid (__pid_t __pid) __THROW;
  489. #endif
  490. /* Get the real user ID of the calling process. */
  491. extern __uid_t getuid (void) __THROW;
  492. /* Get the effective user ID of the calling process. */
  493. extern __uid_t geteuid (void) __THROW;
  494. /* Get the real group ID of the calling process. */
  495. extern __gid_t getgid (void) __THROW;
  496. /* Get the effective group ID of the calling process. */
  497. extern __gid_t getegid (void) __THROW;
  498. /* If SIZE is zero, return the number of supplementary groups
  499. the calling process is in. Otherwise, fill in the group IDs
  500. of its supplementary groups in LIST and return the number written. */
  501. extern int getgroups (int __size, __gid_t __list[]) __THROW;
  502. #if 0 /* def __USE_GNU */
  503. /* Return nonzero iff the calling process is in group GID. */
  504. extern int group_member (__gid_t __gid) __THROW;
  505. #endif
  506. /* Set the user ID of the calling process to UID.
  507. If the calling process is the super-user, set the real
  508. and effective user IDs, and the saved set-user-ID to UID;
  509. if not, the effective user ID is set to UID. */
  510. extern int setuid (__uid_t __uid) __THROW;
  511. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  512. /* Set the real user ID of the calling process to RUID,
  513. and the effective user ID of the calling process to EUID. */
  514. extern int setreuid (__uid_t __ruid, __uid_t __euid) __THROW;
  515. #endif
  516. #if defined __USE_BSD || defined __USE_XOPEN2K
  517. /* Set the effective user ID of the calling process to UID. */
  518. extern int seteuid (__uid_t __uid) __THROW;
  519. #endif /* Use BSD. */
  520. /* Set the group ID of the calling process to GID.
  521. If the calling process is the super-user, set the real
  522. and effective group IDs, and the saved set-group-ID to GID;
  523. if not, the effective group ID is set to GID. */
  524. extern int setgid (__gid_t __gid) __THROW;
  525. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  526. /* Set the real group ID of the calling process to RGID,
  527. and the effective group ID of the calling process to EGID. */
  528. extern int setregid (__gid_t __rgid, __gid_t __egid) __THROW;
  529. #endif
  530. #if defined __USE_BSD || defined __USE_XOPEN2K
  531. /* Set the effective group ID of the calling process to GID. */
  532. extern int setegid (__gid_t __gid) __THROW;
  533. #endif /* Use BSD. */
  534. #ifdef __USE_GNU
  535. /* Fetch the effective user ID, real user ID, and saved-set user ID,
  536. of the calling process. */
  537. extern int getresuid (__uid_t *__euid, __uid_t *__ruid, __uid_t *__suid);
  538. /* Fetch the effective group ID, real group ID, and saved-set group ID,
  539. of the calling process. */
  540. extern int getresgid (__gid_t *__egid, __gid_t *__rgid, __gid_t *__sgid);
  541. /* Set the effective user ID, real user ID, and saved-set user ID,
  542. of the calling process to EUID, RUID, and SUID, respectively. */
  543. extern int setresuid (__uid_t __euid, __uid_t __ruid, __uid_t __suid);
  544. /* Set the effective group ID, real group ID, and saved-set group ID,
  545. of the calling process to EGID, RGID, and SGID, respectively. */
  546. extern int setresgid (__gid_t __egid, __gid_t __rgid, __gid_t __sgid);
  547. #endif
  548. #ifdef __ARCH_HAS_MMU__
  549. /* Clone the calling process, creating an exact copy.
  550. Return -1 for errors, 0 to the new process,
  551. and the process ID of the new process to the old process. */
  552. extern __pid_t fork (void) __THROW;
  553. #endif
  554. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  555. /* Clone the calling process, but without copying the whole address space.
  556. The calling process is suspended until the new process exits or is
  557. replaced by a call to `execve'. Return -1 for errors, 0 to the new process,
  558. and the process ID of the new process to the old process. */
  559. extern __pid_t vfork (void) __THROW;
  560. #endif /* Use BSD. */
  561. /* Return the pathname of the terminal FD is open on, or NULL on errors.
  562. The returned storage is good only until the next call to this function. */
  563. extern char *ttyname (int __fd) __THROW;
  564. /* Store at most BUFLEN characters of the pathname of the terminal FD is
  565. open on in BUF. Return 0 on success, otherwise an error number. */
  566. extern int ttyname_r (int __fd, char *__buf, size_t __buflen)
  567. __THROW __nonnull ((2));
  568. /* Return 1 if FD is a valid descriptor associated
  569. with a terminal, zero if not. */
  570. extern int isatty (int __fd) __THROW;
  571. #if 0 /* defined __USE_BSD \
  572. || (defined __USE_XOPEN_EXTENDED && !defined __USE_UNIX98) */
  573. /* Return the index into the active-logins file (utmp) for
  574. the controlling terminal. */
  575. extern int ttyslot (void) __THROW;
  576. #endif
  577. /* Make a link to FROM named TO. */
  578. extern int link (__const char *__from, __const char *__to)
  579. __THROW __nonnull ((1, 2));
  580. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K
  581. /* Make a symbolic link to FROM named TO. */
  582. extern int symlink (__const char *__from, __const char *__to)
  583. __THROW __nonnull ((1, 2));
  584. /* Read the contents of the symbolic link PATH into no more than
  585. LEN bytes of BUF. The contents are not null-terminated.
  586. Returns the number of characters read, or -1 for errors. */
  587. extern int readlink (__const char *__restrict __path, char *__restrict __buf,
  588. size_t __len) __THROW __nonnull ((1, 2));
  589. #endif /* Use BSD. */
  590. /* Remove the link NAME. */
  591. extern int unlink (__const char *__name) __THROW __nonnull ((1));
  592. /* Remove the directory PATH. */
  593. extern int rmdir (__const char *__path) __THROW __nonnull ((1));
  594. /* Return the foreground process group ID of FD. */
  595. extern __pid_t tcgetpgrp (int __fd) __THROW;
  596. /* Set the foreground process group ID of FD set PGRP_ID. */
  597. extern int tcsetpgrp (int __fd, __pid_t __pgrp_id) __THROW;
  598. /* Return the login name of the user.
  599. This function is a possible cancellation points and therefore not
  600. marked with __THROW. */
  601. extern char *getlogin (void);
  602. #if defined __USE_REENTRANT || defined __USE_UNIX98
  603. /* Return at most NAME_LEN characters of the login name of the user in NAME.
  604. If it cannot be determined or some other error occurred, return the error
  605. code. Otherwise return 0.
  606. This function is a possible cancellation points and therefore not
  607. marked with __THROW. */
  608. extern int getlogin_r (char *__name, size_t __name_len) __nonnull ((1));
  609. #endif
  610. #if 0 /* def __USE_BSD */
  611. /* Set the login name returned by `getlogin'. */
  612. extern int setlogin (__const char *__name) __THROW __nonnull ((1));
  613. #endif
  614. #ifdef __USE_POSIX2
  615. /* Get definitions and prototypes for functions to process the
  616. arguments in ARGV (ARGC of them, minus the program name) for
  617. options given in OPTS. */
  618. # define __need_getopt
  619. # include <bits/getopt.h>
  620. #endif
  621. #if defined __USE_BSD || defined __USE_UNIX98
  622. /* Put the name of the current host in no more than LEN bytes of NAME.
  623. The result is null-terminated if LEN is large enough for the full
  624. name and the terminator. */
  625. extern int gethostname (char *__name, size_t __len) __THROW __nonnull ((1));
  626. #endif
  627. #if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_UNIX98)
  628. /* Set the name of the current host to NAME, which is LEN bytes long.
  629. This call is restricted to the super-user. */
  630. extern int sethostname (__const char *__name, size_t __len)
  631. __THROW __nonnull ((1));
  632. /* Set the current machine's Internet number to ID.
  633. This call is restricted to the super-user. */
  634. extern int sethostid (long int __id) __THROW;
  635. /* Get and set the NIS (aka YP) domain name, if any.
  636. Called just like `gethostname' and `sethostname'.
  637. The NIS domain name is usually the empty string when not using NIS. */
  638. extern int getdomainname (char *__name, size_t __len)
  639. __THROW __nonnull ((1));
  640. extern int setdomainname (__const char *__name, size_t __len)
  641. __THROW __nonnull ((1));
  642. /* Revoke access permissions to all processes currently communicating
  643. with the control terminal, and then send a SIGHUP signal to the process
  644. group of the control terminal. */
  645. extern int vhangup (void) __THROW;
  646. #if 0
  647. /* Revoke the access of all descriptors currently open on FILE. */
  648. extern int revoke (__const char *__file) __THROW __nonnull ((1));
  649. /* Enable statistical profiling, writing samples of the PC into at most
  650. SIZE bytes of SAMPLE_BUFFER; every processor clock tick while profiling
  651. is enabled, the system examines the user PC and increments
  652. SAMPLE_BUFFER[((PC - OFFSET) / 2) * SCALE / 65536]. If SCALE is zero,
  653. disable profiling. Returns zero on success, -1 on error. */
  654. extern int profil (unsigned short int *__sample_buffer, size_t __size,
  655. size_t __offset, unsigned int __scale)
  656. __THROW __nonnull ((1));
  657. #endif
  658. /* Turn accounting on if NAME is an existing file. The system will then write
  659. a record for each process as it terminates, to this file. If NAME is NULL,
  660. turn accounting off. This call is restricted to the super-user. */
  661. extern int acct (__const char *__name) __THROW __nonnull ((1));
  662. /* Successive calls return the shells listed in `/etc/shells'. */
  663. extern char *getusershell (void) __THROW;
  664. extern void endusershell (void) __THROW; /* Discard cached info. */
  665. extern void setusershell (void) __THROW; /* Rewind and re-read the file. */
  666. #ifdef __ARCH_HAS_MMU__
  667. /* Put the program in the background, and dissociate from the controlling
  668. terminal. If NOCHDIR is zero, do `chdir ("/")'. If NOCLOSE is zero,
  669. redirects stdin, stdout, and stderr to /dev/null. */
  670. extern int daemon (int __nochdir, int __noclose) __THROW;
  671. #endif
  672. #endif /* Use BSD || X/Open. */
  673. #if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
  674. /* Make PATH be the root directory (the starting point for absolute paths).
  675. This call is restricted to the super-user. */
  676. extern int chroot (__const char *__path) __THROW __nonnull ((1));
  677. /* Prompt with PROMPT and read a string from the terminal without echoing.
  678. Uses /dev/tty if possible; otherwise stderr and stdin. */
  679. extern char *getpass (__const char *__prompt) __nonnull ((1));
  680. #endif /* Use BSD || X/Open. */
  681. #if defined __USE_BSD || defined __USE_XOPEN
  682. /* Make all changes done to FD actually appear on disk.
  683. This function is a cancellation point and therefore not marked with
  684. __THROW. */
  685. extern int fsync (int __fd);
  686. #endif /* Use BSD || X/Open. */
  687. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  688. /* Return identifier for the current host. */
  689. extern long int gethostid (void);
  690. /* Make all changes done to all files actually appear on disk. */
  691. extern void sync (void) __THROW;
  692. /* Return the number of bytes in a page. This is the system's page size,
  693. which is not necessarily the same as the hardware page size. */
  694. extern int getpagesize (void) __THROW __attribute__ ((__const__));
  695. /* Return the maximum number of file descriptors
  696. the current process could possibly have. */
  697. extern int getdtablesize (void) __THROW;
  698. /* Truncate FILE to LENGTH bytes. */
  699. # ifndef __USE_FILE_OFFSET64
  700. extern int truncate (__const char *__file, __off_t __length)
  701. __THROW __nonnull ((1));
  702. # else
  703. # ifdef __REDIRECT
  704. extern int __REDIRECT (truncate,
  705. (__const char *__file, __off64_t __length),
  706. truncate64) __nonnull ((1));
  707. # else
  708. # define truncate truncate64
  709. # endif
  710. # endif
  711. # ifdef __USE_LARGEFILE64
  712. extern int truncate64 (__const char *__file, __off64_t __length)
  713. __THROW __nonnull ((1));
  714. # endif
  715. #endif /* Use BSD || X/Open Unix. */
  716. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K
  717. /* Truncate the file FD is open on to LENGTH bytes. */
  718. # ifndef __USE_FILE_OFFSET64
  719. extern int ftruncate (int __fd, __off_t __length) __THROW;
  720. # else
  721. # ifdef __REDIRECT
  722. extern int __REDIRECT (ftruncate, (int __fd, __off64_t __length),
  723. ftruncate64);
  724. # else
  725. # define ftruncate ftruncate64
  726. # endif
  727. # endif
  728. # ifdef __USE_LARGEFILE64
  729. extern int ftruncate64 (int __fd, __off64_t __length) __THROW;
  730. # endif
  731. #endif /* Use BSD || X/Open Unix || POSIX 2003. */
  732. #if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
  733. /* Set the end of accessible data space (aka "the break") to ADDR.
  734. Returns zero on success and -1 for errors (with errno set). */
  735. extern int brk (void *__addr) __THROW;
  736. /* Increase or decrease the end of accessible data space by DELTA bytes.
  737. If successful, returns the address the previous end of data space
  738. (i.e. the beginning of the new space, if DELTA > 0);
  739. returns (void *) -1 for errors (with errno set). */
  740. extern void *sbrk (intptr_t __delta) __THROW;
  741. #endif
  742. #ifdef __USE_MISC
  743. /* Invoke `system call' number SYSNO, passing it the remaining arguments.
  744. This is completely system-dependent, and not often useful.
  745. In Unix, `syscall' sets `errno' for all errors and most calls return -1
  746. for errors; in many systems you cannot pass arguments or get return
  747. values for all system calls (`pipe', `fork', and `getppid' typically
  748. among them).
  749. In Mach, all system calls take normal arguments and always return an
  750. error code (zero for success). */
  751. extern long int syscall (long int __sysno, ...) __THROW;
  752. #endif /* Use misc. */
  753. #if (defined __USE_MISC || defined __USE_XOPEN_EXTENDED) && !defined F_LOCK
  754. /* NOTE: These declarations also appear in <fcntl.h>; be sure to keep both
  755. files consistent. Some systems have them there and some here, and some
  756. software depends on the macros being defined without including both. */
  757. /* `lockf' is a simpler interface to the locking facilities of `fcntl'.
  758. LEN is always relative to the current file position.
  759. The CMD argument is one of the following.
  760. This function is a cancellation point and therefore not marked with
  761. __THROW. */
  762. # define F_ULOCK 0 /* Unlock a previously locked region. */
  763. # define F_LOCK 1 /* Lock a region for exclusive use. */
  764. # define F_TLOCK 2 /* Test and lock a region for exclusive use. */
  765. # define F_TEST 3 /* Test a region for other processes locks. */
  766. # ifndef __USE_FILE_OFFSET64
  767. extern int lockf (int __fd, int __cmd, __off_t __len);
  768. # else
  769. # ifdef __REDIRECT
  770. extern int __REDIRECT (lockf, (int __fd, int __cmd, __off64_t __len),
  771. lockf64);
  772. # else
  773. # define lockf lockf64
  774. # endif
  775. # endif
  776. # ifdef __USE_LARGEFILE64
  777. extern int lockf64 (int __fd, int __cmd, __off64_t __len);
  778. # endif
  779. #endif /* Use misc and F_LOCK not already defined. */
  780. #ifdef __USE_GNU
  781. /* Evaluate EXPRESSION, and repeat as long as it returns -1 with `errno'
  782. set to EINTR. */
  783. # define TEMP_FAILURE_RETRY(expression) \
  784. (__extension__ \
  785. ({ long int __result; \
  786. do __result = (long int) (expression); \
  787. while (__result == -1L && errno == EINTR); \
  788. __result; }))
  789. #endif
  790. #if defined __USE_POSIX199309 || defined __USE_UNIX98
  791. /* Synchronize at least the data part of a file with the underlying
  792. media. */
  793. extern int fdatasync (int __fildes) __THROW;
  794. #endif /* Use POSIX199309 */
  795. /* XPG4.2 specifies that prototypes for the encryption functions must
  796. be defined here. */
  797. #ifdef __USE_XOPEN
  798. /* Encrypt at most 8 characters from KEY using salt to perturb DES. */
  799. extern char *crypt (__const char *__key, __const char *__salt)
  800. __THROW __nonnull ((1, 2));
  801. /* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
  802. block in place. */
  803. extern void encrypt (char *__block, int __edflag) __THROW __nonnull ((1));
  804. /* Swab pairs bytes in the first N bytes of the area pointed to by
  805. FROM and copy the result to TO. The value of TO must not be in the
  806. range [FROM - N + 1, FROM - 1]. If N is odd the first byte in FROM
  807. is without partner. */
  808. extern void swab (__const void *__restrict __from, void *__restrict __to,
  809. ssize_t __n) __THROW __nonnull ((1, 2));
  810. #endif
  811. /* The Single Unix specification demands this prototype to be here.
  812. It is also found in <stdio.h>. */
  813. #ifdef __USE_XOPEN
  814. /* Return the name of the controlling terminal. */
  815. extern char *ctermid (char *__s) __THROW __nonnull ((1));
  816. #endif
  817. __END_DECLS
  818. #endif /* unistd.h */