Declare __libc_fork.
[glibc.git] / include / unistd.h
blob017563c1ac10dd47eb4bdccb9aac2194485df6d4
1 #ifndef _UNISTD_H
2 # include <posix/unistd.h>
4 libc_hidden_proto (_exit)
5 libc_hidden_proto (alarm)
6 libc_hidden_proto (confstr)
7 libc_hidden_proto (execl)
8 libc_hidden_proto (execle)
9 libc_hidden_proto (execlp)
10 libc_hidden_proto (execvp)
11 libc_hidden_proto (getpid)
12 libc_hidden_proto (getsid)
13 libc_hidden_proto (getdomainname)
14 libc_hidden_proto (getlogin_r)
15 libc_hidden_proto (seteuid)
16 libc_hidden_proto (setegid)
17 libc_hidden_proto (tcgetpgrp)
19 /* Now define the internal interfaces. */
20 extern int __access (__const char *__name, int __type);
21 extern int __euidaccess (__const char *__name, int __type);
22 extern __off64_t __lseek64 (int __fd, __off64_t __offset, int __whence);
23 extern __off_t __lseek (int __fd, __off_t __offset, int __whence);
24 extern __off_t __libc_lseek (int __fd, __off_t __offset, int __whence);
25 extern __off64_t __libc_lseek64 (int __fd, __off64_t __offset, int __whence);
26 extern ssize_t __pread (int __fd, void *__buf, size_t __nbytes,
27 __off_t __offset);
28 extern ssize_t __libc_pread (int __fd, void *__buf, size_t __nbytes,
29 __off_t __offset);
30 extern ssize_t __pread64 (int __fd, void *__buf, size_t __nbytes,
31 __off64_t __offset);
32 extern ssize_t __libc_pread64 (int __fd, void *__buf, size_t __nbytes,
33 __off64_t __offset);
34 extern ssize_t __pwrite (int __fd, __const void *__buf, size_t __n,
35 __off_t __offset);
36 extern ssize_t __libc_pwrite (int __fd, __const void *__buf, size_t __n,
37 __off_t __offset);
38 extern ssize_t __pwrite64 (int __fd, __const void *__buf, size_t __n,
39 __off64_t __offset);
40 libc_hidden_proto (__pwrite64)
41 extern ssize_t __libc_pwrite64 (int __fd, __const void *__buf, size_t __n,
42 __off64_t __offset);
43 extern ssize_t __libc_read (int __fd, void *__buf, size_t __n);
44 libc_hidden_proto (__libc_read)
45 extern ssize_t __libc_write (int __fd, __const void *__buf, size_t __n);
46 libc_hidden_proto (__libc_write)
47 extern int __pipe (int __pipedes[2]);
48 libc_hidden_proto (__pipe)
49 extern unsigned int __sleep (unsigned int __seconds);
50 extern int __chown (__const char *__file,
51 __uid_t __owner, __gid_t __group);
52 libc_hidden_proto (__chown)
53 extern int __fchown (int __fd,
54 __uid_t __owner, __gid_t __group);
55 extern int __lchown (__const char *__file, __uid_t __owner,
56 __gid_t __group);
57 extern int __chdir (__const char *__path);
58 extern int __fchdir (int __fd);
59 extern char *__getcwd (char *__buf, size_t __size);
60 extern int __rmdir (const char *__path);
62 /* Get the canonical absolute name of the named directory, and put it in SIZE
63 bytes of BUF. Returns NULL if the directory couldn't be determined or
64 SIZE was too small. If successful, returns BUF. In GNU, if BUF is
65 NULL, an array is allocated with `malloc'; the array is SIZE bytes long,
66 unless SIZE <= 0, in which case it is as big as necessary. */
68 char *__canonicalize_directory_name_internal (__const char *__thisdir,
69 char *__buf,
70 size_t __size) attribute_hidden;
72 extern int __dup (int __fd);
73 extern int __dup2 (int __fd, int __fd2);
74 libc_hidden_proto (__dup2)
75 extern int __execve (__const char *__path, char *__const __argv[],
76 char *__const __envp[]);
77 extern long int __pathconf (__const char *__path, int __name);
78 extern long int __fpathconf (int __fd, int __name);
79 extern long int __sysconf (int __name);
80 libc_hidden_proto (__sysconf)
81 extern __pid_t __getpid (void);
82 libc_hidden_proto (__getpid)
83 extern __pid_t __getppid (void);
84 extern __pid_t __setsid (void);
85 extern __uid_t __getuid (void);
86 extern __uid_t __geteuid (void);
87 extern __gid_t __getgid (void);
88 extern __gid_t __getegid (void);
89 extern int __getgroups (int __size, __gid_t __list[]);
90 libc_hidden_proto (__getpgid)
91 extern int __group_member (__gid_t __gid);
92 extern int __setuid (__uid_t __uid);
93 extern int __setreuid (__uid_t __ruid, __uid_t __euid);
94 extern int __setgid (__gid_t __gid);
95 extern int __setpgid (__pid_t __pid, __pid_t __pgid);
96 libc_hidden_proto (__setpgid)
97 extern int __setregid (__gid_t __rgid, __gid_t __egid);
98 extern __pid_t __vfork (void);
99 extern int __ttyname_r (int __fd, char *__buf, size_t __buflen);
100 extern int __isatty (int __fd);
101 extern int __link (__const char *__from, __const char *__to);
102 extern int __symlink (__const char *__from, __const char *__to);
103 extern int __readlink (__const char *__path, char *__buf, size_t __len);
104 extern int __unlink (__const char *__name);
105 extern int __gethostname (char *__name, size_t __len);
106 extern int __profil (unsigned short int *__sample_buffer, size_t __size,
107 size_t __offset, unsigned int __scale);
108 extern int __getdtablesize (void);
109 extern int __brk (void *__addr);
110 extern int __close (int __fd);
111 libc_hidden_proto (__close)
112 extern ssize_t __read (int __fd, void *__buf, size_t __nbytes);
113 libc_hidden_proto (__read)
114 extern ssize_t __write (int __fd, __const void *__buf, size_t __n);
115 libc_hidden_proto (__write)
116 extern __pid_t __fork (void);
117 extern int __getpagesize (void) __attribute__ ((__const__));
118 libc_hidden_proto (__getpagesize)
119 extern int __ftruncate (int __fd, __off_t __length);
120 extern int __ftruncate64 (int __fd, __off64_t __length);
121 extern void *__sbrk (intptr_t __delta);
122 libc_hidden_proto (__sbrk)
125 /* This variable is set nonzero at startup if the process's effective
126 IDs differ from its real IDs, or it is otherwise indicated that
127 extra security should be used. When this is set the dynamic linker
128 and some functions contained in the C library ignore various
129 environment variables that normally affect them. */
130 extern int __libc_enable_secure;
131 #ifdef IS_IN_rtld
132 /* XXX The #ifdef should go. */
133 extern int __libc_enable_secure_internal attribute_hidden;
134 #endif
137 /* Various internal function. */
138 extern void __libc_check_standard_fds (void);
141 /* Special exit function which only terminates the current thread. */
142 extern void __exit_thread (int val) __attribute__ ((noreturn));
144 /* Internal name for fork function. */
145 extern __pid_t __libc_fork (void);
147 #endif