2012-03-24 10:23:07 -04:00
|
|
|
/*******************************************************************************
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-04-15 18:08:33 -04:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2013.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of the Sortix C Library.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
The Sortix C Library is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
The Sortix C Library is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
unistd.h
|
|
|
|
The <unistd.h> header defines miscellaneous symbolic constants and types,
|
|
|
|
and declares miscellaneous functions.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2012-03-24 10:23:07 -04:00
|
|
|
*******************************************************************************/
|
2011-08-05 08:25:00 -04:00
|
|
|
|
|
|
|
/* TODO: POSIX-1.2008 compliance is only partial */
|
|
|
|
|
2013-04-21 16:46:44 -04:00
|
|
|
#ifndef _UNISTD_H
|
|
|
|
#define _UNISTD_H 1
|
2011-08-05 08:25:00 -04:00
|
|
|
|
|
|
|
#include <features.h>
|
2013-01-15 19:45:51 -05:00
|
|
|
#include <__/stdint.h>
|
2012-04-05 17:00:47 -04:00
|
|
|
#if defined(_SORTIX_SOURCE)
|
2012-04-29 08:37:11 -04:00
|
|
|
#include <stdarg.h>
|
2013-01-15 19:45:51 -05:00
|
|
|
#include <stdint.h>
|
2012-04-05 17:00:47 -04:00
|
|
|
#include <sortix/fork.h>
|
2013-05-11 19:24:42 -04:00
|
|
|
__BEGIN_DECLS
|
|
|
|
@include(time_t.h)
|
|
|
|
__END_DECLS
|
|
|
|
#include <sortix/timespec.h>
|
2012-04-05 17:00:47 -04:00
|
|
|
#endif
|
2012-02-24 11:34:50 -05:00
|
|
|
#include <sortix/seek.h>
|
2012-03-05 09:46:23 -05:00
|
|
|
#include <sortix/unistd.h>
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2012-03-04 17:36:04 -05:00
|
|
|
#define _SORTIX_ALWAYS_SBRK
|
|
|
|
|
2011-08-05 08:25:00 -04:00
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
/* Currently just say we support the newest POSIX. */
|
|
|
|
/* TODO: Support the newest POSIX. */
|
|
|
|
#define _POSIX_VERSION 200809L
|
|
|
|
#define _POSIX2_VERSION 200809L
|
|
|
|
|
|
|
|
/* Currently just say we support the newest X/Open */
|
|
|
|
/* TODO: Support the newest X/Open */
|
|
|
|
#define _XOPEN_VERSION 700
|
|
|
|
|
|
|
|
/* TODO: _POSIX_*, _POSIX2_*, _XOPEN_* is missing here. */
|
|
|
|
|
|
|
|
/* TODO: _POSIX_*, _POSIX2_* is missing here. */
|
|
|
|
|
|
|
|
@include(NULL.h)
|
|
|
|
|
2013-04-16 05:44:29 -04:00
|
|
|
#define _CS_PATH 0
|
|
|
|
#define _CS_POSIX_V7_ILP32_OFF32_CFLAGS 1
|
|
|
|
#define _CS_POSIX_V7_ILP32_OFF32_LDFLAGS 2
|
|
|
|
#define _CS_POSIX_V7_ILP32_OFF32_LIBS 3
|
|
|
|
#define _CS_POSIX_V7_ILP32_OFFBIG_CFLAGS 4
|
|
|
|
#define _CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS 5
|
|
|
|
#define _CS_POSIX_V7_ILP32_OFFBIG_LIBS 6
|
|
|
|
#define _CS_POSIX_V7_LP64_OFF64_CFLAGS 7
|
|
|
|
#define _CS_POSIX_V7_LP64_OFF64_LDFLAGS 8
|
|
|
|
#define _CS_POSIX_V7_LP64_OFF64_LIBS 9
|
|
|
|
#define _CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS 10
|
|
|
|
#define _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS 11
|
|
|
|
#define _CS_POSIX_V7_LPBIG_OFFBIG_LIBS 12
|
|
|
|
#define _CS_POSIX_V7_THREADS_CFLAGS 13
|
|
|
|
#define _CS_POSIX_V7_THREADS_LDFLAGS 14
|
|
|
|
#define _CS_POSIX_V7_WIDTH_RESTRICTED_ENVS 15
|
|
|
|
#define _CS_V7_ENV 16
|
|
|
|
#define _CS_POSIX_V6_ILP32_OFF32_CFLAGS 17 /* obsolescent */
|
|
|
|
#define _CS_POSIX_V6_ILP32_OFF32_LDFLAGS 18 /* obsolescent */
|
|
|
|
#define _CS_POSIX_V6_ILP32_OFF32_LIBS 19 /* obsolescent */
|
|
|
|
#define _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS 20 /* obsolescent */
|
|
|
|
#define _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS 21 /* obsolescent */
|
|
|
|
#define _CS_POSIX_V6_ILP32_OFFBIG_LIBS 22 /* obsolescent */
|
|
|
|
#define _CS_POSIX_V6_LP64_OFF64_CFLAGS 23 /* obsolescent */
|
|
|
|
#define _CS_POSIX_V6_LP64_OFF64_LDFLAGS 24 /* obsolescent */
|
|
|
|
#define _CS_POSIX_V6_LP64_OFF64_LIBS 25 /* obsolescent */
|
|
|
|
#define _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS 26 /* obsolescent */
|
|
|
|
#define _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS 27 /* obsolescent */
|
|
|
|
#define _CS_POSIX_V6_LPBIG_OFFBIG_LIBS 28 /* obsolescent */
|
|
|
|
#define _CS_POSIX_V6_WIDTH_RESTRICTED_ENVS 29 /* obsolescent */
|
|
|
|
#define _CS_V6_ENV 30 /* obsolescent */
|
2011-08-05 08:25:00 -04:00
|
|
|
|
|
|
|
/* TODO: F_* is missing here. */
|
|
|
|
|
2013-03-22 08:58:43 -04:00
|
|
|
#define _PC_2_SYMLINKS 1
|
|
|
|
#define _PC_ALLOC_SIZE_MIN 2
|
|
|
|
#define _PC_ASYNC_IO 3
|
|
|
|
#define _PC_CHOWN_RESTRICTED 4
|
|
|
|
#define _PC_FILESIZEBITS 5
|
|
|
|
#define _PC_LINK_MAX 6
|
|
|
|
#define _PC_MAX_CANON 7
|
|
|
|
#define _PC_MAX_INPUT 8
|
|
|
|
#define _PC_NAME_MAX 9
|
|
|
|
#define _PC_NO_TRUNC 10
|
|
|
|
#define _PC_PATH_MAX 11
|
|
|
|
#define _PC_PIPE_BUF 12
|
|
|
|
#define _PC_PRIO_IO 13
|
|
|
|
#define _PC_REC_INCR_XFER_SIZE 14
|
|
|
|
#define _PC_REC_MAX_XFER_SIZE 15
|
|
|
|
#define _PC_REC_MIN_XFER_SIZE 16
|
|
|
|
#define _PC_REC_XFER_ALIGN 17
|
|
|
|
#define _PC_SYMLINK_MAX 18
|
|
|
|
#define _PC_SYNC_IO 19
|
|
|
|
#define _PC_TIMESTAMP_RESOLUTION 20
|
|
|
|
#define _PC_VDISABLE 21
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-04-16 04:11:15 -04:00
|
|
|
#define _SC_AIO_LISTIO_MAX 0
|
|
|
|
#define _SC_AIO_MAX 1
|
|
|
|
#define _SC_AIO_PRIO_DELTA_MAX 2
|
|
|
|
#define _SC_ARG_MAX 3
|
|
|
|
#define _SC_ATEXIT_MAX 4
|
|
|
|
#define _SC_BC_BASE_MAX 5
|
|
|
|
#define _SC_BC_DIM_MAX 6
|
|
|
|
#define _SC_BC_SCALE_MAX 7
|
|
|
|
#define _SC_BC_STRING_MAX 8
|
|
|
|
#define _SC_CHILD_MAX 9
|
|
|
|
#define _SC_CLK_TCK 10
|
|
|
|
#define _SC_COLL_WEIGHTS_MAX 11
|
|
|
|
#define _SC_DELAYTIMER_MAX 12
|
|
|
|
#define _SC_EXPR_NEST_MAX 13
|
|
|
|
#define _SC_HOST_NAME_MAX 14
|
|
|
|
#define _SC_IOV_MAX 15
|
|
|
|
#define _SC_LINE_MAX 16
|
|
|
|
#define _SC_LOGIN_NAME_MAX 17
|
|
|
|
#define _SC_NGROUPS_MAX 18
|
|
|
|
#define _SC_GETGR_R_SIZE_MAX 19
|
|
|
|
#define _SC_GETPW_R_SIZE_MAX 20
|
|
|
|
#define _SC_MQ_OPEN_MAX 21
|
|
|
|
#define _SC_MQ_PRIO_MAX 22
|
|
|
|
#define _SC_OPEN_MAX 23
|
|
|
|
#define _SC_ADVISORY_INFO 24
|
|
|
|
#define _SC_BARRIERS 25
|
|
|
|
#define _SC_ASYNCHRONOUS_IO 26
|
|
|
|
#define _SC_CLOCK_SELECTION 27
|
|
|
|
#define _SC_CPUTIME 28
|
|
|
|
#define _SC_FSYNC 29
|
|
|
|
#define _SC_IPV6 30
|
|
|
|
#define _SC_JOB_CONTROL 31
|
|
|
|
#define _SC_MAPPED_FILES 32
|
|
|
|
#define _SC_MEMLOCK 33
|
|
|
|
#define _SC_MEMLOCK_RANGE 34
|
|
|
|
#define _SC_MEMORY_PROTECTION 35
|
|
|
|
#define _SC_MESSAGE_PASSING 36
|
|
|
|
#define _SC_MONOTONIC_CLOCK 37
|
|
|
|
#define _SC_PRIORITIZED_IO 38
|
|
|
|
#define _SC_PRIORITY_SCHEDULING 39
|
|
|
|
#define _SC_RAW_SOCKETS 40
|
|
|
|
#define _SC_READER_WRITER_LOCKS 41
|
|
|
|
#define _SC_REALTIME_SIGNALS 42
|
|
|
|
#define _SC_REGEXP 43
|
|
|
|
#define _SC_SAVED_IDS 44
|
|
|
|
#define _SC_SEMAPHORES 45
|
|
|
|
#define _SC_SHARED_MEMORY_OBJECTS 46
|
|
|
|
#define _SC_SHELL 47
|
|
|
|
#define _SC_SPAWN 48
|
|
|
|
#define _SC_SPIN_LOCKS 49
|
|
|
|
#define _SC_SPORADIC_SERVER 50
|
|
|
|
#define _SC_SS_REPL_MAX 51
|
|
|
|
#define _SC_SYNCHRONIZED_IO 52
|
|
|
|
#define _SC_THREAD_ATTR_STACKADDR 53
|
|
|
|
#define _SC_THREAD_ATTR_STACKSIZE 54
|
|
|
|
#define _SC_THREAD_CPUTIME 55
|
|
|
|
#define _SC_THREAD_PRIO_INHERIT 56
|
|
|
|
#define _SC_THREAD_PRIO_PROTECT 57
|
|
|
|
#define _SC_THREAD_PRIORITY_SCHEDULING 58
|
|
|
|
#define _SC_THREAD_PROCESS_SHARED 59
|
|
|
|
#define _SC_THREAD_ROBUST_PRIO_INHERIT 60
|
|
|
|
#define _SC_THREAD_ROBUST_PRIO_PROTECT 61
|
|
|
|
#define _SC_THREAD_SAFE_FUNCTIONS 62
|
|
|
|
#define _SC_THREAD_SPORADIC_SERVER 63
|
|
|
|
#define _SC_THREADS 64
|
|
|
|
#define _SC_TIMEOUTS 65
|
|
|
|
#define _SC_TIMERS 66
|
|
|
|
#define _SC_TRACE 67
|
|
|
|
#define _SC_TRACE_EVENT_FILTER 68
|
|
|
|
#define _SC_TRACE_EVENT_NAME_MAX 69
|
|
|
|
#define _SC_TRACE_INHERIT 70
|
|
|
|
#define _SC_TRACE_LOG 71
|
|
|
|
#define _SC_TRACE_NAME_MAX 72
|
|
|
|
#define _SC_TRACE_SYS_MAX 73
|
|
|
|
#define _SC_TRACE_USER_EVENT_MAX 74
|
|
|
|
#define _SC_TYPED_MEMORY_OBJECTS 75
|
|
|
|
#define _SC_VERSION 76
|
|
|
|
#define _SC_V7_ILP32_OFF32 77
|
|
|
|
#define _SC_V7_ILP32_OFFBIG 78
|
|
|
|
#define _SC_V7_LP64_OFF64 79
|
|
|
|
#define _SC_V7_LPBIG_OFFBIG 80
|
|
|
|
#define _SC_V6_ILP32_OFF32 81 /* obsolescent */
|
|
|
|
#define _SC_V6_ILP32_OFFBIG 82 /* obsolescent */
|
|
|
|
#define _SC_V6_LP64_OFF64 83 /* obsolescent */
|
|
|
|
#define _SC_V6_LPBIG_OFFBIG 84 /* obsolescent */
|
|
|
|
#define _SC_2_C_BIND 85
|
|
|
|
#define _SC_2_C_DEV 86
|
|
|
|
#define _SC_2_CHAR_TERM 87
|
|
|
|
#define _SC_2_FORT_DEV 88
|
|
|
|
#define _SC_2_FORT_RUN 89
|
|
|
|
#define _SC_2_LOCALEDEF 90
|
|
|
|
#define _SC_2_PBS 91
|
|
|
|
#define _SC_2_PBS_ACCOUNTING 92
|
|
|
|
#define _SC_2_PBS_CHECKPOINT 93
|
|
|
|
#define _SC_2_PBS_LOCATE 94
|
|
|
|
#define _SC_2_PBS_MESSAGE 95
|
|
|
|
#define _SC_2_PBS_TRACK 96
|
|
|
|
#define _SC_2_SW_DEV 97
|
|
|
|
#define _SC_2_UPE 98
|
|
|
|
#define _SC_2_VERSION 99
|
|
|
|
#define _SC_PAGE_SIZE 100
|
|
|
|
#define _SC_PAGESIZE 111
|
|
|
|
#define _SC_THREAD_DESTRUCTOR_ITERATIONS 112
|
|
|
|
#define _SC_THREAD_KEYS_MAX 113
|
|
|
|
#define _SC_THREAD_STACK_MIN 114
|
|
|
|
#define _SC_THREAD_THREADS_MAX 115
|
|
|
|
#define _SC_RE_DUP_MAX 116
|
|
|
|
#define _SC_RTSIG_MAX 117
|
|
|
|
#define _SC_SEM_NSEMS_MAX 118
|
|
|
|
#define _SC_SEM_VALUE_MAX 119
|
|
|
|
#define _SC_SIGQUEUE_MAX 120
|
|
|
|
#define _SC_STREAM_MAX 121
|
|
|
|
#define _SC_SYMLOOP_MAX 122
|
|
|
|
#define _SC_TIMER_MAX 123
|
|
|
|
#define _SC_TTY_NAME_MAX 124
|
|
|
|
#define _SC_TZNAME_MAX 125
|
|
|
|
#define _SC_XOPEN_CRYPT 126
|
|
|
|
#define _SC_XOPEN_ENH_I18N 127
|
|
|
|
#define _SC_XOPEN_REALTIME 128
|
|
|
|
#define _SC_XOPEN_REALTIME_THREADS 129
|
|
|
|
#define _SC_XOPEN_SHM 130
|
|
|
|
#define _SC_XOPEN_STREAMS 131
|
|
|
|
#define _SC_XOPEN_UNIX 132
|
|
|
|
#define _SC_XOPEN_UUCP 133
|
|
|
|
#define _SC_XOPEN_VERSION 134
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-04-16 04:19:25 -04:00
|
|
|
#define STDIN_FILENO 0
|
|
|
|
#define STDOUT_FILENO 1
|
|
|
|
#define STDERR_FILENO 2
|
2011-08-05 08:25:00 -04:00
|
|
|
|
|
|
|
/* TODO: _POSIX_VDISABLE is missing here. */
|
|
|
|
|
|
|
|
@include(size_t.h)
|
|
|
|
@include(ssize_t.h)
|
|
|
|
@include(uid_t.h)
|
|
|
|
@include(gid_t.h)
|
|
|
|
@include(off_t.h)
|
|
|
|
@include(pid_t.h)
|
2011-12-04 09:11:39 -05:00
|
|
|
@include(useconds_t.h)
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2012-04-03 19:37:05 -04:00
|
|
|
#if defined(_WANT_ENVIRON)
|
|
|
|
extern char** environ;
|
|
|
|
#endif
|
|
|
|
|
2012-09-28 18:53:50 -04:00
|
|
|
/* TODO: These are not implemented in sortix libc yet. */
|
2012-02-11 12:50:12 -05:00
|
|
|
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
|
2011-08-05 08:25:00 -04:00
|
|
|
char* crypt(const char*, const char*);
|
|
|
|
char* ctermid(char*);
|
|
|
|
void encrypt(char [64], int);
|
|
|
|
int fdatasync(int);
|
|
|
|
int fexecve(int, char* const [], char* const []);
|
|
|
|
long fpathconf(int, int);
|
|
|
|
int getgroups(int, gid_t []);
|
|
|
|
long gethostid(void);
|
|
|
|
int getopt(int, char* const [], const char*);
|
|
|
|
pid_t getpgrp(void);
|
|
|
|
pid_t getsid(pid_t);
|
|
|
|
int lockf(int, int, off_t);
|
|
|
|
int nice(int);
|
|
|
|
int pause(void);
|
|
|
|
int setregid(gid_t, gid_t);
|
|
|
|
int setreuid(uid_t, uid_t);
|
|
|
|
pid_t setsid(void);
|
2013-04-07 11:27:11 -04:00
|
|
|
void swab(const void* __restrict, void* __restrict, ssize_t);
|
2011-08-05 08:25:00 -04:00
|
|
|
int symlink(const char*, const char*);
|
|
|
|
int symlinkat(const char*, int, const char*);
|
|
|
|
void sync(void);
|
|
|
|
int ttyname_r(int, char*, size_t);
|
|
|
|
|
|
|
|
#if __POSIX_OBSOLETE <= 200801
|
|
|
|
pid_t setpgrp(void);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern char* optarg;
|
|
|
|
extern int opterr, optind, optopt;
|
|
|
|
#endif
|
|
|
|
|
2012-03-05 09:46:23 -05:00
|
|
|
int access(const char*, int);
|
2013-05-11 19:24:42 -04:00
|
|
|
unsigned alarm(unsigned);
|
2011-11-21 06:19:57 -05:00
|
|
|
int chdir(const char*);
|
2012-10-23 14:02:33 -04:00
|
|
|
int chown(const char*, uid_t, gid_t);
|
2013-05-29 18:32:22 -04:00
|
|
|
int chroot(const char*);
|
2011-11-17 04:22:43 -05:00
|
|
|
int close(int);
|
2013-04-16 05:44:29 -04:00
|
|
|
size_t confstr(int, char*, size_t);
|
2013-06-27 14:47:24 -04:00
|
|
|
int dup2(int, int);
|
2011-11-17 14:34:04 -05:00
|
|
|
int dup(int);
|
2012-09-06 16:30:09 -04:00
|
|
|
void _exit(int) __attribute__ ((noreturn));
|
2013-10-15 18:29:39 -04:00
|
|
|
int execl(const char*, const char*, ...);
|
|
|
|
int execle(const char*, const char*, ...);
|
|
|
|
int execlp(const char*, const char*, ...);
|
2012-03-02 09:00:11 -05:00
|
|
|
int execv(const char*, char* const []);
|
|
|
|
int execve(const char*, char* const [], char* const []);
|
2012-04-29 08:37:11 -04:00
|
|
|
int execvp(const char*, char* const []);
|
2011-09-21 14:52:29 -04:00
|
|
|
pid_t fork(void);
|
2012-10-23 17:55:33 -04:00
|
|
|
int faccessat(int, const char*, int, int);
|
2012-10-24 07:06:12 -04:00
|
|
|
int fchdir(int);
|
2013-05-29 08:03:53 -04:00
|
|
|
int fchdirat(int, const char*);
|
2012-10-24 13:52:28 -04:00
|
|
|
int fchown(int, uid_t, gid_t);
|
2012-10-24 13:43:11 -04:00
|
|
|
int fchownat(int, const char*, uid_t, gid_t, int);
|
2013-05-29 18:32:22 -04:00
|
|
|
int fchroot(int);
|
|
|
|
int fchrootat(int, const char*);
|
2013-03-20 08:16:12 -04:00
|
|
|
int fsync(int);
|
2012-01-14 10:37:21 -05:00
|
|
|
int ftruncate(int, off_t);
|
2011-11-21 06:19:57 -05:00
|
|
|
char* getcwd(char*, size_t);
|
2012-08-07 18:19:44 -04:00
|
|
|
char* get_current_dir_name(void);
|
2013-01-12 20:37:14 -05:00
|
|
|
gid_t getegid(void);
|
|
|
|
uid_t geteuid(void);
|
2013-04-12 18:42:13 -04:00
|
|
|
int gethostname(char*, size_t);
|
2013-04-15 18:08:33 -04:00
|
|
|
char* getlogin(void);
|
|
|
|
int getlogin_r(char*, size_t);
|
2013-06-11 19:02:01 -04:00
|
|
|
pid_t getpgid(pid_t);
|
2011-09-21 14:52:29 -04:00
|
|
|
pid_t getpid(void);
|
|
|
|
pid_t getppid(void);
|
2013-01-12 20:37:14 -05:00
|
|
|
uid_t getuid(void);
|
|
|
|
gid_t getgid(void);
|
2011-11-26 14:56:45 -05:00
|
|
|
int isatty(int);
|
2013-01-14 16:58:34 -05:00
|
|
|
int lchown(const char*, uid_t, gid_t);
|
2012-10-23 14:09:43 -04:00
|
|
|
int link(const char*, const char*);
|
2012-10-25 09:43:53 -04:00
|
|
|
int linkat(int, const char*, int, const char*, int);
|
2011-12-26 17:12:12 -05:00
|
|
|
off_t lseek(int, off_t, int);
|
2013-03-22 08:58:43 -04:00
|
|
|
long pathconf(const char*, int);
|
2011-11-16 02:37:29 -05:00
|
|
|
int pipe(int [2]);
|
2012-03-24 10:23:07 -04:00
|
|
|
ssize_t pread(int, void*, size_t, off_t);
|
|
|
|
ssize_t pwrite(int, const void*, size_t, off_t);
|
2013-04-07 11:27:11 -04:00
|
|
|
ssize_t readlink(const char* __restrict, char* __restrict, size_t);
|
|
|
|
ssize_t readlinkat(int, const char* __restrict, char* __restrict, size_t);
|
2011-11-16 02:37:29 -05:00
|
|
|
ssize_t read(int, void*, size_t);
|
2012-01-14 10:25:28 -05:00
|
|
|
int rmdir(const char*);
|
2013-01-12 20:37:14 -05:00
|
|
|
int setegid(gid_t);
|
|
|
|
int seteuid(uid_t);
|
|
|
|
int setgid(gid_t);
|
2013-06-11 19:02:01 -04:00
|
|
|
int setpgid(pid_t, pid_t);
|
2013-01-12 20:37:14 -05:00
|
|
|
int setuid(uid_t);
|
2011-09-21 14:52:29 -04:00
|
|
|
unsigned sleep(unsigned);
|
2013-04-16 04:11:15 -04:00
|
|
|
long sysconf(int);
|
2013-06-11 20:18:07 -04:00
|
|
|
pid_t tcgetpgrp(int);
|
|
|
|
int tcsetpgrp(int, pid_t);
|
2012-01-14 10:37:21 -05:00
|
|
|
int truncate(const char*, off_t);
|
2012-10-24 08:49:19 -04:00
|
|
|
int truncateat(int dirfd, const char*, off_t);
|
2013-03-23 18:58:20 -04:00
|
|
|
char* ttyname(int);
|
2011-09-21 14:52:29 -04:00
|
|
|
int usleep(useconds_t useconds);
|
2012-10-23 07:50:33 -04:00
|
|
|
int unlinkat(int, const char*, int);
|
2011-11-21 12:49:55 -05:00
|
|
|
int unlink(const char*);
|
2011-11-16 02:37:29 -05:00
|
|
|
ssize_t write(int, const void*, size_t);
|
2011-11-26 14:14:57 -05:00
|
|
|
|
2012-02-11 12:50:12 -05:00
|
|
|
#if defined(_SORTIX_SOURCE)
|
2013-05-11 19:24:42 -04:00
|
|
|
int alarmns(const struct timespec* delay, struct timespec* odelay);
|
2012-04-29 08:37:11 -04:00
|
|
|
int execvpe(const char*, char* const [], char* const []);
|
2012-05-28 17:11:44 -04:00
|
|
|
int getdtablesize(void);
|
2012-01-08 08:58:57 -05:00
|
|
|
size_t getpagesize(void);
|
2011-11-26 14:14:57 -05:00
|
|
|
int memstat(size_t* memused, size_t* memtotal);
|
2013-06-01 07:24:27 -04:00
|
|
|
int mkpartition(int fd, off_t start, off_t length);
|
2012-03-24 10:34:30 -04:00
|
|
|
size_t preadall(int fd, void* buf, size_t count, off_t off);
|
|
|
|
size_t preadleast(int fd, void* buf, size_t least, size_t max, off_t off);
|
|
|
|
size_t pwriteall(int fd, const void* buf, size_t count, off_t off);
|
|
|
|
size_t pwriteleast(int fd, const void* buf, size_t least, size_t max, off_t off);
|
|
|
|
size_t readall(int fd, void* buf, size_t count);
|
|
|
|
size_t readleast(int fd, void* buf, size_t least, size_t max);
|
2012-04-03 18:29:25 -04:00
|
|
|
pid_t sfork(int flags);
|
2012-08-05 11:35:19 -04:00
|
|
|
pid_t tfork(int flags, tforkregs_t* regs);
|
2012-03-24 10:34:30 -04:00
|
|
|
size_t writeall(int fd, const void* buf, size_t count);
|
|
|
|
size_t writeleast(int fd, const void* buf, size_t least, size_t max);
|
2012-03-04 17:36:04 -05:00
|
|
|
#endif
|
|
|
|
#if defined(_SORTIX_SOURCE) || defined(_SORTIX_ALWAYS_SBRK)
|
2013-01-15 19:45:51 -05:00
|
|
|
void* sbrk(__intptr_t increment);
|
2011-11-24 04:26:36 -05:00
|
|
|
#endif
|
2011-09-21 14:52:29 -04:00
|
|
|
|
2011-08-05 08:25:00 -04:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif
|