unistd.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:37k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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. #ifdef __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_NTH
  236. extern __off64_t __REDIRECT_NTH (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 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. #ifdef __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_NTH
  447. extern __pid_t __REDIRECT_NTH (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_NTH
  476. extern int __REDIRECT_NTH (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. #ifdef __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. /* Clone the calling process, creating an exact copy.
  549.    Return -1 for errors, 0 to the new process,
  550.    and the process ID of the new process to the old process.  */
  551. extern __pid_t fork (void) __THROW;
  552. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  553. /* Clone the calling process, but without copying the whole address space.
  554.    The calling process is suspended until the new process exits or is
  555.    replaced by a call to `execve'.  Return -1 for errors, 0 to the new process,
  556.    and the process ID of the new process to the old process.  */
  557. extern __pid_t vfork (void) __THROW;
  558. #endif /* Use BSD. */
  559. /* Return the pathname of the terminal FD is open on, or NULL on errors.
  560.    The returned storage is good only until the next call to this function.  */
  561. extern char *ttyname (int __fd) __THROW;
  562. /* Store at most BUFLEN characters of the pathname of the terminal FD is
  563.    open on in BUF.  Return 0 on success, otherwise an error number.  */
  564. extern int ttyname_r (int __fd, char *__buf, size_t __buflen)
  565.      __THROW __nonnull ((2));
  566. /* Return 1 if FD is a valid descriptor associated
  567.    with a terminal, zero if not.  */
  568. extern int isatty (int __fd) __THROW;
  569. #if defined __USE_BSD 
  570.     || (defined __USE_XOPEN_EXTENDED && !defined __USE_UNIX98)
  571. /* Return the index into the active-logins file (utmp) for
  572.    the controlling terminal.  */
  573. extern int ttyslot (void) __THROW;
  574. #endif
  575. /* Make a link to FROM named TO.  */
  576. extern int link (__const char *__from, __const char *__to)
  577.      __THROW __nonnull ((1, 2));
  578. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K
  579. /* Make a symbolic link to FROM named TO.  */
  580. extern int symlink (__const char *__from, __const char *__to)
  581.      __THROW __nonnull ((1, 2));
  582. /* Read the contents of the symbolic link PATH into no more than
  583.    LEN bytes of BUF.  The contents are not null-terminated.
  584.    Returns the number of characters read, or -1 for errors.  */
  585. extern int readlink (__const char *__restrict __path, char *__restrict __buf,
  586.      size_t __len) __THROW __nonnull ((1, 2));
  587. #endif /* Use BSD.  */
  588. /* Remove the link NAME.  */
  589. extern int unlink (__const char *__name) __THROW __nonnull ((1));
  590. /* Remove the directory PATH.  */
  591. extern int rmdir (__const char *__path) __THROW __nonnull ((1));
  592. /* Return the foreground process group ID of FD.  */
  593. extern __pid_t tcgetpgrp (int __fd) __THROW;
  594. /* Set the foreground process group ID of FD set PGRP_ID.  */
  595. extern int tcsetpgrp (int __fd, __pid_t __pgrp_id) __THROW;
  596. /* Return the login name of the user.
  597.    This function is a possible cancellation points and therefore not
  598.    marked with __THROW.  */
  599. extern char *getlogin (void);
  600. #if defined __USE_REENTRANT || defined __USE_UNIX98
  601. /* Return at most NAME_LEN characters of the login name of the user in NAME.
  602.    If it cannot be determined or some other error occurred, return the error
  603.    code.  Otherwise return 0.
  604.    This function is a possible cancellation points and therefore not
  605.    marked with __THROW.  */
  606. extern int getlogin_r (char *__name, size_t __name_len) __nonnull ((1));
  607. #endif
  608. #ifdef __USE_BSD
  609. /* Set the login name returned by `getlogin'.  */
  610. extern int setlogin (__const char *__name) __THROW __nonnull ((1));
  611. #endif
  612. #ifdef __USE_POSIX2
  613. /* Get definitions and prototypes for functions to process the
  614.    arguments in ARGV (ARGC of them, minus the program name) for
  615.    options given in OPTS.  */
  616. # define __need_getopt
  617. # include <getopt.h>
  618. #endif
  619. #if defined __USE_BSD || defined __USE_UNIX98
  620. /* Put the name of the current host in no more than LEN bytes of NAME.
  621.    The result is null-terminated if LEN is large enough for the full
  622.    name and the terminator.  */
  623. extern int gethostname (char *__name, size_t __len) __THROW __nonnull ((1));
  624. #endif
  625. #if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_UNIX98)
  626. /* Set the name of the current host to NAME, which is LEN bytes long.
  627.    This call is restricted to the super-user.  */
  628. extern int sethostname (__const char *__name, size_t __len)
  629.      __THROW __nonnull ((1));
  630. /* Set the current machine's Internet number to ID.
  631.    This call is restricted to the super-user.  */
  632. extern int sethostid (long int __id) __THROW;
  633. /* Get and set the NIS (aka YP) domain name, if any.
  634.    Called just like `gethostname' and `sethostname'.
  635.    The NIS domain name is usually the empty string when not using NIS.  */
  636. extern int getdomainname (char *__name, size_t __len)
  637.      __THROW __nonnull ((1));
  638. extern int setdomainname (__const char *__name, size_t __len)
  639.      __THROW __nonnull ((1));
  640. /* Revoke access permissions to all processes currently communicating
  641.    with the control terminal, and then send a SIGHUP signal to the process
  642.    group of the control terminal.  */
  643. extern int vhangup (void) __THROW;
  644. /* Revoke the access of all descriptors currently open on FILE.  */
  645. extern int revoke (__const char *__file) __THROW __nonnull ((1));
  646. /* Enable statistical profiling, writing samples of the PC into at most
  647.    SIZE bytes of SAMPLE_BUFFER; every processor clock tick while profiling
  648.    is enabled, the system examines the user PC and increments
  649.    SAMPLE_BUFFER[((PC - OFFSET) / 2) * SCALE / 65536].  If SCALE is zero,
  650.    disable profiling.  Returns zero on success, -1 on error.  */
  651. extern int profil (unsigned short int *__sample_buffer, size_t __size,
  652.    size_t __offset, unsigned int __scale)
  653.      __THROW __nonnull ((1));
  654. /* Turn accounting on if NAME is an existing file.  The system will then write
  655.    a record for each process as it terminates, to this file.  If NAME is NULL,
  656.    turn accounting off.  This call is restricted to the super-user.  */
  657. extern int acct (__const char *__name) __THROW __nonnull ((1));
  658. /* Successive calls return the shells listed in `/etc/shells'.  */
  659. extern char *getusershell (void) __THROW;
  660. extern void endusershell (void) __THROW; /* Discard cached info.  */
  661. extern void setusershell (void) __THROW; /* Rewind and re-read the file.  */
  662. /* Put the program in the background, and dissociate from the controlling
  663.    terminal.  If NOCHDIR is zero, do `chdir ("/")'.  If NOCLOSE is zero,
  664.    redirects stdin, stdout, and stderr to /dev/null.  */
  665. extern int daemon (int __nochdir, int __noclose) __THROW;
  666. #endif /* Use BSD || X/Open.  */
  667. #if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
  668. /* Make PATH be the root directory (the starting point for absolute paths).
  669.    This call is restricted to the super-user.  */
  670. extern int chroot (__const char *__path) __THROW __nonnull ((1));
  671. /* Prompt with PROMPT and read a string from the terminal without echoing.
  672.    Uses /dev/tty if possible; otherwise stderr and stdin.  */
  673. extern char *getpass (__const char *__prompt) __nonnull ((1));
  674. #endif /* Use BSD || X/Open.  */
  675. #if defined __USE_BSD || defined __USE_XOPEN
  676. /* Make all changes done to FD actually appear on disk.
  677.    This function is a cancellation point and therefore not marked with
  678.    __THROW.  */
  679. extern int fsync (int __fd);
  680. #endif /* Use BSD || X/Open.  */
  681. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  682. /* Return identifier for the current host.  */
  683. extern long int gethostid (void);
  684. /* Make all changes done to all files actually appear on disk.  */
  685. extern void sync (void) __THROW;
  686. /* Return the number of bytes in a page.  This is the system's page size,
  687.    which is not necessarily the same as the hardware page size.  */
  688. extern int getpagesize (void)  __THROW __attribute__ ((__const__));
  689. /* Return the maximum number of file descriptors
  690.    the current process could possibly have.  */
  691. extern int getdtablesize (void) __THROW;
  692. /* Truncate FILE to LENGTH bytes.  */
  693. # ifndef __USE_FILE_OFFSET64
  694. extern int truncate (__const char *__file, __off_t __length)
  695.      __THROW __nonnull ((1));
  696. # else
  697. #  ifdef __REDIRECT_NTH
  698. extern int __REDIRECT_NTH (truncate,
  699.    (__const char *__file, __off64_t __length),
  700.    truncate64) __nonnull ((1));
  701. #  else
  702. #   define truncate truncate64
  703. #  endif
  704. # endif
  705. # ifdef __USE_LARGEFILE64
  706. extern int truncate64 (__const char *__file, __off64_t __length)
  707.      __THROW __nonnull ((1));
  708. # endif
  709. #endif /* Use BSD || X/Open Unix.  */
  710. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K
  711. /* Truncate the file FD is open on to LENGTH bytes.  */
  712. # ifndef __USE_FILE_OFFSET64
  713. extern int ftruncate (int __fd, __off_t __length) __THROW;
  714. # else
  715. #  ifdef __REDIRECT_NTH
  716. extern int __REDIRECT_NTH (ftruncate, (int __fd, __off64_t __length),
  717.    ftruncate64);
  718. #  else
  719. #   define ftruncate ftruncate64
  720. #  endif
  721. # endif
  722. # ifdef __USE_LARGEFILE64
  723. extern int ftruncate64 (int __fd, __off64_t __length) __THROW;
  724. # endif
  725. #endif /* Use BSD || X/Open Unix || POSIX 2003.  */
  726. #if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
  727. /* Set the end of accessible data space (aka "the break") to ADDR.
  728.    Returns zero on success and -1 for errors (with errno set).  */
  729. extern int brk (void *__addr) __THROW;
  730. /* Increase or decrease the end of accessible data space by DELTA bytes.
  731.    If successful, returns the address the previous end of data space
  732.    (i.e. the beginning of the new space, if DELTA > 0);
  733.    returns (void *) -1 for errors (with errno set).  */
  734. extern void *sbrk (intptr_t __delta) __THROW;
  735. #endif
  736. #ifdef __USE_MISC
  737. /* Invoke `system call' number SYSNO, passing it the remaining arguments.
  738.    This is completely system-dependent, and not often useful.
  739.    In Unix, `syscall' sets `errno' for all errors and most calls return -1
  740.    for errors; in many systems you cannot pass arguments or get return
  741.    values for all system calls (`pipe', `fork', and `getppid' typically
  742.    among them).
  743.    In Mach, all system calls take normal arguments and always return an
  744.    error code (zero for success).  */
  745. extern long int syscall (long int __sysno, ...) __THROW;
  746. #endif /* Use misc.  */
  747. #if (defined __USE_MISC || defined __USE_XOPEN_EXTENDED) && !defined F_LOCK
  748. /* NOTE: These declarations also appear in <fcntl.h>; be sure to keep both
  749.    files consistent.  Some systems have them there and some here, and some
  750.    software depends on the macros being defined without including both.  */
  751. /* `lockf' is a simpler interface to the locking facilities of `fcntl'.
  752.    LEN is always relative to the current file position.
  753.    The CMD argument is one of the following.
  754.    This function is a cancellation point and therefore not marked with
  755.    __THROW.  */
  756. # define F_ULOCK 0 /* Unlock a previously locked region.  */
  757. # define F_LOCK  1 /* Lock a region for exclusive use.  */
  758. # define F_TLOCK 2 /* Test and lock a region for exclusive use.  */
  759. # define F_TEST  3 /* Test a region for other processes locks.  */
  760. # ifndef __USE_FILE_OFFSET64
  761. extern int lockf (int __fd, int __cmd, __off_t __len);
  762. # else
  763. #  ifdef __REDIRECT
  764. extern int __REDIRECT (lockf, (int __fd, int __cmd, __off64_t __len),
  765.        lockf64);
  766. #  else
  767. #   define lockf lockf64
  768. #  endif
  769. # endif
  770. # ifdef __USE_LARGEFILE64
  771. extern int lockf64 (int __fd, int __cmd, __off64_t __len);
  772. # endif
  773. #endif /* Use misc and F_LOCK not already defined.  */
  774. #ifdef __USE_GNU
  775. /* Evaluate EXPRESSION, and repeat as long as it returns -1 with `errno'
  776.    set to EINTR.  */
  777. # define TEMP_FAILURE_RETRY(expression) 
  778.   (__extension__       
  779.     ({ long int __result;       
  780.        do __result = (long int) (expression);       
  781.        while (__result == -1L && errno == EINTR);       
  782.        __result; }))
  783. #endif
  784. #if defined __USE_POSIX199309 || defined __USE_UNIX98
  785. /* Synchronize at least the data part of a file with the underlying
  786.    media.  */
  787. extern int fdatasync (int __fildes) __THROW;
  788. #endif /* Use POSIX199309 */
  789. /* XPG4.2 specifies that prototypes for the encryption functions must
  790.    be defined here.  */
  791. #ifdef __USE_XOPEN
  792. /* Encrypt at most 8 characters from KEY using salt to perturb DES.  */
  793. extern char *crypt (__const char *__key, __const char *__salt)
  794.      __THROW __nonnull ((1, 2));
  795. /* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
  796.    block in place.  */
  797. extern void encrypt (char *__block, int __edflag) __THROW __nonnull ((1));
  798. /* Swab pairs bytes in the first N bytes of the area pointed to by
  799.    FROM and copy the result to TO.  The value of TO must not be in the
  800.    range [FROM - N + 1, FROM - 1].  If N is odd the first byte in FROM
  801.    is without partner.  */
  802. extern void swab (__const void *__restrict __from, void *__restrict __to,
  803.   ssize_t __n) __THROW __nonnull ((1, 2));
  804. #endif
  805. /* The Single Unix specification demands this prototype to be here.
  806.    It is also found in <stdio.h>.  */
  807. #ifdef __USE_XOPEN
  808. /* Return the name of the controlling terminal.  */
  809. extern char *ctermid (char *__s) __THROW __nonnull ((1));
  810. #endif
  811. __END_DECLS
  812. #endif /* unistd.h  */