linux_sysent.c revision 1.1 1 1.1 itohy /* $NetBSD: linux_sysent.c,v 1.1 1998/12/15 19:28:31 itohy Exp $ */
2 1.1 itohy
3 1.1 itohy /*
4 1.1 itohy * System call switch table.
5 1.1 itohy *
6 1.1 itohy * DO NOT EDIT-- this file is automatically generated.
7 1.1 itohy * created from NetBSD: syscalls.master,v 1.1 1998/12/15 19:25:41 itohy Exp
8 1.1 itohy */
9 1.1 itohy
10 1.1 itohy #include "opt_compat_netbsd.h"
11 1.1 itohy #include "opt_compat_43.h"
12 1.1 itohy #include <sys/param.h>
13 1.1 itohy #include <sys/systm.h>
14 1.1 itohy #include <sys/signal.h>
15 1.1 itohy #include <sys/mount.h>
16 1.1 itohy #include <sys/syscallargs.h>
17 1.1 itohy #include <compat/linux/common/linux_types.h>
18 1.1 itohy #include <compat/linux/common/linux_signal.h>
19 1.1 itohy #include <compat/linux/common/linux_siginfo.h>
20 1.1 itohy #include <compat/linux/common/linux_machdep.h>
21 1.1 itohy #include <compat/linux/linux_syscallargs.h>
22 1.1 itohy
23 1.1 itohy #define s(type) sizeof(type)
24 1.1 itohy
25 1.1 itohy struct sysent linux_sysent[] = {
26 1.1 itohy { 0, 0,
27 1.1 itohy sys_nosys }, /* 0 = syscall */
28 1.1 itohy { 1, s(struct sys_exit_args),
29 1.1 itohy sys_exit }, /* 1 = exit */
30 1.1 itohy { 0, 0,
31 1.1 itohy sys_fork }, /* 2 = fork */
32 1.1 itohy { 3, s(struct sys_read_args),
33 1.1 itohy sys_read }, /* 3 = read */
34 1.1 itohy { 3, s(struct sys_write_args),
35 1.1 itohy sys_write }, /* 4 = write */
36 1.1 itohy { 3, s(struct linux_sys_open_args),
37 1.1 itohy linux_sys_open }, /* 5 = open */
38 1.1 itohy { 1, s(struct sys_close_args),
39 1.1 itohy sys_close }, /* 6 = close */
40 1.1 itohy { 3, s(struct linux_sys_waitpid_args),
41 1.1 itohy linux_sys_waitpid }, /* 7 = waitpid */
42 1.1 itohy { 2, s(struct linux_sys_creat_args),
43 1.1 itohy linux_sys_creat }, /* 8 = creat */
44 1.1 itohy { 2, s(struct sys_link_args),
45 1.1 itohy sys_link }, /* 9 = link */
46 1.1 itohy { 1, s(struct linux_sys_unlink_args),
47 1.1 itohy linux_sys_unlink }, /* 10 = unlink */
48 1.1 itohy { 3, s(struct linux_sys_execve_args),
49 1.1 itohy linux_sys_execve }, /* 11 = execve */
50 1.1 itohy { 1, s(struct linux_sys_chdir_args),
51 1.1 itohy linux_sys_chdir }, /* 12 = chdir */
52 1.1 itohy { 1, s(struct linux_sys_time_args),
53 1.1 itohy linux_sys_time }, /* 13 = time */
54 1.1 itohy { 3, s(struct linux_sys_mknod_args),
55 1.1 itohy linux_sys_mknod }, /* 14 = mknod */
56 1.1 itohy { 2, s(struct linux_sys_chmod_args),
57 1.1 itohy linux_sys_chmod }, /* 15 = chmod */
58 1.1 itohy { 3, s(struct linux_sys_chown_args),
59 1.1 itohy linux_sys_chown }, /* 16 = chown */
60 1.1 itohy { 0, 0,
61 1.1 itohy sys_nosys }, /* 17 = obsolete break */
62 1.1 itohy { 0, 0,
63 1.1 itohy sys_nosys }, /* 18 = obsolete ostat */
64 1.1 itohy #if !defined(_KERNEL) || defined(COMPAT_43)
65 1.1 itohy { 3, s(struct compat_43_sys_lseek_args),
66 1.1 itohy compat_43_sys_lseek }, /* 19 = lseek */
67 1.1 itohy #else
68 1.1 itohy { 0, 0,
69 1.1 itohy sys_nosys }, /* 19 = unimplemented compat_43_sys_lseek */
70 1.1 itohy #endif
71 1.1 itohy { 0, 0,
72 1.1 itohy sys_getpid }, /* 20 = getpid */
73 1.1 itohy { 0, 0,
74 1.1 itohy sys_nosys }, /* 21 = unimplemented mount */
75 1.1 itohy { 0, 0,
76 1.1 itohy sys_nosys }, /* 22 = obsolete umount */
77 1.1 itohy { 1, s(struct sys_setuid_args),
78 1.1 itohy sys_setuid }, /* 23 = setuid */
79 1.1 itohy { 0, 0,
80 1.1 itohy sys_getuid }, /* 24 = getuid */
81 1.1 itohy { 0, 0,
82 1.1 itohy sys_nosys }, /* 25 = unimplemented stime */
83 1.1 itohy { 0, 0,
84 1.1 itohy sys_nosys }, /* 26 = unimplemented ptrace */
85 1.1 itohy { 1, s(struct linux_sys_alarm_args),
86 1.1 itohy linux_sys_alarm }, /* 27 = alarm */
87 1.1 itohy { 0, 0,
88 1.1 itohy sys_nosys }, /* 28 = obsolete ofstat */
89 1.1 itohy { 0, 0,
90 1.1 itohy linux_sys_pause }, /* 29 = pause */
91 1.1 itohy { 2, s(struct linux_sys_utime_args),
92 1.1 itohy linux_sys_utime }, /* 30 = utime */
93 1.1 itohy { 0, 0,
94 1.1 itohy sys_nosys }, /* 31 = obsolete stty */
95 1.1 itohy { 0, 0,
96 1.1 itohy sys_nosys }, /* 32 = obsolete gtty */
97 1.1 itohy { 2, s(struct linux_sys_access_args),
98 1.1 itohy linux_sys_access }, /* 33 = access */
99 1.1 itohy { 1, s(struct linux_sys_nice_args),
100 1.1 itohy linux_sys_nice }, /* 34 = nice */
101 1.1 itohy { 0, 0,
102 1.1 itohy sys_nosys }, /* 35 = obsolete ftime */
103 1.1 itohy { 0, 0,
104 1.1 itohy sys_sync }, /* 36 = sync */
105 1.1 itohy { 2, s(struct linux_sys_kill_args),
106 1.1 itohy linux_sys_kill }, /* 37 = kill */
107 1.1 itohy { 2, s(struct linux_sys_rename_args),
108 1.1 itohy linux_sys_rename }, /* 38 = rename */
109 1.1 itohy { 2, s(struct linux_sys_mkdir_args),
110 1.1 itohy linux_sys_mkdir }, /* 39 = mkdir */
111 1.1 itohy { 1, s(struct linux_sys_rmdir_args),
112 1.1 itohy linux_sys_rmdir }, /* 40 = rmdir */
113 1.1 itohy { 1, s(struct sys_dup_args),
114 1.1 itohy sys_dup }, /* 41 = dup */
115 1.1 itohy { 1, s(struct linux_sys_pipe_args),
116 1.1 itohy linux_sys_pipe }, /* 42 = pipe */
117 1.1 itohy { 1, s(struct linux_sys_times_args),
118 1.1 itohy linux_sys_times }, /* 43 = times */
119 1.1 itohy { 0, 0,
120 1.1 itohy sys_nosys }, /* 44 = obsolete prof */
121 1.1 itohy { 1, s(struct linux_sys_brk_args),
122 1.1 itohy linux_sys_brk }, /* 45 = brk */
123 1.1 itohy { 1, s(struct sys_setgid_args),
124 1.1 itohy sys_setgid }, /* 46 = setgid */
125 1.1 itohy { 0, 0,
126 1.1 itohy sys_getgid }, /* 47 = getgid */
127 1.1 itohy { 2, s(struct linux_sys_signal_args),
128 1.1 itohy linux_sys_signal }, /* 48 = signal */
129 1.1 itohy { 0, 0,
130 1.1 itohy sys_geteuid }, /* 49 = geteuid */
131 1.1 itohy { 0, 0,
132 1.1 itohy sys_getegid }, /* 50 = getegid */
133 1.1 itohy { 1, s(struct sys_acct_args),
134 1.1 itohy sys_acct }, /* 51 = acct */
135 1.1 itohy { 0, 0,
136 1.1 itohy sys_nosys }, /* 52 = unimplemented umount */
137 1.1 itohy { 0, 0,
138 1.1 itohy sys_nosys }, /* 53 = obsolete lock */
139 1.1 itohy { 3, s(struct linux_sys_ioctl_args),
140 1.1 itohy linux_sys_ioctl }, /* 54 = ioctl */
141 1.1 itohy { 3, s(struct linux_sys_fcntl_args),
142 1.1 itohy linux_sys_fcntl }, /* 55 = fcntl */
143 1.1 itohy { 0, 0,
144 1.1 itohy sys_nosys }, /* 56 = obsolete mpx */
145 1.1 itohy { 2, s(struct sys_setpgid_args),
146 1.1 itohy sys_setpgid }, /* 57 = setpgid */
147 1.1 itohy { 0, 0,
148 1.1 itohy sys_nosys }, /* 58 = obsolete ulimit */
149 1.1 itohy { 0, 0,
150 1.1 itohy sys_nosys }, /* 59 = unimplemented oldolduname */
151 1.1 itohy { 1, s(struct sys_umask_args),
152 1.1 itohy sys_umask }, /* 60 = umask */
153 1.1 itohy { 1, s(struct sys_chroot_args),
154 1.1 itohy sys_chroot }, /* 61 = chroot */
155 1.1 itohy { 0, 0,
156 1.1 itohy sys_nosys }, /* 62 = unimplemented ustat */
157 1.1 itohy { 2, s(struct sys_dup2_args),
158 1.1 itohy sys_dup2 }, /* 63 = dup2 */
159 1.1 itohy { 0, 0,
160 1.1 itohy sys_getppid }, /* 64 = getppid */
161 1.1 itohy { 0, 0,
162 1.1 itohy sys_getpgrp }, /* 65 = getpgrp */
163 1.1 itohy { 0, 0,
164 1.1 itohy sys_setsid }, /* 66 = setsid */
165 1.1 itohy { 3, s(struct linux_sys_sigaction_args),
166 1.1 itohy linux_sys_sigaction }, /* 67 = sigaction */
167 1.1 itohy { 0, 0,
168 1.1 itohy linux_sys_siggetmask }, /* 68 = siggetmask */
169 1.1 itohy { 1, s(struct linux_sys_sigsetmask_args),
170 1.1 itohy linux_sys_sigsetmask }, /* 69 = sigsetmask */
171 1.1 itohy { 2, s(struct linux_sys_setreuid_args),
172 1.1 itohy linux_sys_setreuid }, /* 70 = setreuid */
173 1.1 itohy { 2, s(struct linux_sys_setregid_args),
174 1.1 itohy linux_sys_setregid }, /* 71 = setregid */
175 1.1 itohy { 3, s(struct linux_sys_sigsuspend_args),
176 1.1 itohy linux_sys_sigsuspend }, /* 72 = sigsuspend */
177 1.1 itohy { 1, s(struct linux_sys_sigpending_args),
178 1.1 itohy linux_sys_sigpending }, /* 73 = sigpending */
179 1.1 itohy #if !defined(_KERNEL) || defined(COMPAT_43)
180 1.1 itohy { 2, s(struct compat_43_sys_sethostname_args),
181 1.1 itohy compat_43_sys_sethostname }, /* 74 = sethostname */
182 1.1 itohy { 2, s(struct compat_43_sys_setrlimit_args),
183 1.1 itohy compat_43_sys_setrlimit }, /* 75 = setrlimit */
184 1.1 itohy { 2, s(struct compat_43_sys_getrlimit_args),
185 1.1 itohy compat_43_sys_getrlimit }, /* 76 = getrlimit */
186 1.1 itohy #else
187 1.1 itohy { 0, 0,
188 1.1 itohy sys_nosys }, /* 74 = unimplemented compat_43_sys_sethostname */
189 1.1 itohy { 0, 0,
190 1.1 itohy sys_nosys }, /* 75 = unimplemented compat_43_sys_setrlimit */
191 1.1 itohy { 0, 0,
192 1.1 itohy sys_nosys }, /* 76 = unimplemented compat_43_sys_getrlimit */
193 1.1 itohy #endif
194 1.1 itohy { 2, s(struct sys_getrusage_args),
195 1.1 itohy sys_getrusage }, /* 77 = getrusage */
196 1.1 itohy { 2, s(struct sys_gettimeofday_args),
197 1.1 itohy sys_gettimeofday }, /* 78 = gettimeofday */
198 1.1 itohy { 2, s(struct sys_settimeofday_args),
199 1.1 itohy sys_settimeofday }, /* 79 = settimeofday */
200 1.1 itohy { 2, s(struct sys_getgroups_args),
201 1.1 itohy sys_getgroups }, /* 80 = getgroups */
202 1.1 itohy { 2, s(struct sys_setgroups_args),
203 1.1 itohy sys_setgroups }, /* 81 = setgroups */
204 1.1 itohy { 1, s(struct linux_sys_oldselect_args),
205 1.1 itohy linux_sys_oldselect }, /* 82 = oldselect */
206 1.1 itohy { 2, s(struct linux_sys_symlink_args),
207 1.1 itohy linux_sys_symlink }, /* 83 = symlink */
208 1.1 itohy #if !defined(_KERNEL) || defined(COMPAT_43)
209 1.1 itohy { 2, s(struct compat_43_sys_lstat_args),
210 1.1 itohy compat_43_sys_lstat }, /* 84 = oolstat */
211 1.1 itohy #else
212 1.1 itohy { 0, 0,
213 1.1 itohy sys_nosys }, /* 84 = unimplemented compat_43_sys_lstat */
214 1.1 itohy #endif
215 1.1 itohy { 3, s(struct linux_sys_readlink_args),
216 1.1 itohy linux_sys_readlink }, /* 85 = readlink */
217 1.1 itohy { 1, s(struct linux_sys_uselib_args),
218 1.1 itohy linux_sys_uselib }, /* 86 = uselib */
219 1.1 itohy #if !defined(_KERNEL) || defined(COMPAT_12)
220 1.1 itohy { 1, s(struct compat_12_sys_swapon_args),
221 1.1 itohy compat_12_sys_swapon }, /* 87 = swapon */
222 1.1 itohy #else
223 1.1 itohy { 0, 0,
224 1.1 itohy sys_nosys }, /* 87 = unimplemented compat_12_sys_swapon */
225 1.1 itohy #endif
226 1.1 itohy { 1, s(struct sys_reboot_args),
227 1.1 itohy sys_reboot }, /* 88 = reboot */
228 1.1 itohy { 3, s(struct linux_sys_readdir_args),
229 1.1 itohy linux_sys_readdir }, /* 89 = readdir */
230 1.1 itohy { 1, s(struct linux_sys_old_mmap_args),
231 1.1 itohy linux_sys_old_mmap }, /* 90 = old_mmap */
232 1.1 itohy { 2, s(struct sys_munmap_args),
233 1.1 itohy sys_munmap }, /* 91 = munmap */
234 1.1 itohy { 2, s(struct linux_sys_truncate_args),
235 1.1 itohy linux_sys_truncate }, /* 92 = truncate */
236 1.1 itohy #if !defined(_KERNEL) || defined(COMPAT_43)
237 1.1 itohy { 2, s(struct compat_43_sys_ftruncate_args),
238 1.1 itohy compat_43_sys_ftruncate }, /* 93 = ftruncate */
239 1.1 itohy #else
240 1.1 itohy { 0, 0,
241 1.1 itohy sys_nosys }, /* 93 = unimplemented compat_43_sys_ftruncate */
242 1.1 itohy #endif
243 1.1 itohy { 2, s(struct sys_fchmod_args),
244 1.1 itohy sys_fchmod }, /* 94 = fchmod */
245 1.1 itohy { 3, s(struct linux_sys_fchown_args),
246 1.1 itohy linux_sys_fchown }, /* 95 = fchown */
247 1.1 itohy { 2, s(struct sys_getpriority_args),
248 1.1 itohy sys_getpriority }, /* 96 = getpriority */
249 1.1 itohy { 3, s(struct sys_setpriority_args),
250 1.1 itohy sys_setpriority }, /* 97 = setpriority */
251 1.1 itohy { 4, s(struct sys_profil_args),
252 1.1 itohy sys_profil }, /* 98 = profil */
253 1.1 itohy { 2, s(struct linux_sys_statfs_args),
254 1.1 itohy linux_sys_statfs }, /* 99 = statfs */
255 1.1 itohy { 2, s(struct linux_sys_fstatfs_args),
256 1.1 itohy linux_sys_fstatfs }, /* 100 = fstatfs */
257 1.1 itohy { 0, 0,
258 1.1 itohy sys_nosys }, /* 101 = unimplemented ioperm */
259 1.1 itohy { 2, s(struct linux_sys_socketcall_args),
260 1.1 itohy linux_sys_socketcall }, /* 102 = socketcall */
261 1.1 itohy { 0, 0,
262 1.1 itohy sys_nosys }, /* 103 = unimplemented syslog */
263 1.1 itohy { 3, s(struct sys_setitimer_args),
264 1.1 itohy sys_setitimer }, /* 104 = setitimer */
265 1.1 itohy { 2, s(struct sys_getitimer_args),
266 1.1 itohy sys_getitimer }, /* 105 = getitimer */
267 1.1 itohy { 2, s(struct linux_sys_stat_args),
268 1.1 itohy linux_sys_stat }, /* 106 = stat */
269 1.1 itohy { 2, s(struct linux_sys_lstat_args),
270 1.1 itohy linux_sys_lstat }, /* 107 = lstat */
271 1.1 itohy { 2, s(struct linux_sys_fstat_args),
272 1.1 itohy linux_sys_fstat }, /* 108 = fstat */
273 1.1 itohy { 0, 0,
274 1.1 itohy sys_nosys }, /* 109 = unimplemented olduname */
275 1.1 itohy { 0, 0,
276 1.1 itohy sys_nosys }, /* 110 = unimplemented iopl */
277 1.1 itohy { 0, 0,
278 1.1 itohy sys_nosys }, /* 111 = unimplemented vhangup */
279 1.1 itohy { 0, 0,
280 1.1 itohy sys_nosys }, /* 112 = unimplemented idle */
281 1.1 itohy { 0, 0,
282 1.1 itohy sys_nosys }, /* 113 = unimplemented vm86old */
283 1.1 itohy { 4, s(struct linux_sys_wait4_args),
284 1.1 itohy linux_sys_wait4 }, /* 114 = wait4 */
285 1.1 itohy { 0, 0,
286 1.1 itohy sys_nosys }, /* 115 = unimplemented swapoff */
287 1.1 itohy { 0, 0,
288 1.1 itohy sys_nosys }, /* 116 = unimplemented sysinfo */
289 1.1 itohy { 5, s(struct linux_sys_ipc_args),
290 1.1 itohy linux_sys_ipc }, /* 117 = ipc */
291 1.1 itohy { 1, s(struct sys_fsync_args),
292 1.1 itohy sys_fsync }, /* 118 = fsync */
293 1.1 itohy { 0, 0,
294 1.1 itohy linux_sys_sigreturn }, /* 119 = sigreturn */
295 1.1 itohy { 0, 0,
296 1.1 itohy sys_nosys }, /* 120 = unimplemented clone */
297 1.1 itohy #if !defined(_KERNEL) || defined(COMPAT_09)
298 1.1 itohy { 2, s(struct compat_09_sys_setdomainname_args),
299 1.1 itohy compat_09_sys_setdomainname }, /* 121 = setdomainname */
300 1.1 itohy #else
301 1.1 itohy { 0, 0,
302 1.1 itohy sys_nosys }, /* 121 = unimplemented compat_09_sys_setdomainname */
303 1.1 itohy #endif
304 1.1 itohy { 1, s(struct linux_sys_uname_args),
305 1.1 itohy linux_sys_uname }, /* 122 = uname */
306 1.1 itohy { 4, s(struct linux_sys_cacheflush_args),
307 1.1 itohy linux_sys_cacheflush }, /* 123 = cacheflush */
308 1.1 itohy { 0, 0,
309 1.1 itohy sys_nosys }, /* 124 = unimplemented adjtimex */
310 1.1 itohy { 3, s(struct sys_mprotect_args),
311 1.1 itohy sys_mprotect }, /* 125 = mprotect */
312 1.1 itohy { 3, s(struct linux_sys_sigprocmask_args),
313 1.1 itohy linux_sys_sigprocmask }, /* 126 = sigprocmask */
314 1.1 itohy { 0, 0,
315 1.1 itohy sys_nosys }, /* 127 = unimplemented create_module */
316 1.1 itohy { 0, 0,
317 1.1 itohy sys_nosys }, /* 128 = unimplemented init_module */
318 1.1 itohy { 0, 0,
319 1.1 itohy sys_nosys }, /* 129 = unimplemented delete_module */
320 1.1 itohy { 0, 0,
321 1.1 itohy sys_nosys }, /* 130 = unimplemented get_kernel_syms */
322 1.1 itohy { 0, 0,
323 1.1 itohy sys_nosys }, /* 131 = unimplemented quotactl */
324 1.1 itohy { 1, s(struct linux_sys_getpgid_args),
325 1.1 itohy linux_sys_getpgid }, /* 132 = getpgid */
326 1.1 itohy { 1, s(struct sys_fchdir_args),
327 1.1 itohy sys_fchdir }, /* 133 = fchdir */
328 1.1 itohy { 0, 0,
329 1.1 itohy sys_nosys }, /* 134 = unimplemented bdflush */
330 1.1 itohy { 0, 0,
331 1.1 itohy sys_nosys }, /* 135 = unimplemented sysfs */
332 1.1 itohy { 1, s(struct linux_sys_personality_args),
333 1.1 itohy linux_sys_personality }, /* 136 = personality */
334 1.1 itohy { 0, 0,
335 1.1 itohy sys_nosys }, /* 137 = unimplemented afs_syscall */
336 1.1 itohy { 0, 0,
337 1.1 itohy sys_nosys }, /* 138 = unimplemented setfsuid */
338 1.1 itohy { 0, 0,
339 1.1 itohy sys_nosys }, /* 139 = unimplemented getfsuid */
340 1.1 itohy { 5, s(struct linux_sys_llseek_args),
341 1.1 itohy linux_sys_llseek }, /* 140 = llseek */
342 1.1 itohy { 3, s(struct linux_sys_getdents_args),
343 1.1 itohy linux_sys_getdents }, /* 141 = getdents */
344 1.1 itohy { 5, s(struct linux_sys_select_args),
345 1.1 itohy linux_sys_select }, /* 142 = select */
346 1.1 itohy { 2, s(struct sys_flock_args),
347 1.1 itohy sys_flock }, /* 143 = flock */
348 1.1 itohy { 3, s(struct linux_sys_msync_args),
349 1.1 itohy linux_sys_msync }, /* 144 = msync */
350 1.1 itohy { 3, s(struct sys_readv_args),
351 1.1 itohy sys_readv }, /* 145 = readv */
352 1.1 itohy { 3, s(struct sys_writev_args),
353 1.1 itohy sys_writev }, /* 146 = writev */
354 1.1 itohy { 1, s(struct sys_getsid_args),
355 1.1 itohy sys_getsid }, /* 147 = getsid */
356 1.1 itohy { 1, s(struct linux_sys_fdatasync_args),
357 1.1 itohy linux_sys_fdatasync }, /* 148 = fdatasync */
358 1.1 itohy { 1, s(struct linux_sys___sysctl_args),
359 1.1 itohy linux_sys___sysctl }, /* 149 = __sysctl */
360 1.1 itohy { 2, s(struct sys_mlock_args),
361 1.1 itohy sys_mlock }, /* 150 = mlock */
362 1.1 itohy { 2, s(struct sys_munlock_args),
363 1.1 itohy sys_munlock }, /* 151 = munlock */
364 1.1 itohy { 0, 0,
365 1.1 itohy sys_nosys }, /* 152 = unimplemented mlockall */
366 1.1 itohy { 0, 0,
367 1.1 itohy sys_nosys }, /* 153 = unimplemented munlockall */
368 1.1 itohy { 0, 0,
369 1.1 itohy sys_nosys }, /* 154 = unimplemented sched_setparam */
370 1.1 itohy { 0, 0,
371 1.1 itohy sys_nosys }, /* 155 = unimplemented sched_getparam */
372 1.1 itohy { 0, 0,
373 1.1 itohy sys_nosys }, /* 156 = unimplemented sched_setscheduler */
374 1.1 itohy { 0, 0,
375 1.1 itohy sys_nosys }, /* 157 = unimplemented sched_getscheduler */
376 1.1 itohy { 0, 0,
377 1.1 itohy sys_nosys }, /* 158 = unimplemented sched_yield */
378 1.1 itohy { 0, 0,
379 1.1 itohy sys_nosys }, /* 159 = unimplemented sched_get_priority_max */
380 1.1 itohy { 0, 0,
381 1.1 itohy sys_nosys }, /* 160 = unimplemented sched_get_priority_min */
382 1.1 itohy { 0, 0,
383 1.1 itohy sys_nosys }, /* 161 = unimplemented sched_rr_get_interval */
384 1.1 itohy { 2, s(struct sys_nanosleep_args),
385 1.1 itohy sys_nanosleep }, /* 162 = nanosleep */
386 1.1 itohy { 4, s(struct linux_sys_mremap_args),
387 1.1 itohy linux_sys_mremap }, /* 163 = mremap */
388 1.1 itohy { 0, 0,
389 1.1 itohy sys_nosys }, /* 164 = unimplemented setresuid */
390 1.1 itohy { 0, 0,
391 1.1 itohy sys_nosys }, /* 165 = unimplemented getresuid */
392 1.1 itohy { 0, 0,
393 1.1 itohy sys_nosys }, /* 166 = unimplemented vm86 */
394 1.1 itohy { 0, 0,
395 1.1 itohy sys_nosys }, /* 167 = unimplemented query_module */
396 1.1 itohy { 0, 0,
397 1.1 itohy sys_nosys }, /* 168 = unimplemented poll */
398 1.1 itohy { 0, 0,
399 1.1 itohy sys_nosys }, /* 169 = unimplemented nfsservctl */
400 1.1 itohy { 0, 0,
401 1.1 itohy sys_nosys }, /* 170 = unimplemented setresgid */
402 1.1 itohy { 0, 0,
403 1.1 itohy sys_nosys }, /* 171 = unimplemented setresgid */
404 1.1 itohy { 0, 0,
405 1.1 itohy sys_nosys }, /* 172 = unimplemented prctl */
406 1.1 itohy { 0, 0,
407 1.1 itohy linux_sys_rt_sigreturn }, /* 173 = rt_sigreturn */
408 1.1 itohy { 4, s(struct linux_sys_rt_sigaction_args),
409 1.1 itohy linux_sys_rt_sigaction }, /* 174 = rt_sigaction */
410 1.1 itohy { 4, s(struct linux_sys_rt_sigprocmask_args),
411 1.1 itohy linux_sys_rt_sigprocmask }, /* 175 = rt_sigprocmask */
412 1.1 itohy { 2, s(struct linux_sys_rt_sigpending_args),
413 1.1 itohy linux_sys_rt_sigpending }, /* 176 = rt_sigpending */
414 1.1 itohy { 0, 0,
415 1.1 itohy sys_nosys }, /* 177 = unimplemented rt_sigtimedwait */
416 1.1 itohy { 3, s(struct linux_sys_rt_queueinfo_args),
417 1.1 itohy linux_sys_rt_queueinfo }, /* 178 = rt_queueinfo */
418 1.1 itohy { 2, s(struct linux_sys_rt_sigsuspend_args),
419 1.1 itohy linux_sys_rt_sigsuspend }, /* 179 = rt_sigsuspend */
420 1.1 itohy { 0, 0,
421 1.1 itohy sys_nosys }, /* 180 = unimplemented pread */
422 1.1 itohy { 0, 0,
423 1.1 itohy sys_nosys }, /* 181 = unimplemented pwrite */
424 1.1 itohy { 3, s(struct linux_sys_lchown_args),
425 1.1 itohy linux_sys_lchown }, /* 182 = lchown */
426 1.1 itohy { 0, 0,
427 1.1 itohy sys_nosys }, /* 183 = unimplemented getcwd */
428 1.1 itohy { 0, 0,
429 1.1 itohy sys_nosys }, /* 184 = unimplemented capget */
430 1.1 itohy { 0, 0,
431 1.1 itohy sys_nosys }, /* 185 = unimplemented capset */
432 1.1 itohy { 0, 0,
433 1.1 itohy sys_nosys }, /* 186 = unimplemented sigaltstack */
434 1.1 itohy };
435 1.1 itohy
436