Remove unnecessary code from x86-32 SSSE3 strncmp
[platform/upstream/glibc.git] / include / unistd.h
1 #ifndef _UNISTD_H
2 # include <posix/unistd.h>
3
4 __BEGIN_DECLS
5
6 libc_hidden_proto (_exit, __noreturn__)
7 libc_hidden_proto (alarm)
8 libc_hidden_proto (confstr)
9 libc_hidden_proto (execl)
10 libc_hidden_proto (execle)
11 libc_hidden_proto (execlp)
12 libc_hidden_proto (execvp)
13 libc_hidden_proto (getpid)
14 libc_hidden_proto (getsid)
15 libc_hidden_proto (getdomainname)
16 libc_hidden_proto (getlogin_r)
17 libc_hidden_proto (seteuid)
18 libc_hidden_proto (setegid)
19 libc_hidden_proto (tcgetpgrp)
20 libc_hidden_proto (readlinkat)
21
22 /* Now define the internal interfaces.  */
23 extern int __access (__const char *__name, int __type);
24 extern int __euidaccess (__const char *__name, int __type);
25 extern __off64_t __lseek64 (int __fd, __off64_t __offset, int __whence);
26 extern __off_t __lseek (int __fd, __off_t __offset, int __whence);
27 libc_hidden_proto (__lseek)
28 extern __off_t __libc_lseek (int __fd, __off_t __offset, int __whence);
29 extern __off64_t __libc_lseek64 (int __fd, __off64_t __offset, int __whence);
30 extern ssize_t __pread (int __fd, void *__buf, size_t __nbytes,
31                         __off_t __offset);
32 extern ssize_t __libc_pread (int __fd, void *__buf, size_t __nbytes,
33                              __off_t __offset);
34 extern ssize_t __pread64 (int __fd, void *__buf, size_t __nbytes,
35                           __off64_t __offset);
36 extern ssize_t __libc_pread64 (int __fd, void *__buf, size_t __nbytes,
37                                __off64_t __offset);
38 extern ssize_t __pwrite (int __fd, __const void *__buf, size_t __n,
39                          __off_t __offset);
40 extern ssize_t __libc_pwrite (int __fd, __const void *__buf, size_t __n,
41                               __off_t __offset);
42 extern ssize_t __pwrite64 (int __fd, __const void *__buf, size_t __n,
43                            __off64_t __offset);
44 libc_hidden_proto (__pwrite64)
45 extern ssize_t __libc_pwrite64 (int __fd, __const void *__buf, size_t __n,
46                                 __off64_t __offset);
47 extern ssize_t __libc_read (int __fd, void *__buf, size_t __n);
48 libc_hidden_proto (__libc_read)
49 extern ssize_t __libc_write (int __fd, __const void *__buf, size_t __n);
50 libc_hidden_proto (__libc_write)
51 extern int __pipe (int __pipedes[2]);
52 libc_hidden_proto (__pipe)
53 extern int __pipe2 (int __pipedes[2], int __flags);
54 extern unsigned int __sleep (unsigned int __seconds);
55 extern int __chown (__const char *__file,
56                     __uid_t __owner, __gid_t __group);
57 libc_hidden_proto (__chown)
58 extern int __fchown (int __fd,
59                      __uid_t __owner, __gid_t __group);
60 extern int __lchown (__const char *__file, __uid_t __owner,
61                      __gid_t __group);
62 extern int __chdir (__const char *__path);
63 extern int __fchdir (int __fd);
64 extern char *__getcwd (char *__buf, size_t __size);
65 extern int __rmdir (const char *__path);
66 extern int __execvpe (const char *file, char *const argv[],
67                       char *const envp[]);
68
69 /* Get the canonical absolute name of the named directory, and put it in SIZE
70    bytes of BUF.  Returns NULL if the directory couldn't be determined or
71    SIZE was too small.  If successful, returns BUF.  In GNU, if BUF is
72    NULL, an array is allocated with `malloc'; the array is SIZE bytes long,
73    unless SIZE <= 0, in which case it is as big as necessary.  */
74
75 char *__canonicalize_directory_name_internal (__const char *__thisdir,
76                                               char *__buf,
77                                               size_t __size) attribute_hidden;
78
79 extern int __dup (int __fd);
80 extern int __dup2 (int __fd, int __fd2);
81 libc_hidden_proto (__dup2)
82 libc_hidden_proto (dup3)
83 extern int __execve (__const char *__path, char *__const __argv[],
84                      char *__const __envp[]);
85 extern long int __pathconf (__const char *__path, int __name);
86 extern long int __fpathconf (int __fd, int __name);
87 extern long int __sysconf (int __name);
88 libc_hidden_proto (__sysconf)
89 extern __pid_t __getpid (void);
90 libc_hidden_proto (__getpid)
91 extern __pid_t __getppid (void);
92 extern __pid_t __setsid (void);
93 extern __uid_t __getuid (void);
94 extern __uid_t __geteuid (void);
95 extern __gid_t __getgid (void);
96 extern __gid_t __getegid (void);
97 extern int __getgroups (int __size, __gid_t __list[]);
98 libc_hidden_proto (__getpgid)
99 extern int __group_member (__gid_t __gid);
100 extern int __setuid (__uid_t __uid);
101 extern int __setreuid (__uid_t __ruid, __uid_t __euid);
102 extern int __setgid (__gid_t __gid);
103 extern int __setpgid (__pid_t __pid, __pid_t __pgid);
104 libc_hidden_proto (__setpgid)
105 extern int __setregid (__gid_t __rgid, __gid_t __egid);
106 extern int __getresuid (__uid_t *__ruid, __uid_t *__euid, __uid_t *__suid);
107 extern int __getresgid (__gid_t *__rgid, __gid_t *__egid, __gid_t *__sgid);
108 extern int __setresuid (__uid_t __ruid, __uid_t __euid, __uid_t __suid);
109 extern int __setresgid (__gid_t __rgid, __gid_t __egid, __gid_t __sgid);
110 libc_hidden_proto (__getresuid)
111 libc_hidden_proto (__getresgid)
112 libc_hidden_proto (__setresuid)
113 libc_hidden_proto (__setresgid)
114 extern __pid_t __vfork (void);
115 libc_hidden_proto (__vfork)
116 extern int __ttyname_r (int __fd, char *__buf, size_t __buflen);
117 extern int __isatty (int __fd);
118 extern int __link (__const char *__from, __const char *__to);
119 extern int __symlink (__const char *__from, __const char *__to);
120 extern int __readlink (__const char *__path, char *__buf, size_t __len);
121 extern int __unlink (__const char *__name);
122 extern int __gethostname (char *__name, size_t __len);
123 extern int __profil (unsigned short int *__sample_buffer, size_t __size,
124                      size_t __offset, unsigned int __scale);
125 extern int __getdtablesize (void);
126 extern int __brk (void *__addr);
127 extern int __close (int __fd);
128 libc_hidden_proto (__close)
129 extern int __libc_close (int __fd);
130 extern ssize_t __read (int __fd, void *__buf, size_t __nbytes);
131 libc_hidden_proto (__read)
132 extern ssize_t __write (int __fd, __const void *__buf, size_t __n);
133 libc_hidden_proto (__write)
134 extern __pid_t __fork (void);
135 libc_hidden_proto (__fork)
136 extern int __getpagesize (void) __attribute__ ((__const__));
137 libc_hidden_proto (__getpagesize)
138 extern int __ftruncate (int __fd, __off_t __length);
139 extern int __ftruncate64 (int __fd, __off64_t __length);
140 extern int __truncate (const char *path, __off_t __length);
141 extern void *__sbrk (intptr_t __delta);
142 libc_hidden_proto (__sbrk)
143
144
145 /* This variable is set nonzero at startup if the process's effective
146    IDs differ from its real IDs, or it is otherwise indicated that
147    extra security should be used.  When this is set the dynamic linker
148    and some functions contained in the C library ignore various
149    environment variables that normally affect them.  */
150 extern int __libc_enable_secure attribute_relro;
151 extern int __libc_enable_secure_decided;
152 #ifdef IS_IN_rtld
153 /* XXX The #ifdef should go.  */
154 extern int __libc_enable_secure_internal attribute_relro attribute_hidden;
155 #endif
156
157
158 /* Various internal function.  */
159 extern void __libc_check_standard_fds (void);
160
161
162 /* Special exit function which only terminates the current thread.  */
163 extern void __exit_thread (int val) __attribute__ ((noreturn));
164
165 /* Internal name for fork function.  */
166 extern __pid_t __libc_fork (void);
167
168 /* Suspend the process until a signal arrives.
169    This always returns -1 and sets `errno' to EINTR.  */
170 extern int __libc_pause (void);
171 /* Not cancelable variant.  */
172 extern int __pause_nocancel (void) attribute_hidden;
173
174 extern int __have_sock_cloexec;
175 /* At lot of other functionality became available at the same time as
176    SOCK_CLOEXEC.  Avoid defining separate variables for all of them
177    unless it is really necessary.  */
178 #define __have_pipe2 __have_sock_cloexec
179 #define __have_dup3 __have_sock_cloexec
180
181 extern int __getlogin_r_loginuid (char *name, size_t namesize)
182      attribute_hidden;
183
184 __END_DECLS
185
186 #endif