[BACK]Return to unistd.h CVS log [TXT][DIR] Up to [local] / src / include

Annotation of src/include/unistd.h, Revision 1.66

1.66    ! fgsch       1: /*     $OpenBSD: unistd.h,v 1.65 2011/07/18 17:29:49 matthew Exp $ */
1.6       deraadt     2: /*     $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $      */
1.1       deraadt     3:
                      4: /*-
                      5:  * Copyright (c) 1991 The Regents of the University of California.
                      6:  * All rights reserved.
                      7:  *
                      8:  * Redistribution and use in source and binary forms, with or without
                      9:  * modification, are permitted provided that the following conditions
                     10:  * are met:
                     11:  * 1. Redistributions of source code must retain the above copyright
                     12:  *    notice, this list of conditions and the following disclaimer.
                     13:  * 2. Redistributions in binary form must reproduce the above copyright
                     14:  *    notice, this list of conditions and the following disclaimer in the
                     15:  *    documentation and/or other materials provided with the distribution.
1.47      millert    16:  * 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    17:  *    may be used to endorse or promote products derived from this software
                     18:  *    without specific prior written permission.
                     19:  *
                     20:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     21:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     22:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     23:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     24:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     25:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     26:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     27:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     28:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     29:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     30:  * SUCH DAMAGE.
                     31:  *
                     32:  *     @(#)unistd.h    5.13 (Berkeley) 6/17/91
                     33:  */
                     34:
                     35: #ifndef _UNISTD_H_
                     36: #define        _UNISTD_H_
                     37:
                     38: #include <sys/cdefs.h>
                     39: #include <sys/types.h>
                     40: #include <sys/unistd.h>
                     41:
                     42: #define        STDIN_FILENO    0       /* standard input file descriptor */
                     43: #define        STDOUT_FILENO   1       /* standard output file descriptor */
                     44: #define        STDERR_FILENO   2       /* standard error file descriptor */
                     45:
1.57      millert    46: #if __XPG_VISIBLE || __POSIX_VISIBLE >= 200112
                     47: #define F_ULOCK         0      /* unlock locked section */
                     48: #define F_LOCK          1      /* lock a section for exclusive use */
                     49: #define F_TLOCK         2      /* test and lock a section for exclusive use */
                     50: #define F_TEST          3      /* test a section for locks by other procs */
1.62      millert    51: #endif
                     52:
                     53: #if __POSIX_VISIBLE
                     54: #define _POSIX_REENTRANT_FUNCTIONS     1
                     55: #define _POSIX_THREAD_SAFE_FUNCTIONS   200112L
1.57      millert    56: #endif
                     57:
1.1       deraadt    58: #ifndef NULL
1.26      espie      59: #ifdef         __GNUG__
1.27      espie      60: #define        NULL    __null
1.64      jsg        61: #elif defined(__cplusplus)
                     62: #define        NULL    0L
1.26      espie      63: #else
1.63      miod       64: #define        NULL    ((void *)0)
1.26      espie      65: #endif
1.1       deraadt    66: #endif
                     67:
                     68: __BEGIN_DECLS
1.36      millert    69: __dead void     _exit(int);
                     70: int     access(const char *, int);
                     71: unsigned int alarm(unsigned int);
                     72: int     chdir(const char *);
                     73: int     chown(const char *, uid_t, gid_t);
                     74: int     close(int);
                     75: int     dup(int);
                     76: int     dup2(int, int);
1.40      espie      77: int     execl(const char *, const char *, ...)
                     78:            __attribute__((sentinel));
1.59      espie      79: int     execle(const char *, const char *, ...);
1.40      espie      80: int     execlp(const char *, const char *, ...)
                     81:            __attribute__((sentinel));
1.36      millert    82: int     execv(const char *, char * const *);
                     83: int     execve(const char *, char * const *, char * const *);
                     84: int     execvp(const char *, char * const *);
                     85: pid_t   fork(void);
                     86: long    fpathconf(int, int);
1.50      avsm       87: char   *getcwd(char *, size_t)
1.66    ! fgsch      88:                __attribute__((__bounded__(__string__,1,2)));
1.36      millert    89: gid_t   getegid(void);
                     90: uid_t   geteuid(void);
                     91: gid_t   getgid(void);
                     92: int     getgroups(int, gid_t *);
                     93: char   *getlogin(void);
                     94: pid_t   getpgrp(void);
                     95: pid_t   getpid(void);
                     96: pid_t   getppid(void);
                     97: uid_t   getuid(void);
                     98: int     isatty(int);
                     99: int     link(const char *, const char *);
                    100: off_t   lseek(int, off_t, int);
                    101: long    pathconf(const char *, int);
                    102: int     pause(void);
                    103: int     pipe(int *);
