2009-03-04 04:28:35 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
2014-08-19 20:16:41 +02:00
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#ifndef _UNISTD_H_
|
|
|
|
#define _UNISTD_H_
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
|
2016-04-07 23:16:30 +02:00
|
|
|
#include <bits/fcntl.h>
|
2016-04-08 01:37:49 +02:00
|
|
|
#include <bits/getopt.h>
|
2016-04-07 23:19:03 +02:00
|
|
|
#include <bits/ioctl.h>
|
2016-01-26 03:06:24 +01:00
|
|
|
#include <bits/lockf.h>
|
|
|
|
#include <bits/posix_limits.h>
|
2016-08-12 19:16:34 +02:00
|
|
|
#include <bits/seek_constants.h>
|
2016-04-08 01:33:30 +02:00
|
|
|
#include <bits/sysconf.h>
|
2015-02-02 23:02:09 +01:00
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
#define STDIN_FILENO 0
|
|
|
|
#define STDOUT_FILENO 1
|
|
|
|
#define STDERR_FILENO 2
|
|
|
|
|
2015-02-02 23:02:09 +01:00
|
|
|
#define F_OK 0
|
|
|
|
#define X_OK 1
|
|
|
|
#define W_OK 2
|
|
|
|
#define R_OK 4
|
|
|
|
|
2014-09-22 23:49:07 +02:00
|
|
|
#define _PC_FILESIZEBITS 0
|
|
|
|
#define _PC_LINK_MAX 1
|
|
|
|
#define _PC_MAX_CANON 2
|
|
|
|
#define _PC_MAX_INPUT 3
|
|
|
|
#define _PC_NAME_MAX 4
|
|
|
|
#define _PC_PATH_MAX 5
|
|
|
|
#define _PC_PIPE_BUF 6
|
|
|
|
#define _PC_2_SYMLINKS 7
|
|
|
|
#define _PC_ALLOC_SIZE_MIN 8
|
|
|
|
#define _PC_REC_INCR_XFER_SIZE 9
|
|
|
|
#define _PC_REC_MAX_XFER_SIZE 10
|
|
|
|
#define _PC_REC_MIN_XFER_SIZE 11
|
|
|
|
#define _PC_REC_XFER_ALIGN 12
|
|
|
|
#define _PC_SYMLINK_MAX 13
|
|
|
|
#define _PC_CHOWN_RESTRICTED 14
|
|
|
|
#define _PC_NO_TRUNC 15
|
|
|
|
#define _PC_VDISABLE 16
|
|
|
|
#define _PC_ASYNC_IO 17
|
|
|
|
#define _PC_PRIO_IO 18
|
|
|
|
#define _PC_SYNC_IO 19
|
|
|
|
|
2014-04-23 02:41:00 +02:00
|
|
|
extern char** environ;
|
|
|
|
|
2016-07-23 03:57:12 +02:00
|
|
|
__noreturn void _exit(int __status);
|
|
|
|
|
|
|
|
pid_t fork(void);
|
|
|
|
pid_t vfork(void);
|
|
|
|
pid_t getpid(void);
|
2016-09-28 21:29:52 +02:00
|
|
|
pid_t gettid(void) __attribute_const__;
|
2016-07-23 03:57:12 +02:00
|
|
|
pid_t getpgid(pid_t __pid);
|
|
|
|
int setpgid(pid_t __pid, pid_t __pgid);
|
|
|
|
pid_t getppid(void);
|
|
|
|
pid_t getpgrp(void);
|
|
|
|
int setpgrp(void);
|
|
|
|
pid_t getsid(pid_t __pid) __INTRODUCED_IN(17);
|
|
|
|
pid_t setsid(void);
|
|
|
|
|
|
|
|
int execv(const char* __path, char* const* __argv);
|
|
|
|
int execvp(const char* __file, char* const* __argv);
|
|
|
|
int execvpe(const char* __file, char* const* __argv, char* const* __envp) __INTRODUCED_IN(21);
|
|
|
|
int execve(const char* __file, char* const* __argv, char* const* __envp);
|
2016-08-11 00:18:29 +02:00
|
|
|
int execl(const char* __path, const char* __arg0, ...) __attribute__((__sentinel__));
|
|
|
|
int execlp(const char* __file, const char* __arg0, ...) __attribute__((__sentinel__));
|
|
|
|
int execle(const char* __path, const char* __arg0, ... /*, char* const* __envp */)
|
|
|
|
__attribute__((__sentinel__(1)));
|
2018-01-30 17:54:12 +01:00
|
|
|
int fexecve(int __fd, char* const* __argv, char* const* __envp) __INTRODUCED_IN(28);
|
2016-07-23 03:57:12 +02:00
|
|
|
|
|
|
|
int nice(int __incr);
|
|
|
|
|
|
|
|
int setuid(uid_t __uid);
|
|
|
|
uid_t getuid(void);
|
|
|
|
int seteuid(uid_t __uid);
|
|
|
|
uid_t geteuid(void);
|
|
|
|
int setgid(gid_t __gid);
|
|
|
|
gid_t getgid(void);
|
|
|
|
int setegid(gid_t __gid);
|
|
|
|
gid_t getegid(void);
|
|
|
|
int getgroups(int __size, gid_t* __list);
|
|
|
|
int setgroups(size_t __size, const gid_t* __list);
|
|
|
|
int setreuid(uid_t __ruid, uid_t __euid);
|
|
|
|
int setregid(gid_t __rgid, gid_t __egid);
|
|
|
|
int setresuid(uid_t __ruid, uid_t __euid, uid_t __suid);
|
|
|
|
int setresgid(gid_t __rgid, gid_t __egid, gid_t __sgid);
|
|
|
|
int getresuid(uid_t* __ruid, uid_t* __euid, uid_t* __suid);
|
|
|
|
int getresgid(gid_t* __rgid, gid_t* __egid, gid_t* __sgid);
|
|
|
|
char* getlogin(void);
|
2018-01-30 17:54:12 +01:00
|
|
|
int getlogin_r(char* __buffer, size_t __buffer_size) __INTRODUCED_IN(28);
|
2016-07-23 03:57:12 +02:00
|
|
|
|
|
|
|
long fpathconf(int __fd, int __name);
|
|
|
|
long pathconf(const char* __path, int __name);
|
|
|
|
|
|
|
|
int access(const char* __path, int __mode);
|
|
|
|
int faccessat(int __dirfd, const char* __path, int __mode, int __flags) __INTRODUCED_IN(16);
|
2017-08-26 00:07:05 +02:00
|
|
|
int link(const char* __old_path, const char* __new_path);
|
|
|
|
int linkat(int __old_dir_fd, const char* __old_path, int __new_dir_fd, const char* __new_path, int __flags) __INTRODUCED_IN(21);
|
2016-07-23 03:57:12 +02:00
|
|
|
int unlink(const char* __path);
|
|
|
|
int unlinkat(int __dirfd, const char* __path, int __flags);
|
|
|
|
int chdir(const char* __path);
|
|
|
|
int fchdir(int __fd);
|
|
|
|
int rmdir(const char* __path);
|
2017-08-26 00:07:05 +02:00
|
|
|
int pipe(int __fds[2]);
|
2014-08-19 01:04:03 +02:00
|
|
|
#if defined(__USE_GNU)
|
2017-08-26 00:07:05 +02:00
|
|
|
int pipe2(int __fds[2], int __flags) __INTRODUCED_IN(9);
|
2010-09-27 17:33:08 +02:00
|
|
|
#endif
|
2016-07-23 03:57:12 +02:00
|
|
|
int chroot(const char* __path);
|
2017-08-26 00:07:05 +02:00
|
|
|
int symlink(const char* __old_path, const char* __new_path);
|
|
|
|
int symlinkat(const char* __old_path, int __new_dir_fd, const char* __new_path) __INTRODUCED_IN(21);
|
2018-02-06 21:51:31 +01:00
|
|
|
ssize_t readlink(const char* __path, char* __buf, size_t __buf_size);
|
2017-08-26 00:07:05 +02:00
|
|
|
ssize_t readlinkat(int __dir_fd, const char* __path, char* __buf, size_t __buf_size)
|
2018-02-06 21:51:31 +01:00
|
|
|
__INTRODUCED_IN(21);
|
2016-07-23 03:57:12 +02:00
|
|
|
int chown(const char* __path, uid_t __owner, gid_t __group);
|
|
|
|
int fchown(int __fd, uid_t __owner, gid_t __group);
|
2017-08-26 00:07:05 +02:00
|
|
|
int fchownat(int __dir_fd, const char* __path, uid_t __owner, gid_t __group, int __flags);
|
2016-07-23 03:57:12 +02:00
|
|
|
int lchown(const char* __path, uid_t __owner, gid_t __group);
|
2018-02-06 21:51:31 +01:00
|
|
|
char* getcwd(char* __buf, size_t __size);
|
2016-07-23 03:57:12 +02:00
|
|
|
|
2016-11-30 00:16:08 +01:00
|
|
|
void sync(void);
|
2017-08-25 01:31:49 +02:00
|
|
|
#if defined(__USE_GNU)
|
2018-01-30 17:54:12 +01:00
|
|
|
int syncfs(int __fd) __INTRODUCED_IN(28);
|
2017-08-25 01:31:49 +02:00
|
|
|
#endif
|
2016-07-23 03:57:12 +02:00
|
|
|
|
|
|
|
int close(int __fd);
|
|
|
|
|
2018-02-06 21:51:31 +01:00
|
|
|
ssize_t read(int __fd, void* __buf, size_t __count);
|
|
|
|
ssize_t write(int __fd, const void* __buf, size_t __count);
|
2016-07-23 03:57:12 +02:00
|
|
|
|
2017-08-26 00:07:05 +02:00
|
|
|
int dup(int __old_fd);
|
|
|
|
int dup2(int __old_fd, int __new_fd);
|
|
|
|
int dup3(int __old_fd, int __new_fd, int __flags) __INTRODUCED_IN(21);
|
2016-07-23 03:57:12 +02:00
|
|
|
int fsync(int __fd);
|
|
|
|
int fdatasync(int __fd) __INTRODUCED_IN(9);
|
2015-02-07 07:28:49 +01:00
|
|
|
|
2017-11-28 23:47:17 +01:00
|
|
|
/* See https://android.googlesource.com/platform/bionic/+/master/docs/32-bit-abi.md */
|
2017-07-06 00:23:50 +02:00
|
|
|
#if defined(__USE_FILE_OFFSET64)
|
2016-07-23 03:57:12 +02:00
|
|
|
int truncate(const char* __path, off_t __length) __RENAME(truncate64) __INTRODUCED_IN(21);
|
2017-11-28 23:47:17 +01:00
|
|
|
off_t lseek(int __fd, off_t __offset, int __whence) __RENAME(lseek64);
|
2017-02-09 09:00:31 +01:00
|
|
|
ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset)
|
2018-02-06 21:51:31 +01:00
|
|
|
__RENAME(pread64) __INTRODUCED_IN(12);
|
2016-07-23 03:57:12 +02:00
|
|
|
ssize_t pwrite(int __fd, const void* __buf, size_t __count, off_t __offset)
|
2018-02-06 21:51:31 +01:00
|
|
|
__RENAME(pwrite64) __INTRODUCED_IN(12);
|
2016-07-23 03:57:12 +02:00
|
|
|
int ftruncate(int __fd, off_t __length) __RENAME(ftruncate64) __INTRODUCED_IN(12);
|
2015-09-04 21:59:53 +02:00
|
|
|
#else
|
2016-07-23 03:57:12 +02:00
|
|
|
int truncate(const char* __path, off_t __length);
|
2017-11-28 23:47:17 +01:00
|
|
|
off_t lseek(int __fd, off_t __offset, int __whence);
|
2018-02-06 21:51:31 +01:00
|
|
|
ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset);
|
|
|
|
ssize_t pwrite(int __fd, const void* __buf, size_t __count, off_t __offset);
|
2016-07-23 03:57:12 +02:00
|
|
|
int ftruncate(int __fd, off_t __length);
|
2015-09-04 21:59:53 +02:00
|
|
|
#endif
|
|
|
|
|
2016-07-23 03:57:12 +02:00
|
|
|
int truncate64(const char* __path, off64_t __length) __INTRODUCED_IN(21);
|
2017-11-28 23:47:17 +01:00
|
|
|
off64_t lseek64(int __fd, off64_t __offset, int __whence);
|
2018-02-06 21:51:31 +01:00
|
|
|
ssize_t pread64(int __fd, void* __buf, size_t __count, off64_t __offset) __INTRODUCED_IN(12);
|
|
|
|
ssize_t pwrite64(int __fd, const void* __buf, size_t __count, off64_t __offset) __INTRODUCED_IN(12);
|
2016-07-23 03:57:12 +02:00
|
|
|
int ftruncate64(int __fd, off64_t __length) __INTRODUCED_IN(12);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2016-07-23 03:57:12 +02:00
|
|
|
int pause(void);
|
|
|
|
unsigned int alarm(unsigned int __seconds);
|
|
|
|
unsigned int sleep(unsigned int __seconds);
|
2017-08-26 00:07:05 +02:00
|
|
|
int usleep(useconds_t __microseconds);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2017-08-26 00:07:05 +02:00
|
|
|
int gethostname(char* __buf, size_t __buf_size);
|
|
|
|
int sethostname(const char* __name, size_t __n) __INTRODUCED_IN(23);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2016-07-23 03:57:12 +02:00
|
|
|
int brk(void* __addr);
|
|
|
|
void* sbrk(ptrdiff_t __increment);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2016-07-23 03:57:12 +02:00
|
|
|
int isatty(int __fd);
|
|
|
|
char* ttyname(int __fd);
|
2017-08-26 00:07:05 +02:00
|
|
|
int ttyname_r(int __fd, char* __buf, size_t __buf_size) __INTRODUCED_IN(8);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2017-08-26 00:07:05 +02:00
|
|
|
int acct(const char* __path);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2016-11-16 20:35:43 +01:00
|
|
|
#if __ANDROID_API__ >= __ANDROID_API_L__
|
2016-07-27 01:34:40 +02:00
|
|
|
int getpagesize(void) __INTRODUCED_IN(21);
|
2015-09-04 21:59:53 +02:00
|
|
|
#else
|
2016-09-15 02:10:26 +02:00
|
|
|
static __inline__ int getpagesize(void) {
|
2015-09-04 21:59:53 +02:00
|
|
|
return sysconf(_SC_PAGESIZE);
|
|
|
|
}
|
|
|
|
#endif
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2015-09-04 21:59:53 +02:00
|
|
|
long syscall(long __number, ...);
|
2015-02-20 07:49:44 +01:00
|
|
|
|
2017-08-26 00:07:05 +02:00
|
|
|
int daemon(int __no_chdir, int __no_close);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2014-02-11 03:37:02 +01:00
|
|
|
#if defined(__arm__) || (defined(__mips__) && !defined(__LP64__))
|
2016-07-23 03:57:12 +02:00
|
|
|
int cacheflush(long __addr, long __nbytes, long __cache);
|
2014-02-11 03:37:02 +01:00
|
|
|
/* __attribute__((deprecated("use __builtin___clear_cache instead"))); */
|
|
|
|
#endif
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2016-07-23 03:57:12 +02:00
|
|
|
pid_t tcgetpgrp(int __fd);
|
|
|
|
int tcsetpgrp(int __fd, pid_t __pid);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2009-10-05 22:19:05 +02:00
|
|
|
/* Used to retry syscalls that can return EINTR. */
|
|
|
|
#define TEMP_FAILURE_RETRY(exp) ({ \
|
2014-05-22 05:33:28 +02:00
|
|
|
__typeof__(exp) _rc; \
|
2009-10-05 22:19:05 +02:00
|
|
|
do { \
|
|
|
|
_rc = (exp); \
|
|
|
|
} while (_rc == -1 && errno == EINTR); \
|
|
|
|
_rc; })
|
|
|
|
|
2017-08-26 00:07:05 +02:00
|
|
|
int getdomainname(char* __buf, size_t __buf_size) __INTRODUCED_IN(26);
|
|
|
|
int setdomainname(const char* __name, size_t __n) __INTRODUCED_IN(26);
|
2016-03-03 17:37:53 +01:00
|
|
|
|
2018-01-30 17:54:12 +01:00
|
|
|
void swab(const void* __src, void* __dst, ssize_t __byte_count) __INTRODUCED_IN(28);
|
2017-10-18 22:34:32 +02:00
|
|
|
|
2017-07-25 00:05:05 +02:00
|
|
|
#if defined(__BIONIC_INCLUDE_FORTIFY_HEADERS)
|
|
|
|
#include <bits/fortify/unistd.h>
|
2017-02-09 09:00:31 +01:00
|
|
|
#endif
|
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
__END_DECLS
|
|
|
|
|
2018-01-30 17:54:12 +01:00
|
|
|
#endif
|