unistd.h 36 KB

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