1.50      avsm      104: ssize_t         read(int, void *, size_t)
                    105:                __attribute__((__bounded__(__buffer__,2,3)));
1.36      millert   106: int     rmdir(const char *);
                    107: int     setgid(gid_t);
                    108: int     setuid(uid_t);
                    109: unsigned int sleep(unsigned int);
                    110: long    sysconf(int);
                    111: pid_t   tcgetpgrp(int);
                    112: int     tcsetpgrp(int, pid_t);
                    113: char   *ttyname(int);
                    114: int     unlink(const char *);
1.50      avsm      115: ssize_t         write(int, const void *, size_t)
                    116:                __attribute__((__bounded__(__buffer__,2,3)));
1.1       deraadt   117:
1.57      millert   118: #if __POSIX_VISIBLE || __XPG_VISIBLE >= 300
                    119: pid_t   setsid(void);
                    120: int     setpgid(pid_t, pid_t);
                    121: #endif
1.1       deraadt   122:
1.57      millert   123: #if __POSIX_VISIBLE >= 199209 || __XPG_VISIBLE
                    124: size_t  confstr(int, char *, size_t)
                    125:                __attribute__((__bounded__(__string__,2,3)));
                    126: #ifndef _GETOPT_DEFINED_
                    127: #define _GETOPT_DEFINED_
                    128: int     getopt(int, char * const *, const char *);
                    129: extern  char *optarg;                  /* getopt(3) external variables */
                    130: extern  int opterr, optind, optopt, optreset;
                    131: /* XXX - getsubopt does not belong here */
                    132: int     getsubopt(char **, char * const *, char **);
                    133: extern  char *suboptarg;               /* getsubopt(3) external variable */
                    134: #endif /* _GETOPT_DEFINED_ */
                    135: #endif
                    136:
                    137: #if __POSIX_VISIBLE >= 199506 || __XPG_VISIBLE
                    138: int     fsync(int);
                    139: int     ftruncate(int, off_t);
                    140: int     getlogin_r(char *, size_t)
1.66    ! fgsch     141:                __attribute__((__bounded__(__string__,1,2)));
1.57      millert   142: #endif
1.1       deraadt   143:
1.57      millert   144: #if __XPG_VISIBLE || __BSD_VISIBLE
                    145: char   *crypt(const char *, const char *);
                    146: int     encrypt(char *, int);
                    147: int     fchdir(int);
                    148: int     fchown(int, uid_t, gid_t);
                    149: long    gethostid(void);
                    150: char   *getwd(char *)
                    151:                __attribute__ ((__bounded__(__minbytes__,1,1024)));
                    152: int     lchown(const char *, uid_t, gid_t);
                    153: int     mkstemp(char *);
                    154: char   *mktemp(char *);
                    155: int     nice(int);
                    156: int     readlink(const char *, char *, size_t)
                    157:                __attribute__ ((__bounded__(__string__,2,3)));
                    158: int     setkey(const char *);
                    159: int     setpgrp(pid_t pid, pid_t pgrp);        /* obsoleted by setpgid() */
                    160: int     setregid(gid_t, gid_t);
                    161: int     setreuid(uid_t, uid_t);
                    162: void    swab(const void *, void *, size_t);
                    163: void    sync(void);
                    164: int     truncate(const char *, off_t);
                    165: unsigned int    ualarm(unsigned int, unsigned int);
                    166: int     usleep(useconds_t);
                    167: pid_t   vfork(void);
                    168: #endif
                    169:
                    170: #if __XPG_VISIBLE >= 420
                    171: pid_t   getpgid(pid_t);
                    172: pid_t   getsid(pid_t);
                    173: #endif
                    174:
                    175: #if __XPG_VISIBLE >= 500
1.36      millert   176: ssize_t  pread(int, void *, size_t, off_t);
                    177: ssize_t  pwrite(int, const void *, size_t, off_t);
1.57      millert   178: int     ttyname_r(int, char *, size_t)
                    179:            __attribute__((__bounded__(__string__,2,3)));
1.31      deraadt   180: #endif
                    181:
1.57      millert   182: #if __BSD_VISIBLE ||  __XPG_VISIBLE <= 500
                    183: /* Interfaces withdrawn by X/Open Issue 5 Version 0 */
