unistd.h 36 KB

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