syscalls.master revision 1.1.2.6 1 1.1.2.6 nathanw $NetBSD: syscalls.master,v 1.1.2.6 2002/02/28 04:12:53 nathanw Exp $
2 1.1.2.2 nathanw
3 1.1.2.2 nathanw ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
4 1.1.2.2 nathanw
5 1.1.2.2 nathanw ; Derived from NetBSD's sys/compat/linux/arch/powerpc/syscalls.master
6 1.1.2.2 nathanw ; from Linux's arch/mips/kernel/syscalls.h
7 1.1.2.2 nathanw
8 1.1.2.2 nathanw ; NetBSD mips COMPAT_LINUX system call name/number "master" file.
9 1.1.2.2 nathanw ; (See syscalls.conf to see what it is processed into.)
10 1.1.2.2 nathanw ;
11 1.1.2.2 nathanw ; Expect problems with
12 1.1.2.2 nathanw ; 48 signal: undefined in Linux???
13 1.1.2.2 nathanw ; 86 uselib: needs a.out
14 1.1.2.2 nathanw ;
15 1.1.2.2 nathanw ; Fields: number type [type-dependent ...]
16 1.1.2.2 nathanw ; number system call number, must be in order
17 1.1.2.2 nathanw ; type one of STD, OBSOL, UNIMPL, NODEF, NOARGS, or one of
18 1.1.2.2 nathanw ; the compatibility options defined in syscalls.conf.
19 1.1.2.2 nathanw ;
20 1.1.2.2 nathanw ; types:
21 1.1.2.2 nathanw ; STD always included
22 1.1.2.2 nathanw ; OBSOL obsolete, not included in system
23 1.1.2.2 nathanw ; UNIMPL unimplemented, not included in system
24 1.1.2.2 nathanw ; NODEF included, but don't define the syscall number
25 1.1.2.2 nathanw ; NOARGS included, but don't define the syscall args structure
26 1.1.2.2 nathanw ; INDIR included, but don't define the syscall args structure
27 1.1.2.2 nathanw ; and allow it to be "really" varargs.
28 1.1.2.2 nathanw ;
29 1.1.2.2 nathanw ; The compat options are defined in the syscalls.conf file, and the
30 1.1.2.2 nathanw ; compat option name is prefixed to the syscall name. Other than
31 1.1.2.2 nathanw ; that, they're like NODEF (for 'compat' options), or STD (for
32 1.1.2.2 nathanw ; 'libcompat' options).
33 1.1.2.2 nathanw ;
34 1.1.2.2 nathanw ; The type-dependent arguments are as follows:
35 1.1.2.2 nathanw ; For STD, NODEF, NOARGS, and compat syscalls:
36 1.1.2.2 nathanw ; { pseudo-proto } [alias]
37 1.1.2.2 nathanw ; For other syscalls:
38 1.1.2.2 nathanw ; [comment]
39 1.1.2.2 nathanw ;
40 1.1.2.2 nathanw ; #ifdef's, etc. may be included, and are copied to the output files.
41 1.1.2.2 nathanw ; #include's are copied to the syscall names and switch definition files only.
42 1.1.2.2 nathanw
43 1.1.2.2 nathanw #if defined(_KERNEL_OPT)
44 1.1.2.2 nathanw #include "opt_compat_netbsd.h"
45 1.1.2.2 nathanw #include "opt_compat_43.h"
46 1.1.2.2 nathanw #endif
47 1.1.2.2 nathanw
48 1.1.2.2 nathanw #include <sys/param.h>
49 1.1.2.2 nathanw #include <sys/poll.h>
50 1.1.2.2 nathanw #include <sys/systm.h>
51 1.1.2.2 nathanw #include <sys/signal.h>
52 1.1.2.2 nathanw #include <sys/mount.h>
53 1.1.2.2 nathanw #include <sys/syscallargs.h>
54 1.1.2.2 nathanw
55 1.1.2.2 nathanw #include <compat/linux/common/linux_types.h>
56 1.1.2.2 nathanw #include <compat/linux/common/linux_signal.h>
57 1.1.2.2 nathanw #include <compat/linux/common/linux_siginfo.h>
58 1.1.2.2 nathanw #include <compat/linux/common/linux_machdep.h>
59 1.1.2.2 nathanw #include <compat/linux/common/linux_mmap.h>
60 1.1.2.4 nathanw #include <compat/linux/common/linux_socketcall.h>
61 1.1.2.2 nathanw
62 1.1.2.2 nathanw #include <compat/linux/linux_syscallargs.h>
63 1.1.2.2 nathanw
64 1.1.2.2 nathanw 0 NOARGS { int linux_sys_nosys(void); } syscall
65 1.1.2.2 nathanw 1 NOARGS { int sys_exit(int rval); }
66 1.1.2.2 nathanw 2 NOARGS { int sys_fork(void); }
67 1.1.2.2 nathanw 3 NOARGS { int sys_read(int fd, char *buf, u_int nbyte); }
68 1.1.2.2 nathanw 4 NOARGS { int sys_write(int fd, char *buf, u_int nbyte); }
69 1.1.2.2 nathanw 5 STD { int linux_sys_open(const char *path, int flags, \
70 1.1.2.2 nathanw int mode); }
71 1.1.2.2 nathanw 6 NOARGS { int sys_close(int fd); }
72 1.1.2.2 nathanw 7 STD { int linux_sys_waitpid(int pid, int *status, \
73 1.1.2.2 nathanw int options);}
74 1.1.2.2 nathanw 8 STD { int linux_sys_creat(const char *path, int mode); }
75 1.1.2.2 nathanw 9 STD { int linux_sys_link(const char *path, \
76 1.1.2.2 nathanw const char *link); }
77 1.1.2.2 nathanw 10 STD { int linux_sys_unlink(const char *path); }
78 1.1.2.2 nathanw 11 STD { int linux_sys_execve(const char *path, char **argp, \
79 1.1.2.2 nathanw char **envp); }
80 1.1.2.2 nathanw 12 STD { int linux_sys_chdir(const char *path); }
81 1.1.2.2 nathanw 13 STD { int linux_sys_time(linux_time_t *t); }
82 1.1.2.2 nathanw 14 STD { int linux_sys_mknod(const char *path, int mode, \
83 1.1.2.2 nathanw int dev); }
84 1.1.2.2 nathanw 15 STD { int linux_sys_chmod(const char *path, int mode); }
85 1.1.2.2 nathanw 16 STD { int linux_sys_lchown(const char *path, int uid, \
86 1.1.2.2 nathanw int gid); }
87 1.1.2.2 nathanw 17 UNIMPL
88 1.1.2.2 nathanw 18 OBSOL ostat
89 1.1.2.2 nathanw 19 NOARGS { long compat_43_sys_lseek(int fd, long offset, \
90 1.1.2.2 nathanw int whence); }
91 1.1.2.2 nathanw 20 NOARGS MPSAFE { pid_t sys_getpid(void); }
92 1.1.2.2 nathanw 21 UNIMPL mount
93 1.1.2.2 nathanw 22 OBSOL umount
94 1.1.2.2 nathanw 23 NOARGS { int sys_setuid(uid_t uid); }
95 1.1.2.2 nathanw 24 NOARGS { uid_t sys_getuid(void); }
96 1.1.2.2 nathanw 25 STD { int linux_sys_stime(linux_time_t *t); }
97 1.1.2.2 nathanw 26 STD { int linux_sys_ptrace(int request, int pid, \
98 1.1.2.2 nathanw int addr, int data); }
99 1.1.2.2 nathanw 27 STD { int linux_sys_alarm(unsigned int secs); }
100 1.1.2.2 nathanw 28 OBSOL ofstat
101 1.1.2.2 nathanw 29 STD { int linux_sys_pause(void); }
102 1.1.2.2 nathanw 30 STD { int linux_sys_utime(const char *path, \
103 1.1.2.2 nathanw struct linux_utimbuf *times); }
104 1.1.2.2 nathanw 31 UNIMPL
105 1.1.2.2 nathanw 32 UNIMPL
106 1.1.2.2 nathanw 33 STD { int linux_sys_access(const char *path, int flags); }
107 1.1.2.2 nathanw 34 STD { int linux_sys_nice(int incr); }
108 1.1.2.2 nathanw 35 UNIMPL
109 1.1.2.2 nathanw 36 NOARGS { int sys_sync(void); }
110 1.1.2.2 nathanw 37 STD { int linux_sys_kill(int pid, int signum); }
111 1.1.2.2 nathanw 38 STD { int linux_sys_rename(const char *from, \
112 1.1.2.2 nathanw const char *to); }
113 1.1.2.2 nathanw 39 STD { int linux_sys_mkdir(const char *path, int mode); }
114 1.1.2.2 nathanw 40 STD { int linux_sys_rmdir(const char *path); }
115 1.1.2.2 nathanw 41 NOARGS { int sys_dup(u_int fd); }
116 1.1.2.2 nathanw 42 STD { int linux_sys_pipe(int *pfds); }
117 1.1.2.2 nathanw 43 STD { int linux_sys_times(struct times *tms); }
118 1.1.2.2 nathanw 44 UNIMPL
119 1.1.2.2 nathanw 45 STD { int linux_sys_brk(char *nsize); }
120 1.1.2.2 nathanw 46 NOARGS { int sys_setgid(gid_t gid); }
121 1.1.2.2 nathanw 47 NOARGS { gid_t sys_getgid(void); }
122 1.1.2.2 nathanw 48 STD { int linux_sys_signal(int signum, \
123 1.1.2.2 nathanw linux___sighandler_t handler); }
124 1.1.2.2 nathanw 49 NOARGS { uid_t sys_geteuid(void); }
125 1.1.2.2 nathanw 50 NOARGS { gid_t sys_getegid(void); }
126 1.1.2.2 nathanw 51 NOARGS { int sys_acct(char *path); }
127 1.1.2.2 nathanw 52 UNIMPL umount
128 1.1.2.2 nathanw 53 UNIMPL
129 1.1.2.2 nathanw 54 STD { int linux_sys_ioctl(int fd, u_long com, \
130 1.1.2.2 nathanw caddr_t data); }
131 1.1.2.2 nathanw 55 STD { int linux_sys_fcntl(int fd, int cmd, void *arg); }
132 1.1.2.2 nathanw 56 OBSOL mpx
133 1.1.2.2 nathanw 57 NOARGS { int sys_setpgid(int pid, int pgid); }
134 1.1.2.2 nathanw 58 UNIMPL
135 1.1.2.2 nathanw 59 STD { int linux_sys_olduname(struct linux_old_utsname \
136 1.1.2.2 nathanw *up); }
137 1.1.2.2 nathanw 60 NOARGS { int sys_umask(int newmask); }
138 1.1.2.2 nathanw 61 NOARGS { int sys_chroot(char *path); }
139 1.1.2.2 nathanw 62 UNIMPL ustat
140 1.1.2.2 nathanw 63 NOARGS { int sys_dup2(u_int from, u_int to); }
141 1.1.2.2 nathanw 64 NOARGS { pid_t sys_getppid(void); }
142 1.1.2.2 nathanw 65 NOARGS { int sys_getpgrp(void); }
143 1.1.2.2 nathanw 66 NOARGS { int sys_setsid(void); }
144 1.1.2.2 nathanw 67 STD { int linux_sys_sigaction(int signum, \
145 1.1.2.2 nathanw const struct linux_old_sigaction *nsa, \
146 1.1.2.2 nathanw struct linux_old_sigaction *osa); }
147 1.1.2.2 nathanw 68 STD { int linux_sys_siggetmask(void); }
148 1.1.2.2 nathanw 69 STD { int linux_sys_sigsetmask(linux_old_sigset_t mask); }
149 1.1.2.2 nathanw 70 NOARGS { int sys_setreuid(uid_t ruid, uid_t euid); }
150 1.1.2.2 nathanw 71 NOARGS { int sys_setregid(gid_t rgid, gid_t egid); }
151 1.1.2.2 nathanw 72 STD { int linux_sys_sigsuspend(caddr_t restart, \
152 1.1.2.2 nathanw int oldmask, int mask); }
153 1.1.2.2 nathanw 73 STD { int linux_sys_sigpending(linux_old_sigset_t *set); }
154 1.1.2.2 nathanw 74 NOARGS { int compat_43_sys_sethostname(char *hostname, \
155 1.1.2.2 nathanw u_int len);}
156 1.1.2.6 nathanw 75 STD { int linux_sys_setrlimit(u_int which, \
157 1.1.2.2 nathanw struct orlimit *rlp); }
158 1.1.2.6 nathanw 76 STD { int linux_sys_getrlimit(u_int which, \
159 1.1.2.2 nathanw struct orlimit *rlp); }
160 1.1.2.2 nathanw 77 NOARGS { int sys_getrusage(int who, struct rusage *rusage); }
161 1.1.2.2 nathanw 78 STD { int linux_sys_gettimeofday(struct timeval *tp, \
162 1.1.2.2 nathanw struct timezone *tzp); }
163 1.1.2.2 nathanw 79 STD { int linux_sys_settimeofday(struct timeval *tp, \
164 1.1.2.2 nathanw struct timezone *tzp); }
165 1.1.2.2 nathanw 80 NOARGS { int sys_getgroups(u_int gidsetsize, gid_t *gidset); }
166 1.1.2.2 nathanw 81 NOARGS { int sys_setgroups(u_int gidsetsize, gid_t *gidset); }
167 1.1.2.2 nathanw 82 UNIMPL old_select
168 1.1.2.2 nathanw 83 STD { int linux_sys_symlink(const char *path, \
169 1.1.2.2 nathanw const char *to); }
170 1.1.2.2 nathanw 84 NOARGS { int compat_43_sys_lstat(const char *path, \
171 1.1.2.2 nathanw struct stat43 *up); } oolstat
172 1.1.2.2 nathanw 85 STD { int linux_sys_readlink(const char *name, char *buf, \
173 1.1.2.2 nathanw int count); }
174 1.1.2.2 nathanw 86 UNIMPL uselib
175 1.1.2.2 nathanw ;86 STD { int linux_sys_uselib(const char *path); }
176 1.1.2.2 nathanw 87 STD { int linux_sys_swapon(char *name); }
177 1.1.2.2 nathanw 88 STD { int linux_sys_reboot(int magic1, int magic2, \
178 1.1.2.2 nathanw int cmd, void *arg); }
179 1.1.2.2 nathanw 89 STD { int linux_sys_readdir(int fd, caddr_t dent, \
180 1.1.2.2 nathanw unsigned int count); }
181 1.1.2.2 nathanw 90 NOARGS { int linux_sys_mmap(unsigned long addr, size_t len, \
182 1.1.2.2 nathanw int prot, int flags, int fd, linux_off_t offset); }
183 1.1.2.2 nathanw 91 NOARGS { int sys_munmap(caddr_t addr, int len); }
184 1.1.2.2 nathanw 92 STD { int linux_sys_truncate(const char *path, \
185 1.1.2.2 nathanw long length); }
186 1.1.2.2 nathanw 93 NOARGS { int compat_43_sys_ftruncate(int fd, long length); }
187 1.1.2.2 nathanw 94 NOARGS { int sys_fchmod(int fd, int mode); }
188 1.1.2.2 nathanw 95 NOARGS { int sys___posix_fchown(int fd, int uid, int gid); }
189 1.1.2.2 nathanw 96 NOARGS { int sys_getpriority(int which, int who); }
190 1.1.2.2 nathanw 97 NOARGS { int sys_setpriority(int which, int who, int prio); }
191 1.1.2.2 nathanw 98 UNIMPL
192 1.1.2.2 nathanw 99 STD { int linux_sys_statfs(const char *path, \
193 1.1.2.2 nathanw struct linux_statfs *sp); }
194 1.1.2.2 nathanw 100 STD { int linux_sys_fstatfs(int fd, \
195 1.1.2.2 nathanw struct linux_statfs *sp); }
196 1.1.2.2 nathanw 101 STD { int linux_sys_ioperm(unsigned int lo, \
197 1.1.2.2 nathanw unsigned int hi, int val); }
198 1.1.2.2 nathanw 102 STD { int linux_sys_socketcall(int what, void *args); }
199 1.1.2.2 nathanw 103 UNIMPL syslog
200 1.1.2.2 nathanw 104 NOARGS { int sys_setitimer(u_int which, \
201 1.1.2.2 nathanw struct itimerval *itv, struct itimerval *oitv); }
202 1.1.2.2 nathanw 105 NOARGS { int sys_getitimer(u_int which, \
203 1.1.2.2 nathanw struct itimerval *itv); }
204 1.1.2.2 nathanw 106 STD { int linux_sys_stat(const char *path, \
205 1.1.2.2 nathanw struct linux_stat *sp); }
206 1.1.2.2 nathanw 107 STD { int linux_sys_lstat(const char *path, \
207 1.1.2.2 nathanw struct linux_stat *sp); }
208 1.1.2.2 nathanw 108 STD { int linux_sys_fstat(int fd, struct linux_stat *sp); }
209 1.1.2.2 nathanw 109 STD { int linux_sys_uname(struct linux_utsname *up); }
210 1.1.2.2 nathanw 110 UNIMPL iopl
211 1.1.2.2 nathanw 111 UNIMPL vhangup
212 1.1.2.2 nathanw 112 UNIMPL idle
213 1.1.2.2 nathanw 113 UNIMPL vm86old
214 1.1.2.2 nathanw 114 STD { int linux_sys_wait4(int pid, int *status, \
215 1.1.2.2 nathanw int options, struct rusage *rusage); }
216 1.1.2.2 nathanw 115 STD { int linux_sys_swapoff(const char *path); }
217 1.1.2.2 nathanw 116 STD { int linux_sys_sysinfo(struct linux_sysinfo *arg); }
218 1.1.2.2 nathanw 117 STD { int linux_sys_ipc(int what, int a1, int a2, int a3, \
219 1.1.2.2 nathanw caddr_t ptr); }
220 1.1.2.2 nathanw 118 NOARGS { int sys_fsync(int fd); }
221 1.1.2.5 nathanw 119 STD { int linux_sys_sigreturn(struct linux_sigframe *sf); }
222 1.1.2.2 nathanw 120 STD { int linux_sys_clone(int flags, void *stack); }
223 1.1.2.2 nathanw 121 STD { int linux_sys_setdomainname(char *domainname, \
224 1.1.2.2 nathanw int len); }
225 1.1.2.2 nathanw 122 STD { int linux_sys_new_uname(struct linux_utsname *up); }
226 1.1.2.2 nathanw 123 UNIMPL modify_ldt
227 1.1.2.2 nathanw 124 UNIMPL adjtimex
228 1.1.2.2 nathanw 125 NOARGS { int sys_mprotect(caddr_t addr, int len, int prot); }
229 1.1.2.2 nathanw 126 STD { int linux_sys_sigprocmask(int how, \
230 1.1.2.2 nathanw const linux_old_sigset_t *set, \
231 1.1.2.2 nathanw linux_old_sigset_t *oset); }
232 1.1.2.2 nathanw 127 UNIMPL create_module
233 1.1.2.2 nathanw 128 UNIMPL init_module
234 1.1.2.2 nathanw 129 UNIMPL delete_module
235 1.1.2.2 nathanw 130 UNIMPL get_kernel_syms
236 1.1.2.2 nathanw 131 UNIMPL quotactl
237 1.1.2.2 nathanw 132 STD { int linux_sys_getpgid(int pid); }
238 1.1.2.2 nathanw 133 NOARGS { int sys_fchdir(int fd); }
239 1.1.2.2 nathanw 134 UNIMPL bdflush
240 1.1.2.2 nathanw 135 UNIMPL sysfs
241 1.1.2.2 nathanw 136 STD { int linux_sys_personality(int per); }
242 1.1.2.2 nathanw 137 UNIMPL afs_syscall
243 1.1.2.2 nathanw 138 STD { int linux_sys_setfsuid(uid_t uid); }
244 1.1.2.2 nathanw 139 NOARGS { int linux_sys_getfsuid(void); }
245 1.1.2.2 nathanw 140 STD { int linux_sys_llseek(int fd, u_int32_t ohigh, \
246 1.1.2.2 nathanw u_int32_t olow, caddr_t res, int whence); }
247 1.1.2.2 nathanw 141 STD { int linux_sys_getdents(int fd, \
248 1.1.2.2 nathanw struct linux_dirent *dent, unsigned int count); }
249 1.1.2.2 nathanw 142 STD { int linux_sys_select(int nfds, fd_set *readfds, \
250 1.1.2.2 nathanw fd_set *writefds, fd_set *exceptfds, \
251 1.1.2.2 nathanw struct timeval *timeout); }
252 1.1.2.2 nathanw 143 NOARGS { int sys_flock(int fd, int how); }
253 1.1.2.2 nathanw 144 STD { int linux_sys_msync(caddr_t addr, int len, int fl); }
254 1.1.2.2 nathanw 145 NOARGS { int sys_readv(int fd, struct iovec *iovp, \
255 1.1.2.2 nathanw u_int iovcnt); }
256 1.1.2.2 nathanw 146 NOARGS { int sys_writev(int fd, struct iovec *iovp, \
257 1.1.2.2 nathanw u_int iovcnt); }
258 1.1.2.2 nathanw 147 STD { int linux_sys_cacheflush(void *addr, \
259 1.1.2.2 nathanw int bytes, int cache); }
260 1.1.2.2 nathanw 148 UNIMPL cachectl
261 1.1.2.3 nathanw 149 STD { int linux_sys_sysmips(int cmd, int arg1, \
262 1.1.2.3 nathanw int arg2, int arg3); }
263 1.1.2.2 nathanw 150 UNIMPL
264 1.1.2.2 nathanw 151 NOARGS { pid_t sys_getsid(pid_t pid); }
265 1.1.2.2 nathanw 152 STD { int linux_sys_fdatasync(int fd); }
266 1.1.2.2 nathanw 153 STD { int linux_sys___sysctl(struct linux___sysctl *lsp); }
267 1.1.2.2 nathanw 154 NOARGS { int sys_mlock(caddr_t addr, size_t len); }
268 1.1.2.2 nathanw 155 NOARGS { int sys_munlock(caddr_t addr, size_t len); }
269 1.1.2.2 nathanw 156 NOARGS { int sys_mlockall(int flags); }
270 1.1.2.2 nathanw 157 NOARGS { int sys_munlockall(void); }
271 1.1.2.2 nathanw 158 STD { int linux_sys_sched_setparam(pid_t pid, \
272 1.1.2.2 nathanw const struct linux_sched_param *sp); }
273 1.1.2.2 nathanw 159 STD { int linux_sys_sched_getparam(pid_t pid, \
274 1.1.2.2 nathanw struct linux_sched_param *sp); }
275 1.1.2.2 nathanw 160 STD { int linux_sys_sched_setscheduler(pid_t pid, \
276 1.1.2.2 nathanw int policy, const struct linux_sched_param *sp); }
277 1.1.2.2 nathanw 161 STD { int linux_sys_sched_getscheduler(pid_t pid); }
278 1.1.2.2 nathanw 162 STD { int linux_sys_sched_yield(void); }
279 1.1.2.2 nathanw 163 STD { int linux_sys_sched_get_priority_max(int policy); }
280 1.1.2.2 nathanw 164 STD { int linux_sys_sched_get_priority_min(int policy); }
281 1.1.2.2 nathanw 165 UNIMPL sched_rr_get_interval
282 1.1.2.2 nathanw 166 NOARGS { int sys_nanosleep(const struct timespec *rqtp, \
283 1.1.2.2 nathanw struct timespec *rmtp); }
284 1.1.2.2 nathanw 167 STD { void *linux_sys_mremap(void *old_address, \
285 1.1.2.2 nathanw size_t old_size, size_t new_size, u_long flags); }
286 1.1.2.4 nathanw 168 NOARGS { int linux_sys_accept(int s, \
287 1.1.2.4 nathanw struct osockaddr *name, int *anamelen); }
288 1.1.2.4 nathanw 169 NOARGS { int linux_sys_bind(int s, \
289 1.1.2.4 nathanw const struct osockaddr *name, int namelen); }
290 1.1.2.4 nathanw 170 NOARGS { int linux_sys_connect(int s, \
291 1.1.2.4 nathanw const struct sockaddr *name, int namelen); }
292 1.1.2.4 nathanw 171 NOARGS { int linux_sys_getpeername(int fdes, caddr_t asa, \
293 1.1.2.4 nathanw int *alen); }
294 1.1.2.4 nathanw 172 NOARGS { int linux_sys_getsockname(int fdes, caddr_t asa, \
295 1.1.2.4 nathanw int *alen); }
296 1.1.2.4 nathanw 173 NOARGS { int linux_sys_getsockopt(int s, int level, \
297 1.1.2.4 nathanw int optname, void *optval, int *optlen); }
298 1.1.2.4 nathanw 174 NOARGS { int sys_listen(int s, int backlog); }
299 1.1.2.4 nathanw 175 NOARGS { int linux_sys_recv(int s, void *buf, int len, \
300 1.1.2.4 nathanw int flags); }
301 1.1.2.4 nathanw 176 NOARGS { int linux_sys_recvfrom(int s, void *buf, int len, \
302 1.1.2.4 nathanw int flags, struct osockaddr *from, \
303 1.1.2.4 nathanw int *fromlenaddr); }
304 1.1.2.4 nathanw 177 NOARGS { int linux_sys_recvmsg(int s, struct msghdr *msg, \
305 1.1.2.4 nathanw u_int flags); }
306 1.1.2.4 nathanw 178 NOARGS { int linux_sys_send(int s, caddr_t buf, int len, \
307 1.1.2.4 nathanw int flags); }
308 1.1.2.4 nathanw 179 NOARGS { int linux_sys_sendmsg(int s, struct msghdr *msg, \
309 1.1.2.4 nathanw u_int flags); }
310 1.1.2.4 nathanw 180 NOARGS { int linux_sys_sendto(int s, void *msg, \
311 1.1.2.4 nathanw int len, int flags, struct osockaddr *to, \
312 1.1.2.4 nathanw int tolen); }
313 1.1.2.4 nathanw 181 NOARGS { int linux_sys_setsockopt(int s, int level, \
314 1.1.2.4 nathanw int optname, void *optval, int optlen); }
315 1.1.2.4 nathanw 182 UNIMPL shutdown
316 1.1.2.4 nathanw 183 NOARGS { int linux_sys_socket(int domain, int type, \
317 1.1.2.4 nathanw int protocol); }
318 1.1.2.4 nathanw 184 NOARGS { int linux_sys_socketpair(int domain, int type, \
319 1.1.2.4 nathanw int protocol, int *rsv); }
320 1.1.2.2 nathanw 185 STD { int linux_sys_setresuid(uid_t ruid, uid_t euid, \
321 1.1.2.2 nathanw uid_t suid); }
322 1.1.2.2 nathanw 186 STD { int linux_sys_getresuid(uid_t *ruid, uid_t *euid, \
323 1.1.2.2 nathanw uid_t *suid); }
324 1.1.2.2 nathanw 187 UNIMPL query_module
325 1.1.2.2 nathanw 188 NOARGS { int sys_poll(struct pollfd *fds, u_int nfds, \
326 1.1.2.2 nathanw int timeout); }
327 1.1.2.2 nathanw 189 UNIMPL nfsservctl
328 1.1.2.2 nathanw 190 STD { int linux_sys_setresgid(gid_t rgid, gid_t egid, \
329 1.1.2.2 nathanw gid_t sgid); }
330 1.1.2.2 nathanw 191 STD { int linux_sys_getresgid(gid_t *rgid, gid_t *egid, \
331 1.1.2.2 nathanw gid_t *sgid); }
332 1.1.2.2 nathanw 192 UNIMPL prctl
333 1.1.2.2 nathanw 193 STD { int linux_sys_rt_sigreturn( \
334 1.1.2.2 nathanw struct linux_pt_regs regs); }
335 1.1.2.2 nathanw 194 STD { int linux_sys_rt_sigaction(int signum, \
336 1.1.2.2 nathanw const struct linux_sigaction *nsa, \
337 1.1.2.2 nathanw struct linux_sigaction *osa, \
338 1.1.2.2 nathanw size_t sigsetsize); }
339 1.1.2.2 nathanw 195 STD { int linux_sys_rt_sigprocmask(int how, \
340 1.1.2.2 nathanw const linux_sigset_t *set, \
341 1.1.2.2 nathanw linux_sigset_t *oset, \
342 1.1.2.2 nathanw size_t sigsetsize); }
343 1.1.2.2 nathanw 196 STD { int linux_sys_rt_sigpending( \
344 1.1.2.2 nathanw linux_sigset_t *set, \
345 1.1.2.2 nathanw size_t sigsetsize); }
346 1.1.2.2 nathanw 197 UNIMPL rt_sigtimedwait
347 1.1.2.2 nathanw ; XXX XAX int here? sigset_t here? siginfo_t
348 1.1.2.2 nathanw 198 STD { int linux_sys_rt_queueinfo(int pid, int signum, \
349 1.1.2.2 nathanw void *uinfo); }
350 1.1.2.2 nathanw 199 STD { int linux_sys_rt_sigsuspend(linux_sigset_t *unewset, \
351 1.1.2.2 nathanw size_t sigsetsize); }
352 1.1.2.2 nathanw 200 STD { int linux_sys_pread(int fd, char *buf, \
353 1.1.2.2 nathanw size_t nbyte, linux_off_t offset); }
354 1.1.2.2 nathanw 201 STD { int linux_sys_pwrite(int fd, char *buf, \
355 1.1.2.2 nathanw size_t nbyte, linux_off_t offset); }
356 1.1.2.2 nathanw 202 STD { int linux_sys_chown(const char *path, \
357 1.1.2.2 nathanw int uid, int gid); }
358 1.1.2.2 nathanw 203 NOARGS { int sys___getcwd(char *bufp, size_t length); }
359 1.1.2.2 nathanw 204 UNIMPL capget
360 1.1.2.2 nathanw 205 UNIMPL capset
361 1.1.2.2 nathanw 206 STD { int linux_sys_sigaltstack( \
362 1.1.2.2 nathanw const struct linux_sigaltstack *ss, \
363 1.1.2.2 nathanw struct linux_sigaltstack *oss); }
364 1.1.2.2 nathanw 207 UNIMPL sendfile
365 1.1.2.2 nathanw 208 UNIMPL
366 1.1.2.2 nathanw 209 UNIMPL
367 1.1.2.6 nathanw 210 STD { off_t linux_sys_mmap2(void *addr, size_t len, \
368 1.1.2.6 nathanw int prot, int flags, int fd, off_t offset); }
369 1.1.2.3 nathanw 211 STD { int linux_sys_truncate64(const char *path, \
370 1.1.2.3 nathanw off_t length); }
371 1.1.2.2 nathanw 212 UNIMPL ftruncate64
372 1.1.2.3 nathanw 213 STD { int linux_sys_stat64(const char *path, \
373 1.1.2.6 nathanw struct linux_stat64 *sp); }
374 1.1.2.3 nathanw 214 STD { int linux_sys_lstat64(const char *path, \
375 1.1.2.6 nathanw struct linux_stat64 *sp); }
376 1.1.2.3 nathanw 215 STD { int linux_sys_fstat64(int fd, \
377 1.1.2.6 nathanw struct linux_stat64 *sp); }
378 1.1.2.2 nathanw 216 UNIMPL pivot_root
379 1.1.2.2 nathanw 217 UNIMPL mincore
380 1.1.2.2 nathanw 218 UNIMPL modvise
381 1.1.2.2 nathanw 219 UNIMPL getdents64
382 1.1.2.3 nathanw 220 STD { int linux_sys_fcntl64(unsigned int fd, \
383 1.1.2.3 nathanw unsigned int cmd, unsigned long arg); }
384