1.60      kurt      184: int     brk(void *);
1.57      millert   185: int     chroot(const char *);
                    186: int     getdtablesize(void);
                    187: int     getpagesize(void);
                    188: char   *getpass(const char *);
                    189: void   *sbrk(int);
                    190: #endif
                    191:
                    192: #if __POSIX_VISIBLE >= 200112 || __XPG_VISIBLE >= 420
                    193: int     lockf(int, int, off_t);
                    194: #endif
                    195:
                    196: #if __POSIX_VISIBLE >= 200112 || __XPG_VISIBLE >= 420 || __BSD_VISIBLE
                    197: int     symlink(const char *, const char *);
                    198: int     gethostname(char *, size_t)
                    199:                __attribute__ ((__bounded__(__string__,1,2)));
                    200: int     setegid(gid_t);
                    201: int     seteuid(uid_t);
1.65      matthew   202: #endif
                    203:
                    204: #if __POSIX_VISIBLE >= 200809
                    205: int    faccessat(int, const char *, int, int);
                    206: int    fchownat(int, const char *, uid_t, gid_t, int);
                    207: int    linkat(int, const char *, int, const char *, int);
                    208: ssize_t        readlinkat(int, const char *, char *, size_t);
                    209: int    symlinkat(const char *, int, const char *);
                    210: int    unlinkat(int, const char *, int);
1.57      millert   211: #endif
                    212:
                    213: #if __BSD_VISIBLE
1.36      millert   214: int     acct(const char *);
1.52      millert   215: int     closefrom(int);
1.51      deraadt   216: int     des_cipher(const char *, char *, int32_t, int);
1.58      espie     217: int     des_setkey(const char *);
1.36      millert   218: void    endusershell(void);
                    219: int     exect(const char *, char * const *, char * const *);
                    220: char   *fflagstostr(u_int32_t);
1.50      avsm      221: int     getdomainname(char *, size_t)
                    222:                __attribute__ ((__bounded__(__string__,1,2)));
1.36      millert   223: int     getgrouplist(const char *, gid_t, gid_t *, int *);
                    224: mode_t  getmode(const void *, mode_t);
1.44      millert   225: int     getresgid(gid_t *, gid_t *, gid_t *);
                    226: int     getresuid(uid_t *, uid_t *, uid_t *);
1.36      millert   227: char   *getusershell(void);
                    228: int     initgroups(const char *, gid_t);
                    229: int     iruserok(u_int32_t, int, const char *, const char *);
                    230: int     iruserok_sa(const void *, int, int, const char *, const char *);
1.57      millert   231: int     issetugid(void);
                    232: char   *mkdtemp(char *);
                    233: int     mkstemps(char *, int);
1.36      millert   234: int     nfssvc(int, void *);
1.50      avsm      235: int     profil(char *, size_t, unsigned long, unsigned int)
                    236:                __attribute__ ((__bounded__(__string__,1,2)));
1.57      millert   237: int     quotactl(const char *, int, int, char *);
1.37      millert   238: int     rcmd(char **, int, const char *,
                    239:            const char *, const char *, int *);
                    240: int     rcmd_af(char **, int, const char *,
                    241:            const char *, const char *, int *, int);
                    242: int     rcmdsh(char **, int, const char *,
                    243:            const char *, const char *, char *);
1.36      millert   244: char   *re_comp(const char *);
                    245: int     re_exec(const char *);
                    246: int     reboot(int);
                    247: int     revoke(const char *);
                    248: int     rfork(int opts);
                    249: int     rresvport(int *);
                    250: int     rresvport_af(int *, int);
                    251: int     ruserok(const char *, int, const char *, const char *);
1.57      millert   252: #ifndef _SELECT_DEFINED_
                    253: #define _SELECT_DECLARED
                    254: struct timeval;
1.36      millert   255: int     select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
1.19      deraadt   256: #endif
1.36      millert   257: int     setdomainname(const char *, size_t);
                    258: int     setgroups(int, const gid_t *);
                    259: int     sethostid(long);
                    260: int     sethostname(const char *, size_t);
                    261: int     setlogin(const char *);
                    262: void   *setmode(const char *);
1.44      millert   263: int     setresgid(gid_t, gid_t, gid_t);
                    264: int     setresuid(uid_t, uid_t, uid_t);
1.36      millert   265: int     setrgid(gid_t);
                    266: int     setruid(uid_t);
                    267: void    setusershell(void);
                    268: int     strtofflags(char **, u_int32_t *, u_int32_t *);
                    269: int     swapctl(int cmd, const void *arg, int misc);
                    270: int     syscall(int, ...);
1.57      millert   271: #endif /* __BSD_VISIBLE */
1.1       deraadt   272: __END_DECLS
                    273:
                    274: #endif /* !_UNISTD_H_ */