aoutm68k_syscalls.c revision 1.52 1 1.52 christos /* $NetBSD: aoutm68k_syscalls.c,v 1.52 2019/06/18 01:39:09 christos Exp $ */
2 1.1 scw
3 1.1 scw /*
4 1.1 scw * System call names.
5 1.1 scw *
6 1.1 scw * DO NOT EDIT-- this file is automatically generated.
7 1.52 christos * created from NetBSD: syscalls.master,v 1.44 2019/06/18 01:39:01 christos Exp
8 1.1 scw */
9 1.8 lukem
10 1.8 lukem #include <sys/cdefs.h>
11 1.52 christos __KERNEL_RCSID(0, "$NetBSD: aoutm68k_syscalls.c,v 1.52 2019/06/18 01:39:09 christos Exp $");
12 1.1 scw
13 1.7 mrg #if defined(_KERNEL_OPT)
14 1.7 mrg #if defined(_KERNEL_OPT)
15 1.1 scw #include "opt_ktrace.h"
16 1.1 scw #include "opt_nfsserver.h"
17 1.1 scw #include "opt_ntp.h"
18 1.1 scw #include "opt_compat_netbsd.h"
19 1.1 scw #include "opt_sysv.h"
20 1.1 scw #include "opt_compat_43.h"
21 1.52 christos #include "opt_quota.h"
22 1.3 mycroft #endif
23 1.1 scw #include <sys/param.h>
24 1.1 scw #include <sys/systm.h>
25 1.1 scw #include <sys/signal.h>
26 1.1 scw #include <sys/mount.h>
27 1.30 he #include <sys/sched.h>
28 1.1 scw #include <sys/syscallargs.h>
29 1.1 scw #include <compat/aoutm68k/aoutm68k_syscallargs.h>
30 1.42 christos #else /* _KERNEL_OPT */
31 1.42 christos #include <sys/null.h>
32 1.7 mrg #endif /* _KERNEL_OPT */
33 1.1 scw
34 1.3 mycroft const char *const aoutm68k_syscallnames[] = {
35 1.26 dsl /* 0 */ "syscall",
36 1.26 dsl /* 1 */ "exit",
37 1.26 dsl /* 2 */ "fork",
38 1.26 dsl /* 3 */ "read",
39 1.26 dsl /* 4 */ "write",
40 1.26 dsl /* 5 */ "open",
41 1.26 dsl /* 6 */ "close",
42 1.26 dsl /* 7 */ "wait4",
43 1.26 dsl #if defined(COMPAT_43) || !defined(_KERNEL)
44 1.26 dsl /* 8 */ "ocreat",
45 1.26 dsl #else
46 1.26 dsl /* 8 */ "#8 (excluded compat_43_sys_creat)",
47 1.26 dsl #endif
48 1.26 dsl /* 9 */ "link",
49 1.26 dsl /* 10 */ "unlink",
50 1.26 dsl /* 11 */ "#11 (obsolete execv)",
51 1.26 dsl /* 12 */ "chdir",
52 1.26 dsl /* 13 */ "fchdir",
53 1.26 dsl /* 14 */ "mknod",
54 1.26 dsl /* 15 */ "chmod",
55 1.26 dsl /* 16 */ "chown",
56 1.26 dsl /* 17 */ "break",
57 1.17 tsutsui #if defined(COMPAT_20) || !defined(_KERNEL)
58 1.26 dsl /* 18 */ "getfsstat",
59 1.14 matt #else
60 1.26 dsl /* 18 */ "#18 (excluded compat_20_sys_getfsstat)",
61 1.14 matt #endif
62 1.17 tsutsui #if defined(COMPAT_43) || !defined(_KERNEL)
63 1.26 dsl /* 19 */ "olseek",
64 1.1 scw #else
65 1.26 dsl /* 19 */ "#19 (excluded compat_43_sys_lseek)",
66 1.1 scw #endif
67 1.26 dsl /* 20 */ "getpid",
68 1.26 dsl /* 21 */ "mount",
69 1.26 dsl /* 22 */ "unmount",
70 1.26 dsl /* 23 */ "setuid",
71 1.26 dsl /* 24 */ "getuid",
72 1.26 dsl /* 25 */ "geteuid",
73 1.26 dsl /* 26 */ "ptrace",
74 1.26 dsl /* 27 */ "recvmsg",
75 1.26 dsl /* 28 */ "sendmsg",
76 1.26 dsl /* 29 */ "recvfrom",
77 1.26 dsl /* 30 */ "accept",
78 1.26 dsl /* 31 */ "getpeername",
79 1.26 dsl /* 32 */ "getsockname",
80 1.26 dsl /* 33 */ "access",
81 1.26 dsl /* 34 */ "chflags",
82 1.26 dsl /* 35 */ "fchflags",
83 1.26 dsl /* 36 */ "sync",
84 1.26 dsl /* 37 */ "kill",
85 1.17 tsutsui #if defined(COMPAT_43) || !defined(_KERNEL)
86 1.26 dsl /* 38 */ "stat43",
87 1.1 scw #else
88 1.26 dsl /* 38 */ "#38 (excluded aoutm68k_compat_43_sys_stat)",
89 1.1 scw #endif
90 1.26 dsl /* 39 */ "getppid",
91 1.17 tsutsui #if defined(COMPAT_43) || !defined(_KERNEL)
92 1.26 dsl /* 40 */ "lstat43",
93 1.1 scw #else
94 1.26 dsl /* 40 */ "#40 (excluded aoutm68k_compat_43_sys_lstat)",
95 1.1 scw #endif
96 1.26 dsl /* 41 */ "dup",
97 1.26 dsl /* 42 */ "pipe",
98 1.26 dsl /* 43 */ "getegid",
99 1.26 dsl /* 44 */ "profil",
100 1.1 scw #if defined(KTRACE) || !defined(_KERNEL)
101 1.26 dsl /* 45 */ "ktrace",
102 1.1 scw #else
103 1.26 dsl /* 45 */ "#45 (excluded ktrace)",
104 1.1 scw #endif
105 1.17 tsutsui #if defined(COMPAT_13) || !defined(_KERNEL)
106 1.26 dsl /* 46 */ "sigaction13",
107 1.1 scw #else
108 1.26 dsl /* 46 */ "#46 (excluded compat_13_sys_sigaction)",
109 1.1 scw #endif
110 1.26 dsl /* 47 */ "getgid",
111 1.17 tsutsui #if defined(COMPAT_13) || !defined(_KERNEL)
112 1.26 dsl /* 48 */ "sigprocmask13",
113 1.1 scw #else
114 1.26 dsl /* 48 */ "#48 (excluded compat_13_sys_sigprocmask)",
115 1.1 scw #endif
116 1.26 dsl /* 49 */ "__getlogin",
117 1.26 dsl /* 50 */ "__setlogin",
118 1.26 dsl /* 51 */ "acct",
119 1.17 tsutsui #if defined(COMPAT_13) || !defined(_KERNEL)
120 1.26 dsl /* 52 */ "sigpending13",
121 1.26 dsl /* 53 */ "sigaltstack13",
122 1.1 scw #else
123 1.26 dsl /* 52 */ "#52 (excluded compat_13_sys_sigpending)",
124 1.26 dsl /* 53 */ "#53 (excluded compat_13_sys_sigaltstack)",
125 1.1 scw #endif
126 1.26 dsl /* 54 */ "ioctl",
127 1.17 tsutsui #if defined(COMPAT_12) || !defined(_KERNEL)
128 1.26 dsl /* 55 */ "oreboot",
129 1.1 scw #else
130 1.26 dsl /* 55 */ "#55 (excluded compat_12_sys_reboot)",
131 1.1 scw #endif
132 1.26 dsl /* 56 */ "revoke",
133 1.26 dsl /* 57 */ "symlink",
134 1.26 dsl /* 58 */ "readlink",
135 1.26 dsl /* 59 */ "execve",
136 1.26 dsl /* 60 */ "umask",
137 1.26 dsl /* 61 */ "chroot",
138 1.26 dsl #if defined(COMPAT_43) || !defined(_KERNEL)
139 1.26 dsl /* 62 */ "fstat43",
140 1.26 dsl /* 63 */ "ogetkerninfo",
141 1.26 dsl /* 64 */ "ogetpagesize",
142 1.26 dsl #else
143 1.26 dsl /* 62 */ "#62 (excluded aoutm68k_compat_43_sys_fstat)",
144 1.26 dsl /* 63 */ "#63 (excluded compat_43_sys_getkerninfo)",
145 1.26 dsl /* 64 */ "#64 (excluded compat_43_sys_getpagesize)",
146 1.1 scw #endif
147 1.17 tsutsui #if defined(COMPAT_12) || !defined(_KERNEL)
148 1.26 dsl /* 65 */ "msync",
149 1.1 scw #else
150 1.26 dsl /* 65 */ "#65 (excluded compat_12_sys_msync)",
151 1.1 scw #endif
152 1.26 dsl /* 66 */ "vfork",
153 1.26 dsl /* 67 */ "#67 (obsolete vread)",
154 1.26 dsl /* 68 */ "#68 (obsolete vwrite)",
155 1.47 kamil /* 69 */ "#69 (obsolete sbrk)",
156 1.46 kamil /* 70 */ "#70 (obsolete sstk)",
157 1.26 dsl #if defined(COMPAT_43) || !defined(_KERNEL)
158 1.26 dsl /* 71 */ "ommap",
159 1.26 dsl #else
160 1.26 dsl /* 71 */ "#71 (excluded compat_43_sys_mmap)",
161 1.26 dsl #endif
162 1.49 kamil /* 72 */ "vadvise",
163 1.26 dsl /* 73 */ "munmap",
164 1.26 dsl /* 74 */ "mprotect",
165 1.26 dsl /* 75 */ "madvise",
166 1.26 dsl /* 76 */ "#76 (obsolete vhangup)",
167 1.26 dsl /* 77 */ "#77 (obsolete vlimit)",
168 1.26 dsl /* 78 */ "mincore",
169 1.26 dsl /* 79 */ "getgroups",
170 1.26 dsl /* 80 */ "setgroups",
171 1.26 dsl /* 81 */ "getpgrp",
172 1.26 dsl /* 82 */ "setpgid",
173 1.26 dsl /* 83 */ "setitimer",
174 1.17 tsutsui #if defined(COMPAT_43) || !defined(_KERNEL)
175 1.26 dsl /* 84 */ "owait",
176 1.1 scw #else
177 1.26 dsl /* 84 */ "#84 (excluded compat_43_sys_wait)",
178 1.1 scw #endif
179 1.17 tsutsui #if defined(COMPAT_12) || !defined(_KERNEL)
180 1.26 dsl /* 85 */ "oswapon",
181 1.1 scw #else
182 1.26 dsl /* 85 */ "#85 (excluded compat_12_sys_swapon)",
183 1.1 scw #endif
184 1.26 dsl /* 86 */ "getitimer",
185 1.17 tsutsui #if defined(COMPAT_43) || !defined(_KERNEL)
186 1.26 dsl /* 87 */ "ogethostname",
187 1.26 dsl /* 88 */ "osethostname",
188 1.26 dsl /* 89 */ "ogetdtablesize",
189 1.1 scw #else
190 1.26 dsl /* 87 */ "#87 (excluded compat_43_sys_gethostname)",
191 1.26 dsl /* 88 */ "#88 (excluded compat_43_sys_sethostname)",
192 1.26 dsl /* 89 */ "#89 (excluded compat_43_sys_getdtablesize)",
193 1.1 scw #endif
194 1.26 dsl /* 90 */ "dup2",
195 1.26 dsl /* 91 */ "#91 (unimplemented getdopt)",
196 1.26 dsl /* 92 */ "fcntl",
197 1.26 dsl /* 93 */ "select",
198 1.26 dsl /* 94 */ "#94 (unimplemented setdopt)",
199 1.26 dsl /* 95 */ "fsync",
200 1.26 dsl /* 96 */ "setpriority",
201 1.51 pgoyette #if defined(COMPAT_30) || !defined(_KERNEL)
202 1.26 dsl /* 97 */ "socket",
203 1.51 pgoyette #else
204 1.51 pgoyette /* 97 */ "#97 (excluded compat_30_sys_socket)",
205 1.51 pgoyette #endif
206 1.26 dsl /* 98 */ "connect",
207 1.17 tsutsui #if defined(COMPAT_43) || !defined(_KERNEL)
208 1.26 dsl /* 99 */ "oaccept",
209 1.1 scw #else
210 1.26 dsl /* 99 */ "#99 (excluded compat_43_sys_accept)",
211 1.1 scw #endif
212 1.26 dsl /* 100 */ "getpriority",
213 1.17 tsutsui #if defined(COMPAT_43) || !defined(_KERNEL)
214 1.26 dsl /* 101 */ "osend",
215 1.26 dsl /* 102 */ "orecv",
216 1.1 scw #else
217 1.26 dsl /* 101 */ "#101 (excluded compat_43_sys_send)",
218 1.26 dsl /* 102 */ "#102 (excluded compat_43_sys_recv)",
219 1.1 scw #endif
220 1.17 tsutsui #if defined(COMPAT_13) || !defined(_KERNEL)
221 1.26 dsl /* 103 */ "sigreturn13",
222 1.1 scw #else
223 1.26 dsl /* 103 */ "#103 (excluded compat_13_sys_sigreturn)",
224 1.1 scw #endif
225 1.26 dsl /* 104 */ "bind",
226 1.26 dsl /* 105 */ "setsockopt",
227 1.26 dsl /* 106 */ "listen",
228 1.26 dsl /* 107 */ "#107 (obsolete vtimes)",
229 1.26 dsl #if defined(COMPAT_43) || !defined(_KERNEL)
230 1.26 dsl /* 108 */ "osigvec",
231 1.26 dsl /* 109 */ "osigblock",
232 1.26 dsl /* 110 */ "osigsetmask",
233 1.26 dsl #else
234 1.26 dsl /* 108 */ "#108 (excluded compat_43_sys_sigvec)",
235 1.26 dsl /* 109 */ "#109 (excluded compat_43_sys_sigblock)",
236 1.26 dsl /* 110 */ "#110 (excluded compat_43_sys_sigsetmask)",
237 1.1 scw #endif
238 1.17 tsutsui #if defined(COMPAT_13) || !defined(_KERNEL)
239 1.26 dsl /* 111 */ "sigsuspend13",
240 1.1 scw #else
241 1.26 dsl /* 111 */ "#111 (excluded compat_13_sys_sigsuspend)",
242 1.1 scw #endif
243 1.17 tsutsui #if defined(COMPAT_43) || !defined(_KERNEL)
244 1.26 dsl /* 112 */ "osigstack",
245 1.26 dsl /* 113 */ "orecvmsg",
246 1.26 dsl /* 114 */ "osendmsg",
247 1.26 dsl #else
248 1.26 dsl /* 112 */ "#112 (excluded compat_43_sys_sigstack)",
249 1.26 dsl /* 113 */ "#113 (excluded compat_43_sys_recvmesg)",
250 1.26 dsl /* 114 */ "#114 (excluded compat_43_sys_sendmesg)",
251 1.26 dsl #endif
252 1.26 dsl /* 115 */ "#115 (obsolete vtrace)",
253 1.26 dsl /* 116 */ "gettimeofday",
254 1.26 dsl /* 117 */ "getrusage",
255 1.26 dsl /* 118 */ "getsockopt",
256 1.26 dsl /* 119 */ "#119 (obsolete resuba)",
257 1.26 dsl /* 120 */ "readv",
258 1.26 dsl /* 121 */ "writev",
259 1.26 dsl /* 122 */ "settimeofday",
260 1.26 dsl /* 123 */ "fchown",
261 1.26 dsl /* 124 */ "fchmod",
262 1.26 dsl #if defined(COMPAT_43) || !defined(_KERNEL)
263 1.26 dsl /* 125 */ "orecvfrom",
264 1.26 dsl #else
265 1.26 dsl /* 125 */ "#125 (excluded compat_43_sys_recvfrom)",
266 1.26 dsl #endif
267 1.26 dsl /* 126 */ "setreuid",
268 1.26 dsl /* 127 */ "setregid",
269 1.26 dsl /* 128 */ "rename",
270 1.26 dsl #if defined(COMPAT_43) || !defined(_KERNEL)
271 1.26 dsl /* 129 */ "otruncate",
272 1.26 dsl /* 130 */ "oftruncate",
273 1.26 dsl #else
274 1.26 dsl /* 129 */ "#129 (excluded compat_43_sys_truncate)",
275 1.26 dsl /* 130 */ "#130 (excluded compat_43_sys_ftruncate)",
276 1.26 dsl #endif
277 1.26 dsl /* 131 */ "flock",
278 1.26 dsl /* 132 */ "mkfifo",
279 1.26 dsl /* 133 */ "sendto",
280 1.26 dsl /* 134 */ "shutdown",
281 1.26 dsl /* 135 */ "socketpair",
282 1.26 dsl /* 136 */ "mkdir",
283 1.26 dsl /* 137 */ "rmdir",
284 1.26 dsl /* 138 */ "utimes",
285 1.26 dsl /* 139 */ "#139 (obsolete 4.2 sigreturn)",
286 1.26 dsl /* 140 */ "adjtime",
287 1.26 dsl #if defined(COMPAT_43) || !defined(_KERNEL)
288 1.26 dsl /* 141 */ "ogetpeername",
289 1.26 dsl /* 142 */ "ogethostid",
290 1.26 dsl /* 143 */ "osethostid",
291 1.26 dsl /* 144 */ "ogetrlimit",
292 1.26 dsl /* 145 */ "osetrlimit",
293 1.26 dsl /* 146 */ "okillpg",
294 1.26 dsl #else
295 1.26 dsl /* 141 */ "#141 (excluded compat_43_sys_getpeername)",
296 1.26 dsl /* 142 */ "#142 (excluded compat_43_sys_gethostid)",
297 1.26 dsl /* 143 */ "#143 (excluded compat_43_sys_sethostid)",
298 1.26 dsl /* 144 */ "#144 (excluded compat_43_sys_getrlimit)",
299 1.26 dsl /* 145 */ "#145 (excluded compat_43_sys_setrlimit)",
300 1.26 dsl /* 146 */ "#146 (excluded compat_43_sys_killpg)",
301 1.26 dsl #endif
302 1.26 dsl /* 147 */ "setsid",
303 1.52 christos #if defined(QUOTA) || !defined(_KERNEL_OPT)
304 1.26 dsl /* 148 */ "quotactl",
305 1.52 christos #else
306 1.52 christos /* 148 */ "#148 (excluded compat_50_sys_quotactl)",
307 1.52 christos #endif
308 1.52 christos #if (defined(QUOTA) && defined(COMPAT_43)) || !defined(_KERNEL_OPT)
309 1.26 dsl /* 149 */ "oquota",
310 1.52 christos #else
311 1.52 christos /* 149 */ "#149 (excluded compat_43_sys_quota)",
312 1.52 christos #endif
313 1.52 christos #if defined(COMPAT_43) || !defined(_KERNEL_OPT)
314 1.26 dsl /* 150 */ "ogetsockname",
315 1.26 dsl #else
316 1.26 dsl /* 150 */ "#150 (excluded compat_43_sys_getsockname)",
317 1.26 dsl #endif
318 1.26 dsl /* 151 */ "#151 (unimplemented)",
319 1.26 dsl /* 152 */ "#152 (unimplemented)",
320 1.26 dsl /* 153 */ "#153 (unimplemented)",
321 1.26 dsl /* 154 */ "#154 (unimplemented)",
322 1.26 dsl /* 155 */ "#155 (excluded nfssvc)",
323 1.17 tsutsui #if defined(COMPAT_43) || !defined(_KERNEL)
324 1.26 dsl /* 156 */ "ogetdirentries",
325 1.1 scw #else
326 1.26 dsl /* 156 */ "#156 (excluded compat_43_sys_getdirentries)",
327 1.1 scw #endif
328 1.17 tsutsui #if defined(COMPAT_20) || !defined(_KERNEL)
329 1.26 dsl /* 157 */ "statfs",
330 1.14 matt #else
331 1.26 dsl /* 157 */ "#157 (excluded compat_20_sys_statfs)",
332 1.14 matt #endif
333 1.17 tsutsui #if defined(COMPAT_20) || !defined(_KERNEL)
334 1.26 dsl /* 158 */ "fstatfs",
335 1.14 matt #else
336 1.26 dsl /* 158 */ "#158 (excluded compat_20_sys_statfs)",
337 1.14 matt #endif
338 1.26 dsl /* 159 */ "#159 (unimplemented)",
339 1.26 dsl /* 160 */ "#160 (unimplemented)",
340 1.51 pgoyette #if defined(COMPAT_30) || !defined(_KERNEL)
341 1.26 dsl /* 161 */ "getfh",
342 1.51 pgoyette #else
343 1.51 pgoyette /* 161 */ "#161 (excluded compat_30_sys_getfh)",
344 1.51 pgoyette #endif
345 1.17 tsutsui #if defined(COMPAT_09) || !defined(_KERNEL)
346 1.26 dsl /* 162 */ "ogetdomainname",
347 1.26 dsl /* 163 */ "osetdomainname",
348 1.26 dsl /* 164 */ "ouname",
349 1.26 dsl #else
350 1.26 dsl /* 162 */ "#162 (excluded compat_09_sys_getdomainname)",
351 1.26 dsl /* 163 */ "#163 (excluded compat_09_sys_setdomainname)",
352 1.26 dsl /* 164 */ "#164 (excluded compat_09_sys_uname)",
353 1.26 dsl #endif
354 1.26 dsl /* 165 */ "sysarch",
355 1.26 dsl /* 166 */ "#166 (unimplemented)",
356 1.26 dsl /* 167 */ "#167 (unimplemented)",
357 1.26 dsl /* 168 */ "#168 (unimplemented)",
358 1.9 eeh #if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
359 1.26 dsl /* 169 */ "osemsys",
360 1.1 scw #else
361 1.26 dsl /* 169 */ "#169 (excluded 1.0 semsys)",
362 1.1 scw #endif
363 1.9 eeh #if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
364 1.26 dsl /* 170 */ "omsgsys",
365 1.1 scw #else
366 1.26 dsl /* 170 */ "#170 (excluded 1.0 msgsys)",
367 1.1 scw #endif
368 1.9 eeh #if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
369 1.26 dsl /* 171 */ "oshmsys",
370 1.1 scw #else
371 1.26 dsl /* 171 */ "#171 (excluded 1.0 shmsys)",
372 1.1 scw #endif
373 1.26 dsl /* 172 */ "#172 (unimplemented)",
374 1.26 dsl /* 173 */ "pread",
375 1.26 dsl /* 174 */ "pwrite",
376 1.34 pooka /* 175 */ "#175 (unimplemented sys_ntp_gettime)",
377 1.1 scw #if defined(NTP) || !defined(_KERNEL)
378 1.26 dsl /* 176 */ "ntp_adjtime",
379 1.1 scw #else
380 1.26 dsl /* 176 */ "#176 (excluded ntp_adjtime)",
381 1.1 scw #endif
382 1.26 dsl /* 177 */ "#177 (unimplemented)",
383 1.26 dsl /* 178 */ "#178 (unimplemented)",
384 1.26 dsl /* 179 */ "#179 (unimplemented)",
385 1.26 dsl /* 180 */ "#180 (unimplemented)",
386 1.26 dsl /* 181 */ "setgid",
387 1.26 dsl /* 182 */ "setegid",
388 1.26 dsl /* 183 */ "seteuid",
389 1.26 dsl /* 184 */ "#184 (excluded lfs_bmapv)",
390 1.26 dsl /* 185 */ "#185 (excluded lfs_markv)",
391 1.26 dsl /* 186 */ "#186 (excluded lfs_segclean)",
392 1.26 dsl /* 187 */ "#187 (excluded lfs_segwait)",
393 1.17 tsutsui #if defined(COMPAT_12) || !defined(_KERNEL)
394 1.26 dsl /* 188 */ "stat12",
395 1.26 dsl /* 189 */ "fstat12",
396 1.26 dsl /* 190 */ "lstat12",
397 1.26 dsl #else
398 1.26 dsl /* 188 */ "#188 (excluded aoutm68k_compat_12_sys_stat)",
399 1.26 dsl /* 189 */ "#189 (excluded aoutm68k_compat_12_sys_fstat)",
400 1.26 dsl /* 190 */ "#190 (excluded aoutm68k_compat_12_sys_lstat)",
401 1.26 dsl #endif
402 1.26 dsl /* 191 */ "pathconf",
403 1.26 dsl /* 192 */ "fpathconf",
404 1.26 dsl /* 193 */ "#193 (unimplemented)",
405 1.26 dsl /* 194 */ "getrlimit",
406 1.26 dsl /* 195 */ "setrlimit",
407 1.17 tsutsui #if defined(COMPAT_12) || !defined(_KERNEL)
408 1.26 dsl /* 196 */ "getdirentries",
409 1.1 scw #else
410 1.26 dsl /* 196 */ "#196 (excluded compat_12_sys_getdirentries)",
411 1.1 scw #endif
412 1.26 dsl /* 197 */ "mmap",
413 1.26 dsl /* 198 */ "__syscall",
414 1.26 dsl /* 199 */ "lseek",
415 1.26 dsl /* 200 */ "truncate",
416 1.26 dsl /* 201 */ "ftruncate",
417 1.26 dsl /* 202 */ "__sysctl",
418 1.26 dsl /* 203 */ "mlock",
419 1.26 dsl /* 204 */ "munlock",
420 1.26 dsl /* 205 */ "undelete",
421 1.26 dsl /* 206 */ "futimes",
422 1.26 dsl /* 207 */ "getpgid",
423 1.26 dsl /* 208 */ "reboot",
424 1.26 dsl /* 209 */ "poll",
425 1.31 ad /* 210 */ "#210 (unimplemented)",
426 1.31 ad /* 211 */ "#211 (unimplemented)",
427 1.31 ad /* 212 */ "#212 (unimplemented)",
428 1.31 ad /* 213 */ "#213 (unimplemented)",
429 1.31 ad /* 214 */ "#214 (unimplemented)",
430 1.31 ad /* 215 */ "#215 (unimplemented)",
431 1.31 ad /* 216 */ "#216 (unimplemented)",
432 1.31 ad /* 217 */ "#217 (unimplemented)",
433 1.31 ad /* 218 */ "#218 (unimplemented)",
434 1.31 ad /* 219 */ "#219 (unimplemented)",
435 1.1 scw #if defined(SYSVSEM) || !defined(_KERNEL)
436 1.17 tsutsui #if defined(COMPAT_14) || !defined(_KERNEL)
437 1.26 dsl /* 220 */ "__semctl",
438 1.1 scw #else
439 1.26 dsl /* 220 */ "#220 (excluded compat_14_semctl)",
440 1.1 scw #endif
441 1.26 dsl /* 221 */ "semget",
442 1.26 dsl /* 222 */ "semop",
443 1.26 dsl /* 223 */ "semconfig",
444 1.26 dsl #else
445 1.26 dsl /* 220 */ "#220 (excluded compat_14_semctl)",
446 1.26 dsl /* 221 */ "#221 (excluded semget)",
447 1.26 dsl /* 222 */ "#222 (excluded semop)",
448 1.26 dsl /* 223 */ "#223 (excluded semconfig)",
449 1.1 scw #endif
450 1.1 scw #if defined(SYSVMSG) || !defined(_KERNEL)
451 1.17 tsutsui #if defined(COMPAT_14) || !defined(_KERNEL)
452 1.26 dsl /* 224 */ "msgctl",
453 1.1 scw #else
454 1.26 dsl /* 224 */ "#224 (excluded compat_14_sys_msgctl)",
455 1.1 scw #endif
456 1.26 dsl /* 225 */ "msgget",
457 1.26 dsl /* 226 */ "msgsnd",
458 1.26 dsl /* 227 */ "msgrcv",
459 1.26 dsl #else
460 1.26 dsl /* 224 */ "#224 (excluded compat_14_msgctl)",
461 1.26 dsl /* 225 */ "#225 (excluded msgget)",
462 1.26 dsl /* 226 */ "#226 (excluded msgsnd)",
463 1.26 dsl /* 227 */ "#227 (excluded msgrcv)",
464 1.1 scw #endif
465 1.1 scw #if defined(SYSVSHM) || !defined(_KERNEL)
466 1.26 dsl /* 228 */ "shmat",
467 1.17 tsutsui #if defined(COMPAT_14) || !defined(_KERNEL)
468 1.26 dsl /* 229 */ "shmctl",
469 1.1 scw #else
470 1.26 dsl /* 229 */ "#229 (excluded compat_14_sys_shmctl)",
471 1.1 scw #endif
472 1.26 dsl /* 230 */ "shmdt",
473 1.26 dsl /* 231 */ "shmget",
474 1.1 scw #else
475 1.26 dsl /* 228 */ "#228 (excluded shmat)",
476 1.26 dsl /* 229 */ "#229 (excluded compat_14_shmctl)",
477 1.26 dsl /* 230 */ "#230 (excluded shmdt)",
478 1.26 dsl /* 231 */ "#231 (excluded shmget)",
479 1.26 dsl #endif
480 1.26 dsl /* 232 */ "clock_gettime",
481 1.26 dsl /* 233 */ "clock_settime",
482 1.26 dsl /* 234 */ "clock_getres",
483 1.26 dsl /* 235 */ "#235 (unimplemented timer_create)",
484 1.26 dsl /* 236 */ "#236 (unimplemented timer_delete)",
485 1.26 dsl /* 237 */ "#237 (unimplemented timer_settime)",
486 1.26 dsl /* 238 */ "#238 (unimplemented timer_gettime)",
487 1.26 dsl /* 239 */ "#239 (unimplemented timer_getoverrun)",
488 1.26 dsl /* 240 */ "nanosleep",
489 1.26 dsl /* 241 */ "fdatasync",
490 1.26 dsl /* 242 */ "mlockall",
491 1.26 dsl /* 243 */ "munlockall",
492 1.26 dsl /* 244 */ "#244 (unimplemented)",
493 1.26 dsl /* 245 */ "#245 (unimplemented)",
494 1.26 dsl /* 246 */ "#246 (unimplemented)",
495 1.26 dsl /* 247 */ "#247 (unimplemented)",
496 1.26 dsl /* 248 */ "#248 (unimplemented)",
497 1.26 dsl /* 249 */ "#249 (unimplemented)",
498 1.26 dsl /* 250 */ "#250 (unimplemented)",
499 1.26 dsl /* 251 */ "#251 (unimplemented)",
500 1.26 dsl /* 252 */ "#252 (unimplemented)",
501 1.26 dsl /* 253 */ "#253 (unimplemented)",
502 1.26 dsl /* 254 */ "#254 (unimplemented)",
503 1.26 dsl /* 255 */ "#255 (unimplemented)",
504 1.26 dsl /* 256 */ "#256 (unimplemented)",
505 1.26 dsl /* 257 */ "#257 (unimplemented)",
506 1.26 dsl /* 258 */ "#258 (unimplemented)",
507 1.26 dsl /* 259 */ "#259 (unimplemented)",
508 1.26 dsl /* 260 */ "#260 (unimplemented)",
509 1.26 dsl /* 261 */ "#261 (unimplemented)",
510 1.26 dsl /* 262 */ "#262 (unimplemented)",
511 1.26 dsl /* 263 */ "#263 (unimplemented)",
512 1.26 dsl /* 264 */ "#264 (unimplemented)",
513 1.26 dsl /* 265 */ "#265 (unimplemented)",
514 1.26 dsl /* 266 */ "#266 (unimplemented)",
515 1.26 dsl /* 267 */ "#267 (unimplemented)",
516 1.26 dsl /* 268 */ "#268 (unimplemented)",
517 1.26 dsl /* 269 */ "#269 (unimplemented)",
518 1.26 dsl /* 270 */ "__posix_rename",
519 1.26 dsl /* 271 */ "swapctl",
520 1.17 tsutsui #if defined(COMPAT_30) || !defined(_KERNEL)
521 1.26 dsl /* 272 */ "getdents",
522 1.6 tsutsui #else
523 1.26 dsl /* 272 */ "#272 (excluded compat_30_sys_getdents)",
524 1.6 tsutsui #endif
525 1.26 dsl /* 273 */ "minherit",
526 1.26 dsl /* 274 */ "lchmod",
527 1.26 dsl /* 275 */ "lchown",
528 1.26 dsl /* 276 */ "lutimes",
529 1.26 dsl /* 277 */ "__msync13",
530 1.26 dsl /* 278 */ "__stat13",
531 1.26 dsl /* 279 */ "__fstat13",
532 1.26 dsl /* 280 */ "__lstat13",
533 1.26 dsl /* 281 */ "__sigaltstack14",
534 1.26 dsl /* 282 */ "__vfork14",
535 1.26 dsl /* 283 */ "__posix_chown",
536 1.26 dsl /* 284 */ "__posix_fchown",
537 1.26 dsl /* 285 */ "__posix_lchown",
538 1.26 dsl /* 286 */ "getsid",
539 1.26 dsl /* 287 */ "#287 (unimplemented)",
540 1.1 scw #if defined(KTRACE) || !defined(_KERNEL)
541 1.26 dsl /* 288 */ "fktrace",
542 1.1 scw #else
543 1.26 dsl /* 288 */ "#288 (excluded ktrace)",
544 1.1 scw #endif
545 1.26 dsl /* 289 */ "preadv",
546 1.26 dsl /* 290 */ "pwritev",
547 1.17 tsutsui #if defined(COMPAT_16) || !defined(_KERNEL)
548 1.26 dsl /* 291 */ "__sigaction14",
549 1.13 cl #else
550 1.26 dsl /* 291 */ "#291 (excluded compat_16_sys___sigaction14)",
551 1.13 cl #endif
552 1.26 dsl /* 292 */ "__sigpending14",
553 1.26 dsl /* 293 */ "__sigprocmask14",
554 1.26 dsl /* 294 */ "__sigsuspend14",
555 1.17 tsutsui #if defined(COMPAT_16) || !defined(_KERNEL)
556 1.26 dsl /* 295 */ "__sigreturn14",
557 1.12 cl #else
558 1.26 dsl /* 295 */ "#295 (excluded compat_16_sys___sigreturn14)",
559 1.12 cl #endif
560 1.26 dsl /* 296 */ "__getcwd",
561 1.26 dsl /* 297 */ "fchroot",
562 1.51 pgoyette #if defined(COMPAT_30) || ! defined(_KERNEL)
563 1.26 dsl /* 298 */ "fhopen",
564 1.51 pgoyette #else
565 1.51 pgoyette /* 298 */ "#298 (excluded compat_30_sys_fhopen)",
566 1.51 pgoyette #endif
567 1.26 dsl /* 299 */ "fhstat",
568 1.17 tsutsui #if defined(COMPAT_20) || !defined(_KERNEL)
569 1.26 dsl /* 300 */ "fhstatfs",
570 1.14 matt #else
571 1.26 dsl /* 300 */ "#300 (excluded compat_20_sys_fhstatfs)",
572 1.14 matt #endif
573 1.1 scw #if defined(SYSVSEM) || !defined(_KERNEL)
574 1.26 dsl /* 301 */ "____semctl13",
575 1.1 scw #else
576 1.26 dsl /* 301 */ "#301 (excluded ____semctl13)",
577 1.1 scw #endif
578 1.1 scw #if defined(SYSVMSG) || !defined(_KERNEL)
579 1.26 dsl /* 302 */ "__msgctl13",
580 1.1 scw #else
581 1.26 dsl /* 302 */ "#302 (excluded __msgctl13)",
582 1.1 scw #endif
583 1.1 scw #if defined(SYSVSHM) || !defined(_KERNEL)
584 1.26 dsl /* 303 */ "__shmctl13",
585 1.1 scw #else
586 1.26 dsl /* 303 */ "#303 (excluded __shmctl13)",
587 1.1 scw #endif
588 1.26 dsl /* 304 */ "lchflags",
589 1.26 dsl /* 305 */ "issetugid",
590 1.26 dsl /* 306 */ "getcontext",
591 1.26 dsl /* 307 */ "setcontext",
592 1.39 bouyer /* 308 */ "# filler",
593 1.39 bouyer /* 309 */ "# filler",
594 1.39 bouyer /* 310 */ "# filler",
595 1.39 bouyer /* 311 */ "# filler",
596 1.39 bouyer /* 312 */ "# filler",
597 1.39 bouyer /* 313 */ "# filler",
598 1.39 bouyer /* 314 */ "# filler",
599 1.39 bouyer /* 315 */ "# filler",
600 1.39 bouyer /* 316 */ "# filler",
601 1.39 bouyer /* 317 */ "# filler",
602 1.39 bouyer /* 318 */ "# filler",
603 1.39 bouyer /* 319 */ "# filler",
604 1.39 bouyer /* 320 */ "# filler",
605 1.39 bouyer /* 321 */ "# filler",
606 1.39 bouyer /* 322 */ "# filler",
607 1.39 bouyer /* 323 */ "# filler",
608 1.39 bouyer /* 324 */ "# filler",
609 1.39 bouyer /* 325 */ "# filler",
610 1.39 bouyer /* 326 */ "# filler",
611 1.39 bouyer /* 327 */ "# filler",
612 1.39 bouyer /* 328 */ "# filler",
613 1.39 bouyer /* 329 */ "# filler",
614 1.39 bouyer /* 330 */ "# filler",
615 1.39 bouyer /* 331 */ "# filler",
616 1.39 bouyer /* 332 */ "# filler",
617 1.39 bouyer /* 333 */ "# filler",
618 1.39 bouyer /* 334 */ "# filler",
619 1.39 bouyer /* 335 */ "# filler",
620 1.39 bouyer /* 336 */ "# filler",
621 1.39 bouyer /* 337 */ "# filler",
622 1.39 bouyer /* 338 */ "# filler",
623 1.39 bouyer /* 339 */ "# filler",
624 1.39 bouyer /* 340 */ "# filler",
625 1.39 bouyer /* 341 */ "# filler",
626 1.39 bouyer /* 342 */ "# filler",
627 1.39 bouyer /* 343 */ "# filler",
628 1.39 bouyer /* 344 */ "# filler",
629 1.39 bouyer /* 345 */ "# filler",
630 1.39 bouyer /* 346 */ "# filler",
631 1.39 bouyer /* 347 */ "# filler",
632 1.39 bouyer /* 348 */ "# filler",
633 1.39 bouyer /* 349 */ "# filler",
634 1.39 bouyer /* 350 */ "# filler",
635 1.39 bouyer /* 351 */ "# filler",
636 1.39 bouyer /* 352 */ "# filler",
637 1.39 bouyer /* 353 */ "# filler",
638 1.39 bouyer /* 354 */ "# filler",
639 1.39 bouyer /* 355 */ "# filler",
640 1.39 bouyer /* 356 */ "# filler",
641 1.39 bouyer /* 357 */ "# filler",
642 1.39 bouyer /* 358 */ "# filler",
643 1.39 bouyer /* 359 */ "# filler",
644 1.39 bouyer /* 360 */ "# filler",
645 1.39 bouyer /* 361 */ "# filler",
646 1.39 bouyer /* 362 */ "# filler",
647 1.39 bouyer /* 363 */ "# filler",
648 1.39 bouyer /* 364 */ "# filler",
649 1.39 bouyer /* 365 */ "# filler",
650 1.39 bouyer /* 366 */ "# filler",
651 1.39 bouyer /* 367 */ "# filler",
652 1.39 bouyer /* 368 */ "# filler",
653 1.39 bouyer /* 369 */ "# filler",
654 1.39 bouyer /* 370 */ "# filler",
655 1.39 bouyer /* 371 */ "# filler",
656 1.39 bouyer /* 372 */ "# filler",
657 1.39 bouyer /* 373 */ "# filler",
658 1.39 bouyer /* 374 */ "# filler",
659 1.39 bouyer /* 375 */ "# filler",
660 1.39 bouyer /* 376 */ "# filler",
661 1.39 bouyer /* 377 */ "# filler",
662 1.39 bouyer /* 378 */ "# filler",
663 1.39 bouyer /* 379 */ "# filler",
664 1.39 bouyer /* 380 */ "# filler",
665 1.39 bouyer /* 381 */ "# filler",
666 1.39 bouyer /* 382 */ "# filler",
667 1.39 bouyer /* 383 */ "# filler",
668 1.39 bouyer /* 384 */ "# filler",
669 1.39 bouyer /* 385 */ "# filler",
670 1.39 bouyer /* 386 */ "# filler",
671 1.39 bouyer /* 387 */ "# filler",
672 1.39 bouyer /* 388 */ "# filler",
673 1.39 bouyer /* 389 */ "# filler",
674 1.39 bouyer /* 390 */ "# filler",
675 1.39 bouyer /* 391 */ "# filler",
676 1.39 bouyer /* 392 */ "# filler",
677 1.39 bouyer /* 393 */ "# filler",
678 1.39 bouyer /* 394 */ "# filler",
679 1.39 bouyer /* 395 */ "# filler",
680 1.39 bouyer /* 396 */ "# filler",
681 1.39 bouyer /* 397 */ "# filler",
682 1.39 bouyer /* 398 */ "# filler",
683 1.39 bouyer /* 399 */ "# filler",
684 1.39 bouyer /* 400 */ "# filler",
685 1.39 bouyer /* 401 */ "# filler",
686 1.39 bouyer /* 402 */ "# filler",
687 1.39 bouyer /* 403 */ "# filler",
688 1.39 bouyer /* 404 */ "# filler",
689 1.39 bouyer /* 405 */ "# filler",
690 1.39 bouyer /* 406 */ "# filler",
691 1.39 bouyer /* 407 */ "# filler",
692 1.39 bouyer /* 408 */ "# filler",
693 1.39 bouyer /* 409 */ "# filler",
694 1.39 bouyer /* 410 */ "# filler",
695 1.39 bouyer /* 411 */ "# filler",
696 1.39 bouyer /* 412 */ "# filler",
697 1.39 bouyer /* 413 */ "# filler",
698 1.39 bouyer /* 414 */ "# filler",
699 1.39 bouyer /* 415 */ "# filler",
700 1.39 bouyer /* 416 */ "# filler",
701 1.39 bouyer /* 417 */ "# filler",
702 1.39 bouyer /* 418 */ "# filler",
703 1.39 bouyer /* 419 */ "# filler",
704 1.39 bouyer /* 420 */ "# filler",
705 1.39 bouyer /* 421 */ "# filler",
706 1.39 bouyer /* 422 */ "# filler",
707 1.39 bouyer /* 423 */ "# filler",
708 1.39 bouyer /* 424 */ "# filler",
709 1.39 bouyer /* 425 */ "# filler",
710 1.39 bouyer /* 426 */ "# filler",
711 1.39 bouyer /* 427 */ "# filler",
712 1.39 bouyer /* 428 */ "# filler",
713 1.39 bouyer /* 429 */ "# filler",
714 1.39 bouyer /* 430 */ "# filler",
715 1.39 bouyer /* 431 */ "# filler",
716 1.39 bouyer /* 432 */ "# filler",
717 1.39 bouyer /* 433 */ "# filler",
718 1.39 bouyer /* 434 */ "# filler",
719 1.39 bouyer /* 435 */ "# filler",
720 1.39 bouyer /* 436 */ "# filler",
721 1.39 bouyer /* 437 */ "# filler",
722 1.39 bouyer /* 438 */ "# filler",
723 1.39 bouyer /* 439 */ "# filler",
724 1.39 bouyer /* 440 */ "# filler",
725 1.39 bouyer /* 441 */ "# filler",
726 1.39 bouyer /* 442 */ "# filler",
727 1.39 bouyer /* 443 */ "# filler",
728 1.39 bouyer /* 444 */ "# filler",
729 1.39 bouyer /* 445 */ "# filler",
730 1.39 bouyer /* 446 */ "# filler",
731 1.39 bouyer /* 447 */ "# filler",
732 1.39 bouyer /* 448 */ "# filler",
733 1.39 bouyer /* 449 */ "# filler",
734 1.39 bouyer /* 450 */ "# filler",
735 1.39 bouyer /* 451 */ "# filler",
736 1.39 bouyer /* 452 */ "# filler",
737 1.39 bouyer /* 453 */ "# filler",
738 1.39 bouyer /* 454 */ "# filler",
739 1.39 bouyer /* 455 */ "# filler",
740 1.39 bouyer /* 456 */ "# filler",
741 1.39 bouyer /* 457 */ "# filler",
742 1.39 bouyer /* 458 */ "# filler",
743 1.39 bouyer /* 459 */ "# filler",
744 1.39 bouyer /* 460 */ "# filler",
745 1.39 bouyer /* 461 */ "# filler",
746 1.39 bouyer /* 462 */ "# filler",
747 1.39 bouyer /* 463 */ "# filler",
748 1.39 bouyer /* 464 */ "# filler",
749 1.39 bouyer /* 465 */ "# filler",
750 1.39 bouyer /* 466 */ "# filler",
751 1.39 bouyer /* 467 */ "# filler",
752 1.39 bouyer /* 468 */ "# filler",
753 1.39 bouyer /* 469 */ "# filler",
754 1.39 bouyer /* 470 */ "# filler",
755 1.39 bouyer /* 471 */ "# filler",
756 1.39 bouyer /* 472 */ "# filler",
757 1.39 bouyer /* 473 */ "# filler",
758 1.39 bouyer /* 474 */ "# filler",
759 1.39 bouyer /* 475 */ "# filler",
760 1.39 bouyer /* 476 */ "# filler",
761 1.39 bouyer /* 477 */ "# filler",
762 1.39 bouyer /* 478 */ "# filler",
763 1.39 bouyer /* 479 */ "# filler",
764 1.39 bouyer /* 480 */ "# filler",
765 1.39 bouyer /* 481 */ "# filler",
766 1.39 bouyer /* 482 */ "# filler",
767 1.39 bouyer /* 483 */ "# filler",
768 1.39 bouyer /* 484 */ "# filler",
769 1.39 bouyer /* 485 */ "# filler",
770 1.39 bouyer /* 486 */ "# filler",
771 1.39 bouyer /* 487 */ "# filler",
772 1.39 bouyer /* 488 */ "# filler",
773 1.39 bouyer /* 489 */ "# filler",
774 1.39 bouyer /* 490 */ "# filler",
775 1.39 bouyer /* 491 */ "# filler",
776 1.39 bouyer /* 492 */ "# filler",
777 1.39 bouyer /* 493 */ "# filler",
778 1.39 bouyer /* 494 */ "# filler",
779 1.39 bouyer /* 495 */ "# filler",
780 1.39 bouyer /* 496 */ "# filler",
781 1.39 bouyer /* 497 */ "# filler",
782 1.39 bouyer /* 498 */ "# filler",
783 1.39 bouyer /* 499 */ "# filler",
784 1.39 bouyer /* 500 */ "# filler",
785 1.39 bouyer /* 501 */ "# filler",
786 1.39 bouyer /* 502 */ "# filler",
787 1.39 bouyer /* 503 */ "# filler",
788 1.39 bouyer /* 504 */ "# filler",
789 1.39 bouyer /* 505 */ "# filler",
790 1.39 bouyer /* 506 */ "# filler",
791 1.39 bouyer /* 507 */ "# filler",
792 1.39 bouyer /* 508 */ "# filler",
793 1.39 bouyer /* 509 */ "# filler",
794 1.39 bouyer /* 510 */ "# filler",
795 1.39 bouyer /* 511 */ "# filler",
796 1.1 scw };
797 1.42 christos
798 1.42 christos
799 1.42 christos /* libc style syscall names */
800 1.42 christos const char *const altaoutm68k_syscallnames[] = {
801 1.42 christos /* 0 */ NULL, /* syscall */
802 1.42 christos /* 1 */ NULL, /* exit */
803 1.42 christos /* 2 */ NULL, /* fork */
804 1.42 christos /* 3 */ NULL, /* read */
805 1.42 christos /* 4 */ NULL, /* write */
806 1.42 christos /* 5 */ NULL, /* open */
807 1.42 christos /* 6 */ NULL, /* close */
808 1.42 christos /* 7 */ NULL, /* wait4 */
809 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
810 1.42 christos /* 8 */ "creat",
811 1.42 christos #else
812 1.42 christos /* 8 */ NULL, /* excluded compat_43_sys_creat */
813 1.42 christos #endif
814 1.42 christos /* 9 */ NULL, /* link */
815 1.42 christos /* 10 */ NULL, /* unlink */
816 1.42 christos /* 11 */ NULL, /* obsolete execv */
817 1.42 christos /* 12 */ NULL, /* chdir */
818 1.42 christos /* 13 */ NULL, /* fchdir */
819 1.42 christos /* 14 */ NULL, /* mknod */
820 1.42 christos /* 15 */ NULL, /* chmod */
821 1.42 christos /* 16 */ NULL, /* chown */
822 1.42 christos /* 17 */ "obreak",
823 1.42 christos #if defined(COMPAT_20) || !defined(_KERNEL)
824 1.42 christos /* 18 */ NULL, /* getfsstat */
825 1.42 christos #else
826 1.42 christos /* 18 */ NULL, /* excluded compat_20_sys_getfsstat */
827 1.42 christos #endif
828 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
829 1.42 christos /* 19 */ "lseek",
830 1.42 christos #else
831 1.42 christos /* 19 */ NULL, /* excluded compat_43_sys_lseek */
832 1.42 christos #endif
833 1.42 christos /* 20 */ NULL, /* getpid */
834 1.42 christos /* 21 */ NULL, /* mount */
835 1.42 christos /* 22 */ NULL, /* unmount */
836 1.42 christos /* 23 */ NULL, /* setuid */
837 1.42 christos /* 24 */ NULL, /* getuid */
838 1.42 christos /* 25 */ NULL, /* geteuid */
839 1.42 christos /* 26 */ NULL, /* ptrace */
840 1.42 christos /* 27 */ NULL, /* recvmsg */
841 1.42 christos /* 28 */ NULL, /* sendmsg */
842 1.42 christos /* 29 */ NULL, /* recvfrom */
843 1.42 christos /* 30 */ NULL, /* accept */
844 1.42 christos /* 31 */ NULL, /* getpeername */
845 1.42 christos /* 32 */ NULL, /* getsockname */
846 1.42 christos /* 33 */ NULL, /* access */
847 1.42 christos /* 34 */ NULL, /* chflags */
848 1.42 christos /* 35 */ NULL, /* fchflags */
849 1.42 christos /* 36 */ NULL, /* sync */
850 1.42 christos /* 37 */ NULL, /* kill */
851 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
852 1.42 christos /* 38 */ "stat",
853 1.42 christos #else
854 1.42 christos /* 38 */ NULL, /* excluded aoutm68k_compat_43_sys_stat */
855 1.42 christos #endif
856 1.42 christos /* 39 */ NULL, /* getppid */
857 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
858 1.42 christos /* 40 */ "lstat",
859 1.42 christos #else
860 1.42 christos /* 40 */ NULL, /* excluded aoutm68k_compat_43_sys_lstat */
861 1.42 christos #endif
862 1.42 christos /* 41 */ NULL, /* dup */
863 1.42 christos /* 42 */ NULL, /* pipe */
864 1.42 christos /* 43 */ NULL, /* getegid */
865 1.42 christos /* 44 */ NULL, /* profil */
866 1.42 christos #if defined(KTRACE) || !defined(_KERNEL)
867 1.42 christos /* 45 */ NULL, /* ktrace */
868 1.42 christos #else
869 1.42 christos /* 45 */ NULL, /* excluded ktrace */
870 1.42 christos #endif
871 1.42 christos #if defined(COMPAT_13) || !defined(_KERNEL)
872 1.42 christos /* 46 */ "sigaction",
873 1.42 christos #else
874 1.42 christos /* 46 */ NULL, /* excluded compat_13_sys_sigaction */
875 1.42 christos #endif
876 1.42 christos /* 47 */ NULL, /* getgid */
877 1.42 christos #if defined(COMPAT_13) || !defined(_KERNEL)
878 1.42 christos /* 48 */ "sigprocmask",
879 1.42 christos #else
880 1.42 christos /* 48 */ NULL, /* excluded compat_13_sys_sigprocmask */
881 1.42 christos #endif
882 1.42 christos /* 49 */ NULL, /* __getlogin */
883 1.42 christos /* 50 */ NULL, /* __setlogin */
884 1.42 christos /* 51 */ NULL, /* acct */
885 1.42 christos #if defined(COMPAT_13) || !defined(_KERNEL)
886 1.42 christos /* 52 */ "sigpending",
887 1.42 christos /* 53 */ "sigaltstack",
888 1.42 christos #else
889 1.42 christos /* 52 */ NULL, /* excluded compat_13_sys_sigpending */
890 1.42 christos /* 53 */ NULL, /* excluded compat_13_sys_sigaltstack */
891 1.42 christos #endif
892 1.42 christos /* 54 */ NULL, /* ioctl */
893 1.42 christos #if defined(COMPAT_12) || !defined(_KERNEL)
894 1.42 christos /* 55 */ "reboot",
895 1.42 christos #else
896 1.42 christos /* 55 */ NULL, /* excluded compat_12_sys_reboot */
897 1.42 christos #endif
898 1.42 christos /* 56 */ NULL, /* revoke */
899 1.42 christos /* 57 */ NULL, /* symlink */
900 1.42 christos /* 58 */ NULL, /* readlink */
901 1.42 christos /* 59 */ NULL, /* execve */
902 1.42 christos /* 60 */ NULL, /* umask */
903 1.42 christos /* 61 */ NULL, /* chroot */
904 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
905 1.42 christos /* 62 */ "fstat",
906 1.42 christos /* 63 */ "getkerninfo",
907 1.42 christos /* 64 */ "getpagesize",
908 1.42 christos #else
909 1.42 christos /* 62 */ NULL, /* excluded aoutm68k_compat_43_sys_fstat */
910 1.42 christos /* 63 */ NULL, /* excluded compat_43_sys_getkerninfo */
911 1.42 christos /* 64 */ NULL, /* excluded compat_43_sys_getpagesize */
912 1.42 christos #endif
913 1.42 christos #if defined(COMPAT_12) || !defined(_KERNEL)
914 1.42 christos /* 65 */ NULL, /* msync */
915 1.42 christos #else
916 1.42 christos /* 65 */ NULL, /* excluded compat_12_sys_msync */
917 1.42 christos #endif
918 1.42 christos /* 66 */ NULL, /* vfork */
919 1.42 christos /* 67 */ NULL, /* obsolete vread */
920 1.42 christos /* 68 */ NULL, /* obsolete vwrite */
921 1.47 kamil /* 69 */ NULL, /* obsolete sbrk */
922 1.46 kamil /* 70 */ NULL, /* obsolete sstk */
923 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
924 1.42 christos /* 71 */ "mmap",
925 1.42 christos #else
926 1.42 christos /* 71 */ NULL, /* excluded compat_43_sys_mmap */
927 1.42 christos #endif
928 1.49 kamil /* 72 */ "ovadvise",
929 1.42 christos /* 73 */ NULL, /* munmap */
930 1.42 christos /* 74 */ NULL, /* mprotect */
931 1.42 christos /* 75 */ NULL, /* madvise */
932 1.42 christos /* 76 */ NULL, /* obsolete vhangup */
933 1.42 christos /* 77 */ NULL, /* obsolete vlimit */
934 1.42 christos /* 78 */ NULL, /* mincore */
935 1.42 christos /* 79 */ NULL, /* getgroups */
936 1.42 christos /* 80 */ NULL, /* setgroups */
937 1.42 christos /* 81 */ NULL, /* getpgrp */
938 1.42 christos /* 82 */ NULL, /* setpgid */
939 1.42 christos /* 83 */ NULL, /* setitimer */
940 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
941 1.42 christos /* 84 */ "wait",
942 1.42 christos #else
943 1.42 christos /* 84 */ NULL, /* excluded compat_43_sys_wait */
944 1.42 christos #endif
945 1.42 christos #if defined(COMPAT_12) || !defined(_KERNEL)
946 1.42 christos /* 85 */ "swapon",
947 1.42 christos #else
948 1.42 christos /* 85 */ NULL, /* excluded compat_12_sys_swapon */
949 1.42 christos #endif
950 1.42 christos /* 86 */ NULL, /* getitimer */
951 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
952 1.42 christos /* 87 */ "gethostname",
953 1.42 christos /* 88 */ "sethostname",
954 1.42 christos /* 89 */ "getdtablesize",
955 1.42 christos #else
956 1.42 christos /* 87 */ NULL, /* excluded compat_43_sys_gethostname */
957 1.42 christos /* 88 */ NULL, /* excluded compat_43_sys_sethostname */
958 1.42 christos /* 89 */ NULL, /* excluded compat_43_sys_getdtablesize */
959 1.42 christos #endif
960 1.42 christos /* 90 */ NULL, /* dup2 */
961 1.42 christos /* 91 */ NULL, /* unimplemented getdopt */
962 1.42 christos /* 92 */ NULL, /* fcntl */
963 1.42 christos /* 93 */ NULL, /* select */
964 1.42 christos /* 94 */ NULL, /* unimplemented setdopt */
965 1.42 christos /* 95 */ NULL, /* fsync */
966 1.42 christos /* 96 */ NULL, /* setpriority */
967 1.51 pgoyette #if defined(COMPAT_30) || !defined(_KERNEL)
968 1.42 christos /* 97 */ NULL, /* socket */
969 1.51 pgoyette #else
970 1.51 pgoyette /* 97 */ NULL, /* excluded compat_30_sys_socket */
971 1.51 pgoyette #endif
972 1.42 christos /* 98 */ NULL, /* connect */
973 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
974 1.42 christos /* 99 */ "accept",
975 1.42 christos #else
976 1.42 christos /* 99 */ NULL, /* excluded compat_43_sys_accept */
977 1.42 christos #endif
978 1.42 christos /* 100 */ NULL, /* getpriority */
979 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
980 1.42 christos /* 101 */ "send",
981 1.42 christos /* 102 */ "recv",
982 1.42 christos #else
983 1.42 christos /* 101 */ NULL, /* excluded compat_43_sys_send */
984 1.42 christos /* 102 */ NULL, /* excluded compat_43_sys_recv */
985 1.42 christos #endif
986 1.42 christos #if defined(COMPAT_13) || !defined(_KERNEL)
987 1.42 christos /* 103 */ "sigreturn",
988 1.42 christos #else
989 1.42 christos /* 103 */ NULL, /* excluded compat_13_sys_sigreturn */
990 1.42 christos #endif
991 1.42 christos /* 104 */ NULL, /* bind */
992 1.42 christos /* 105 */ NULL, /* setsockopt */
993 1.42 christos /* 106 */ NULL, /* listen */
994 1.42 christos /* 107 */ NULL, /* obsolete vtimes */
995 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
996 1.42 christos /* 108 */ "sigvec",
997 1.42 christos /* 109 */ "sigblock",
998 1.42 christos /* 110 */ "sigsetmask",
999 1.42 christos #else
1000 1.42 christos /* 108 */ NULL, /* excluded compat_43_sys_sigvec */
1001 1.42 christos /* 109 */ NULL, /* excluded compat_43_sys_sigblock */
1002 1.42 christos /* 110 */ NULL, /* excluded compat_43_sys_sigsetmask */
1003 1.42 christos #endif
1004 1.42 christos #if defined(COMPAT_13) || !defined(_KERNEL)
1005 1.42 christos /* 111 */ "sigsuspend",
1006 1.42 christos #else
1007 1.42 christos /* 111 */ NULL, /* excluded compat_13_sys_sigsuspend */
1008 1.42 christos #endif
1009 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
1010 1.42 christos /* 112 */ "sigstack",
1011 1.42 christos /* 113 */ "recvmsg",
1012 1.42 christos /* 114 */ "sendmsg",
1013 1.42 christos #else
1014 1.42 christos /* 112 */ NULL, /* excluded compat_43_sys_sigstack */
1015 1.42 christos /* 113 */ NULL, /* excluded compat_43_sys_recvmesg */
1016 1.42 christos /* 114 */ NULL, /* excluded compat_43_sys_sendmesg */
1017 1.42 christos #endif
1018 1.42 christos /* 115 */ NULL, /* obsolete vtrace */
1019 1.42 christos /* 116 */ NULL, /* gettimeofday */
1020 1.42 christos /* 117 */ NULL, /* getrusage */
1021 1.42 christos /* 118 */ NULL, /* getsockopt */
1022 1.42 christos /* 119 */ NULL, /* obsolete resuba */
1023 1.42 christos /* 120 */ NULL, /* readv */
1024 1.42 christos /* 121 */ NULL, /* writev */
1025 1.42 christos /* 122 */ NULL, /* settimeofday */
1026 1.42 christos /* 123 */ NULL, /* fchown */
1027 1.42 christos /* 124 */ NULL, /* fchmod */
1028 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
1029 1.42 christos /* 125 */ "recvfrom",
1030 1.42 christos #else
1031 1.42 christos /* 125 */ NULL, /* excluded compat_43_sys_recvfrom */
1032 1.42 christos #endif
1033 1.42 christos /* 126 */ NULL, /* setreuid */
1034 1.42 christos /* 127 */ NULL, /* setregid */
1035 1.42 christos /* 128 */ NULL, /* rename */
1036 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
1037 1.42 christos /* 129 */ "truncate",
1038 1.42 christos /* 130 */ "ftruncate",
1039 1.42 christos #else
1040 1.42 christos /* 129 */ NULL, /* excluded compat_43_sys_truncate */
1041 1.42 christos /* 130 */ NULL, /* excluded compat_43_sys_ftruncate */
1042 1.42 christos #endif
1043 1.42 christos /* 131 */ NULL, /* flock */
1044 1.42 christos /* 132 */ NULL, /* mkfifo */
1045 1.42 christos /* 133 */ NULL, /* sendto */
1046 1.42 christos /* 134 */ NULL, /* shutdown */
1047 1.42 christos /* 135 */ NULL, /* socketpair */
1048 1.42 christos /* 136 */ NULL, /* mkdir */
1049 1.42 christos /* 137 */ NULL, /* rmdir */
1050 1.42 christos /* 138 */ NULL, /* utimes */
1051 1.42 christos /* 139 */ NULL, /* obsolete 4.2 sigreturn */
1052 1.42 christos /* 140 */ NULL, /* adjtime */
1053 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
1054 1.42 christos /* 141 */ "getpeername",
1055 1.42 christos /* 142 */ "gethostid",
1056 1.42 christos /* 143 */ "sethostid",
1057 1.42 christos /* 144 */ "getrlimit",
1058 1.42 christos /* 145 */ "setrlimit",
1059 1.42 christos /* 146 */ "killpg",
1060 1.42 christos #else
1061 1.42 christos /* 141 */ NULL, /* excluded compat_43_sys_getpeername */
1062 1.42 christos /* 142 */ NULL, /* excluded compat_43_sys_gethostid */
1063 1.42 christos /* 143 */ NULL, /* excluded compat_43_sys_sethostid */
1064 1.42 christos /* 144 */ NULL, /* excluded compat_43_sys_getrlimit */
1065 1.42 christos /* 145 */ NULL, /* excluded compat_43_sys_setrlimit */
1066 1.42 christos /* 146 */ NULL, /* excluded compat_43_sys_killpg */
1067 1.42 christos #endif
1068 1.42 christos /* 147 */ NULL, /* setsid */
1069 1.52 christos #if defined(QUOTA) || !defined(_KERNEL_OPT)
1070 1.42 christos /* 148 */ NULL, /* quotactl */
1071 1.52 christos #else
1072 1.52 christos /* 148 */ NULL, /* excluded compat_50_sys_quotactl */
1073 1.52 christos #endif
1074 1.52 christos #if (defined(QUOTA) && defined(COMPAT_43)) || !defined(_KERNEL_OPT)
1075 1.42 christos /* 149 */ "quota",
1076 1.52 christos #else
1077 1.52 christos /* 149 */ NULL, /* excluded compat_43_sys_quota */
1078 1.52 christos #endif
1079 1.52 christos #if defined(COMPAT_43) || !defined(_KERNEL_OPT)
1080 1.42 christos /* 150 */ "getsockname",
1081 1.42 christos #else
1082 1.42 christos /* 150 */ NULL, /* excluded compat_43_sys_getsockname */
1083 1.42 christos #endif
1084 1.42 christos /* 151 */ NULL, /* unimplemented */
1085 1.42 christos /* 152 */ NULL, /* unimplemented */
1086 1.42 christos /* 153 */ NULL, /* unimplemented */
1087 1.42 christos /* 154 */ NULL, /* unimplemented */
1088 1.42 christos /* 155 */ NULL, /* excluded nfssvc */
1089 1.42 christos #if defined(COMPAT_43) || !defined(_KERNEL)
1090 1.42 christos /* 156 */ "getdirentries",
1091 1.42 christos #else
1092 1.42 christos /* 156 */ NULL, /* excluded compat_43_sys_getdirentries */
1093 1.42 christos #endif
1094 1.42 christos #if defined(COMPAT_20) || !defined(_KERNEL)
1095 1.42 christos /* 157 */ NULL, /* statfs */
1096 1.42 christos #else
1097 1.42 christos /* 157 */ NULL, /* excluded compat_20_sys_statfs */
1098 1.42 christos #endif
1099 1.42 christos #if defined(COMPAT_20) || !defined(_KERNEL)
1100 1.42 christos /* 158 */ NULL, /* fstatfs */
1101 1.42 christos #else
1102 1.42 christos /* 158 */ NULL, /* excluded compat_20_sys_statfs */
1103 1.42 christos #endif
1104 1.42 christos /* 159 */ NULL, /* unimplemented */
1105 1.42 christos /* 160 */ NULL, /* unimplemented */
1106 1.51 pgoyette #if defined(COMPAT_30) || !defined(_KERNEL)
1107 1.42 christos /* 161 */ NULL, /* getfh */
1108 1.51 pgoyette #else
1109 1.51 pgoyette /* 161 */ NULL, /* excluded compat_30_sys_getfh */
1110 1.51 pgoyette #endif
1111 1.42 christos #if defined(COMPAT_09) || !defined(_KERNEL)
1112 1.42 christos /* 162 */ "getdomainname",
1113 1.42 christos /* 163 */ "setdomainname",
1114 1.42 christos /* 164 */ "uname",
1115 1.42 christos #else
1116 1.42 christos /* 162 */ NULL, /* excluded compat_09_sys_getdomainname */
1117 1.42 christos /* 163 */ NULL, /* excluded compat_09_sys_setdomainname */
1118 1.42 christos /* 164 */ NULL, /* excluded compat_09_sys_uname */
1119 1.42 christos #endif
1120 1.42 christos /* 165 */ NULL, /* sysarch */
1121 1.42 christos /* 166 */ NULL, /* unimplemented */
1122 1.42 christos /* 167 */ NULL, /* unimplemented */
1123 1.42 christos /* 168 */ NULL, /* unimplemented */
1124 1.42 christos #if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
1125 1.42 christos /* 169 */ "semsys",
1126 1.42 christos #else
1127 1.42 christos /* 169 */ NULL, /* excluded 1.0 semsys */
1128 1.42 christos #endif
1129 1.42 christos #if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
1130 1.42 christos /* 170 */ "msgsys",
1131 1.42 christos #else
1132 1.42 christos /* 170 */ NULL, /* excluded 1.0 msgsys */
1133 1.42 christos #endif
1134 1.42 christos #if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
1135 1.42 christos /* 171 */ "shmsys",
1136 1.42 christos #else
1137 1.42 christos /* 171 */ NULL, /* excluded 1.0 shmsys */
1138 1.42 christos #endif
1139 1.42 christos /* 172 */ NULL, /* unimplemented */
1140 1.42 christos /* 173 */ NULL, /* pread */
1141 1.42 christos /* 174 */ NULL, /* pwrite */
1142 1.42 christos /* 175 */ NULL, /* unimplemented sys_ntp_gettime */
1143 1.42 christos #if defined(NTP) || !defined(_KERNEL)
1144 1.42 christos /* 176 */ NULL, /* ntp_adjtime */
1145 1.42 christos #else
1146 1.42 christos /* 176 */ NULL, /* excluded ntp_adjtime */
1147 1.42 christos #endif
1148 1.42 christos /* 177 */ NULL, /* unimplemented */
1149 1.42 christos /* 178 */ NULL, /* unimplemented */
1150 1.42 christos /* 179 */ NULL, /* unimplemented */
1151 1.42 christos /* 180 */ NULL, /* unimplemented */
1152 1.42 christos /* 181 */ NULL, /* setgid */
1153 1.42 christos /* 182 */ NULL, /* setegid */
1154 1.42 christos /* 183 */ NULL, /* seteuid */
1155 1.42 christos /* 184 */ NULL, /* excluded lfs_bmapv */
1156 1.42 christos /* 185 */ NULL, /* excluded lfs_markv */
1157 1.42 christos /* 186 */ NULL, /* excluded lfs_segclean */
1158 1.42 christos /* 187 */ NULL, /* excluded lfs_segwait */
1159 1.42 christos #if defined(COMPAT_12) || !defined(_KERNEL)
1160 1.42 christos /* 188 */ "stat",
1161 1.42 christos /* 189 */ "fstat",
1162 1.42 christos /* 190 */ "lstat",
1163 1.42 christos #else
1164 1.42 christos /* 188 */ NULL, /* excluded aoutm68k_compat_12_sys_stat */
1165 1.42 christos /* 189 */ NULL, /* excluded aoutm68k_compat_12_sys_fstat */
1166 1.42 christos /* 190 */ NULL, /* excluded aoutm68k_compat_12_sys_lstat */
1167 1.42 christos #endif
1168 1.42 christos /* 191 */ NULL, /* pathconf */
1169 1.42 christos /* 192 */ NULL, /* fpathconf */
1170 1.42 christos /* 193 */ NULL, /* unimplemented */
1171 1.42 christos /* 194 */ NULL, /* getrlimit */
1172 1.42 christos /* 195 */ NULL, /* setrlimit */
1173 1.42 christos #if defined(COMPAT_12) || !defined(_KERNEL)
1174 1.42 christos /* 196 */ NULL, /* getdirentries */
1175 1.42 christos #else
1176 1.42 christos /* 196 */ NULL, /* excluded compat_12_sys_getdirentries */
1177 1.42 christos #endif
1178 1.42 christos /* 197 */ NULL, /* mmap */
1179 1.42 christos /* 198 */ NULL, /* __syscall */
1180 1.42 christos /* 199 */ NULL, /* lseek */
1181 1.42 christos /* 200 */ NULL, /* truncate */
1182 1.42 christos /* 201 */ NULL, /* ftruncate */
1183 1.42 christos /* 202 */ NULL, /* __sysctl */
1184 1.42 christos /* 203 */ NULL, /* mlock */
1185 1.42 christos /* 204 */ NULL, /* munlock */
1186 1.42 christos /* 205 */ NULL, /* undelete */
1187 1.42 christos /* 206 */ NULL, /* futimes */
1188 1.42 christos /* 207 */ NULL, /* getpgid */
1189 1.42 christos /* 208 */ NULL, /* reboot */
1190 1.42 christos /* 209 */ NULL, /* poll */
1191 1.42 christos /* 210 */ NULL, /* unimplemented */
1192 1.42 christos /* 211 */ NULL, /* unimplemented */
1193 1.42 christos /* 212 */ NULL, /* unimplemented */
1194 1.42 christos /* 213 */ NULL, /* unimplemented */
1195 1.42 christos /* 214 */ NULL, /* unimplemented */
1196 1.42 christos /* 215 */ NULL, /* unimplemented */
1197 1.42 christos /* 216 */ NULL, /* unimplemented */
1198 1.42 christos /* 217 */ NULL, /* unimplemented */
1199 1.42 christos /* 218 */ NULL, /* unimplemented */
1200 1.42 christos /* 219 */ NULL, /* unimplemented */
1201 1.42 christos #if defined(SYSVSEM) || !defined(_KERNEL)
1202 1.42 christos #if defined(COMPAT_14) || !defined(_KERNEL)
1203 1.42 christos /* 220 */ NULL, /* __semctl */
1204 1.42 christos #else
1205 1.42 christos /* 220 */ NULL, /* excluded compat_14_semctl */
1206 1.42 christos #endif
1207 1.42 christos /* 221 */ NULL, /* semget */
1208 1.42 christos /* 222 */ NULL, /* semop */
1209 1.42 christos /* 223 */ NULL, /* semconfig */
1210 1.42 christos #else
1211 1.42 christos /* 220 */ NULL, /* excluded compat_14_semctl */
1212 1.42 christos /* 221 */ NULL, /* excluded semget */
1213 1.42 christos /* 222 */ NULL, /* excluded semop */
1214 1.42 christos /* 223 */ NULL, /* excluded semconfig */
1215 1.42 christos #endif
1216 1.42 christos #if defined(SYSVMSG) || !defined(_KERNEL)
1217 1.42 christos #if defined(COMPAT_14) || !defined(_KERNEL)
1218 1.42 christos /* 224 */ NULL, /* msgctl */
1219 1.42 christos #else
1220 1.42 christos /* 224 */ NULL, /* excluded compat_14_sys_msgctl */
1221 1.42 christos #endif
1222 1.42 christos /* 225 */ NULL, /* msgget */
1223 1.42 christos /* 226 */ NULL, /* msgsnd */
1224 1.42 christos /* 227 */ NULL, /* msgrcv */
1225 1.42 christos #else
1226 1.42 christos /* 224 */ NULL, /* excluded compat_14_msgctl */
1227 1.42 christos /* 225 */ NULL, /* excluded msgget */
1228 1.42 christos /* 226 */ NULL, /* excluded msgsnd */
1229 1.42 christos /* 227 */ NULL, /* excluded msgrcv */
1230 1.42 christos #endif
1231 1.42 christos #if defined(SYSVSHM) || !defined(_KERNEL)
1232 1.42 christos /* 228 */ NULL, /* shmat */
1233 1.42 christos #if defined(COMPAT_14) || !defined(_KERNEL)
1234 1.42 christos /* 229 */ NULL, /* shmctl */
1235 1.42 christos #else
1236 1.42 christos /* 229 */ NULL, /* excluded compat_14_sys_shmctl */
1237 1.42 christos #endif
1238 1.42 christos /* 230 */ NULL, /* shmdt */
1239 1.42 christos /* 231 */ NULL, /* shmget */
1240 1.42 christos #else
1241 1.42 christos /* 228 */ NULL, /* excluded shmat */
1242 1.42 christos /* 229 */ NULL, /* excluded compat_14_shmctl */
1243 1.42 christos /* 230 */ NULL, /* excluded shmdt */
1244 1.42 christos /* 231 */ NULL, /* excluded shmget */
1245 1.42 christos #endif
1246 1.42 christos /* 232 */ NULL, /* clock_gettime */
1247 1.42 christos /* 233 */ NULL, /* clock_settime */
1248 1.42 christos /* 234 */ NULL, /* clock_getres */
1249 1.42 christos /* 235 */ NULL, /* unimplemented timer_create */
1250 1.42 christos /* 236 */ NULL, /* unimplemented timer_delete */
1251 1.42 christos /* 237 */ NULL, /* unimplemented timer_settime */
1252 1.42 christos /* 238 */ NULL, /* unimplemented timer_gettime */
1253 1.42 christos /* 239 */ NULL, /* unimplemented timer_getoverrun */
1254 1.42 christos /* 240 */ NULL, /* nanosleep */
1255 1.42 christos /* 241 */ NULL, /* fdatasync */
1256 1.42 christos /* 242 */ NULL, /* mlockall */
1257 1.42 christos /* 243 */ NULL, /* munlockall */
1258 1.42 christos /* 244 */ NULL, /* unimplemented */
1259 1.42 christos /* 245 */ NULL, /* unimplemented */
1260 1.42 christos /* 246 */ NULL, /* unimplemented */
1261 1.42 christos /* 247 */ NULL, /* unimplemented */
1262 1.42 christos /* 248 */ NULL, /* unimplemented */
1263 1.42 christos /* 249 */ NULL, /* unimplemented */
1264 1.42 christos /* 250 */ NULL, /* unimplemented */
1265 1.42 christos /* 251 */ NULL, /* unimplemented */
1266 1.42 christos /* 252 */ NULL, /* unimplemented */
1267 1.42 christos /* 253 */ NULL, /* unimplemented */
1268 1.42 christos /* 254 */ NULL, /* unimplemented */
1269 1.42 christos /* 255 */ NULL, /* unimplemented */
1270 1.42 christos /* 256 */ NULL, /* unimplemented */
1271 1.42 christos /* 257 */ NULL, /* unimplemented */
1272 1.42 christos /* 258 */ NULL, /* unimplemented */
1273 1.42 christos /* 259 */ NULL, /* unimplemented */
1274 1.42 christos /* 260 */ NULL, /* unimplemented */
1275 1.42 christos /* 261 */ NULL, /* unimplemented */
1276 1.42 christos /* 262 */ NULL, /* unimplemented */
1277 1.42 christos /* 263 */ NULL, /* unimplemented */
1278 1.42 christos /* 264 */ NULL, /* unimplemented */
1279 1.42 christos /* 265 */ NULL, /* unimplemented */
1280 1.42 christos /* 266 */ NULL, /* unimplemented */
1281 1.42 christos /* 267 */ NULL, /* unimplemented */
1282 1.42 christos /* 268 */ NULL, /* unimplemented */
1283 1.42 christos /* 269 */ NULL, /* unimplemented */
1284 1.42 christos /* 270 */ NULL, /* __posix_rename */
1285 1.42 christos /* 271 */ NULL, /* swapctl */
1286 1.42 christos #if defined(COMPAT_30) || !defined(_KERNEL)
1287 1.42 christos /* 272 */ NULL, /* getdents */
1288 1.42 christos #else
1289 1.42 christos /* 272 */ NULL, /* excluded compat_30_sys_getdents */
1290 1.42 christos #endif
1291 1.42 christos /* 273 */ NULL, /* minherit */
1292 1.42 christos /* 274 */ NULL, /* lchmod */
1293 1.42 christos /* 275 */ NULL, /* lchown */
1294 1.42 christos /* 276 */ NULL, /* lutimes */
1295 1.42 christos /* 277 */ "msync",
1296 1.42 christos /* 278 */ "stat",
1297 1.42 christos /* 279 */ "fstat",
1298 1.42 christos /* 280 */ "lstat",
1299 1.42 christos /* 281 */ "sigaltstack",
1300 1.42 christos /* 282 */ "vfork",
1301 1.42 christos /* 283 */ NULL, /* __posix_chown */
1302 1.42 christos /* 284 */ NULL, /* __posix_fchown */
1303 1.42 christos /* 285 */ NULL, /* __posix_lchown */
1304 1.42 christos /* 286 */ NULL, /* getsid */
1305 1.42 christos /* 287 */ NULL, /* unimplemented */
1306 1.42 christos #if defined(KTRACE) || !defined(_KERNEL)
1307 1.42 christos /* 288 */ NULL, /* fktrace */
1308 1.42 christos #else
1309 1.42 christos /* 288 */ NULL, /* excluded ktrace */
1310 1.42 christos #endif
1311 1.42 christos /* 289 */ NULL, /* preadv */
1312 1.42 christos /* 290 */ NULL, /* pwritev */
1313 1.42 christos #if defined(COMPAT_16) || !defined(_KERNEL)
1314 1.42 christos /* 291 */ "sigaction",
1315 1.42 christos #else
1316 1.42 christos /* 291 */ NULL, /* excluded compat_16_sys___sigaction14 */
1317 1.42 christos #endif
1318 1.42 christos /* 292 */ "sigpending",
1319 1.42 christos /* 293 */ "sigprocmask",
1320 1.42 christos /* 294 */ "sigsuspend",
1321 1.42 christos #if defined(COMPAT_16) || !defined(_KERNEL)
1322 1.42 christos /* 295 */ "sigreturn",
1323 1.42 christos #else
1324 1.42 christos /* 295 */ NULL, /* excluded compat_16_sys___sigreturn14 */
1325 1.42 christos #endif
1326 1.42 christos /* 296 */ NULL, /* __getcwd */
1327 1.42 christos /* 297 */ NULL, /* fchroot */
1328 1.51 pgoyette #if defined(COMPAT_30) || ! defined(_KERNEL)
1329 1.42 christos /* 298 */ NULL, /* fhopen */
1330 1.51 pgoyette #else
1331 1.51 pgoyette /* 298 */ NULL, /* excluded compat_30_sys_fhopen */
1332 1.51 pgoyette #endif
1333 1.42 christos /* 299 */ NULL, /* fhstat */
1334 1.42 christos #if defined(COMPAT_20) || !defined(_KERNEL)
1335 1.42 christos /* 300 */ NULL, /* fhstatfs */
1336 1.42 christos #else
1337 1.42 christos /* 300 */ NULL, /* excluded compat_20_sys_fhstatfs */
1338 1.42 christos #endif
1339 1.42 christos #if defined(SYSVSEM) || !defined(_KERNEL)
1340 1.42 christos /* 301 */ "__semctl",
1341 1.42 christos #else
1342 1.42 christos /* 301 */ NULL, /* excluded ____semctl13 */
1343 1.42 christos #endif
1344 1.42 christos #if defined(SYSVMSG) || !defined(_KERNEL)
1345 1.42 christos /* 302 */ "msgctl",
1346 1.42 christos #else
1347 1.42 christos /* 302 */ NULL, /* excluded __msgctl13 */
1348 1.42 christos #endif
1349 1.42 christos #if defined(SYSVSHM) || !defined(_KERNEL)
1350 1.42 christos /* 303 */ "shmctl",
1351 1.42 christos #else
1352 1.42 christos /* 303 */ NULL, /* excluded __shmctl13 */
1353 1.42 christos #endif
1354 1.42 christos /* 304 */ NULL, /* lchflags */
1355 1.42 christos /* 305 */ NULL, /* issetugid */
1356 1.42 christos /* 306 */ NULL, /* getcontext */
1357 1.42 christos /* 307 */ NULL, /* setcontext */
1358 1.42 christos /* 308 */ NULL, /* filler */
1359 1.42 christos /* 309 */ NULL, /* filler */
1360 1.42 christos /* 310 */ NULL, /* filler */
1361 1.42 christos /* 311 */ NULL, /* filler */
1362 1.42 christos /* 312 */ NULL, /* filler */
1363 1.42 christos /* 313 */ NULL, /* filler */
1364 1.42 christos /* 314 */ NULL, /* filler */
1365 1.42 christos /* 315 */ NULL, /* filler */
1366 1.42 christos /* 316 */ NULL, /* filler */
1367 1.42 christos /* 317 */ NULL, /* filler */
1368 1.42 christos /* 318 */ NULL, /* filler */
1369 1.42 christos /* 319 */ NULL, /* filler */
1370 1.42 christos /* 320 */ NULL, /* filler */
1371 1.42 christos /* 321 */ NULL, /* filler */
1372 1.42 christos /* 322 */ NULL, /* filler */
1373 1.42 christos /* 323 */ NULL, /* filler */
1374 1.42 christos /* 324 */ NULL, /* filler */
1375 1.42 christos /* 325 */ NULL, /* filler */
1376 1.42 christos /* 326 */ NULL, /* filler */
1377 1.42 christos /* 327 */ NULL, /* filler */
1378 1.42 christos /* 328 */ NULL, /* filler */
1379 1.42 christos /* 329 */ NULL, /* filler */
1380 1.42 christos /* 330 */ NULL, /* filler */
1381 1.42 christos /* 331 */ NULL, /* filler */
1382 1.42 christos /* 332 */ NULL, /* filler */
1383 1.42 christos /* 333 */ NULL, /* filler */
1384 1.42 christos /* 334 */ NULL, /* filler */
1385 1.42 christos /* 335 */ NULL, /* filler */
1386 1.42 christos /* 336 */ NULL, /* filler */
1387 1.42 christos /* 337 */ NULL, /* filler */
1388 1.42 christos /* 338 */ NULL, /* filler */
1389 1.42 christos /* 339 */ NULL, /* filler */
1390 1.42 christos /* 340 */ NULL, /* filler */
1391 1.42 christos /* 341 */ NULL, /* filler */
1392 1.42 christos /* 342 */ NULL, /* filler */
1393 1.42 christos /* 343 */ NULL, /* filler */
1394 1.42 christos /* 344 */ NULL, /* filler */
1395 1.42 christos /* 345 */ NULL, /* filler */
1396 1.42 christos /* 346 */ NULL, /* filler */
1397 1.42 christos /* 347 */ NULL, /* filler */
1398 1.42 christos /* 348 */ NULL, /* filler */
1399 1.42 christos /* 349 */ NULL, /* filler */
1400 1.42 christos /* 350 */ NULL, /* filler */
1401 1.42 christos /* 351 */ NULL, /* filler */
1402 1.42 christos /* 352 */ NULL, /* filler */
1403 1.42 christos /* 353 */ NULL, /* filler */
1404 1.42 christos /* 354 */ NULL, /* filler */
1405 1.42 christos /* 355 */ NULL, /* filler */
1406 1.42 christos /* 356 */ NULL, /* filler */
1407 1.42 christos /* 357 */ NULL, /* filler */
1408 1.42 christos /* 358 */ NULL, /* filler */
1409 1.42 christos /* 359 */ NULL, /* filler */
1410 1.42 christos /* 360 */ NULL, /* filler */
1411 1.42 christos /* 361 */ NULL, /* filler */
1412 1.42 christos /* 362 */ NULL, /* filler */
1413 1.42 christos /* 363 */ NULL, /* filler */
1414 1.42 christos /* 364 */ NULL, /* filler */
1415 1.42 christos /* 365 */ NULL, /* filler */
1416 1.42 christos /* 366 */ NULL, /* filler */
1417 1.42 christos /* 367 */ NULL, /* filler */
1418 1.42 christos /* 368 */ NULL, /* filler */
1419 1.42 christos /* 369 */ NULL, /* filler */
1420 1.42 christos /* 370 */ NULL, /* filler */
1421 1.42 christos /* 371 */ NULL, /* filler */
1422 1.42 christos /* 372 */ NULL, /* filler */
1423 1.42 christos /* 373 */ NULL, /* filler */
1424 1.42 christos /* 374 */ NULL, /* filler */
1425 1.42 christos /* 375 */ NULL, /* filler */
1426 1.42 christos /* 376 */ NULL, /* filler */
1427 1.42 christos /* 377 */ NULL, /* filler */
1428 1.42 christos /* 378 */ NULL, /* filler */
1429 1.42 christos /* 379 */ NULL, /* filler */
1430 1.42 christos /* 380 */ NULL, /* filler */
1431 1.42 christos /* 381 */ NULL, /* filler */
1432 1.42 christos /* 382 */ NULL, /* filler */
1433 1.42 christos /* 383 */ NULL, /* filler */
1434 1.42 christos /* 384 */ NULL, /* filler */
1435 1.42 christos /* 385 */ NULL, /* filler */
1436 1.42 christos /* 386 */ NULL, /* filler */
1437 1.42 christos /* 387 */ NULL, /* filler */
1438 1.42 christos /* 388 */ NULL, /* filler */
1439 1.42 christos /* 389 */ NULL, /* filler */
1440 1.42 christos /* 390 */ NULL, /* filler */
1441 1.42 christos /* 391 */ NULL, /* filler */
1442 1.42 christos /* 392 */ NULL, /* filler */
1443 1.42 christos /* 393 */ NULL, /* filler */
1444 1.42 christos /* 394 */ NULL, /* filler */
1445 1.42 christos /* 395 */ NULL, /* filler */
1446 1.42 christos /* 396 */ NULL, /* filler */
1447 1.42 christos /* 397 */ NULL, /* filler */
1448 1.42 christos /* 398 */ NULL, /* filler */
1449 1.42 christos /* 399 */ NULL, /* filler */
1450 1.42 christos /* 400 */ NULL, /* filler */
1451 1.42 christos /* 401 */ NULL, /* filler */
1452 1.42 christos /* 402 */ NULL, /* filler */
1453 1.42 christos /* 403 */ NULL, /* filler */
1454 1.42 christos /* 404 */ NULL, /* filler */
1455 1.42 christos /* 405 */ NULL, /* filler */
1456 1.42 christos /* 406 */ NULL, /* filler */
1457 1.42 christos /* 407 */ NULL, /* filler */
1458 1.42 christos /* 408 */ NULL, /* filler */
1459 1.42 christos /* 409 */ NULL, /* filler */
1460 1.42 christos /* 410 */ NULL, /* filler */
1461 1.42 christos /* 411 */ NULL, /* filler */
1462 1.42 christos /* 412 */ NULL, /* filler */
1463 1.42 christos /* 413 */ NULL, /* filler */
1464 1.42 christos /* 414 */ NULL, /* filler */
1465 1.42 christos /* 415 */ NULL, /* filler */
1466 1.42 christos /* 416 */ NULL, /* filler */
1467 1.42 christos /* 417 */ NULL, /* filler */
1468 1.42 christos /* 418 */ NULL, /* filler */
1469 1.42 christos /* 419 */ NULL, /* filler */
1470 1.42 christos /* 420 */ NULL, /* filler */
1471 1.42 christos /* 421 */ NULL, /* filler */
1472 1.42 christos /* 422 */ NULL, /* filler */
1473 1.42 christos /* 423 */ NULL, /* filler */
1474 1.42 christos /* 424 */ NULL, /* filler */
1475 1.42 christos /* 425 */ NULL, /* filler */
1476 1.42 christos /* 426 */ NULL, /* filler */
1477 1.42 christos /* 427 */ NULL, /* filler */
1478 1.42 christos /* 428 */ NULL, /* filler */
1479 1.42 christos /* 429 */ NULL, /* filler */
1480 1.42 christos /* 430 */ NULL, /* filler */
1481 1.42 christos /* 431 */ NULL, /* filler */
1482 1.42 christos /* 432 */ NULL, /* filler */
1483 1.42 christos /* 433 */ NULL, /* filler */
1484 1.42 christos /* 434 */ NULL, /* filler */
1485 1.42 christos /* 435 */ NULL, /* filler */
1486 1.42 christos /* 436 */ NULL, /* filler */
1487 1.42 christos /* 437 */ NULL, /* filler */
1488 1.42 christos /* 438 */ NULL, /* filler */
1489 1.42 christos /* 439 */ NULL, /* filler */
1490 1.42 christos /* 440 */ NULL, /* filler */
1491 1.42 christos /* 441 */ NULL, /* filler */
1492 1.42 christos /* 442 */ NULL, /* filler */
1493 1.42 christos /* 443 */ NULL, /* filler */
1494 1.42 christos /* 444 */ NULL, /* filler */
1495 1.42 christos /* 445 */ NULL, /* filler */
1496 1.42 christos /* 446 */ NULL, /* filler */
1497 1.42 christos /* 447 */ NULL, /* filler */
1498 1.42 christos /* 448 */ NULL, /* filler */
1499 1.42 christos /* 449 */ NULL, /* filler */
1500 1.42 christos /* 450 */ NULL, /* filler */
1501 1.42 christos /* 451 */ NULL, /* filler */
1502 1.42 christos /* 452 */ NULL, /* filler */
1503 1.42 christos /* 453 */ NULL, /* filler */
1504 1.42 christos /* 454 */ NULL, /* filler */
1505 1.42 christos /* 455 */ NULL, /* filler */
1506 1.42 christos /* 456 */ NULL, /* filler */
1507 1.42 christos /* 457 */ NULL, /* filler */
1508 1.42 christos /* 458 */ NULL, /* filler */
1509 1.42 christos /* 459 */ NULL, /* filler */
1510 1.42 christos /* 460 */ NULL, /* filler */
1511 1.42 christos /* 461 */ NULL, /* filler */
1512 1.42 christos /* 462 */ NULL, /* filler */
1513 1.42 christos /* 463 */ NULL, /* filler */
1514 1.42 christos /* 464 */ NULL, /* filler */
1515 1.42 christos /* 465 */ NULL, /* filler */
1516 1.42 christos /* 466 */ NULL, /* filler */
1517 1.42 christos /* 467 */ NULL, /* filler */
1518 1.42 christos /* 468 */ NULL, /* filler */
1519 1.42 christos /* 469 */ NULL, /* filler */
1520 1.42 christos /* 470 */ NULL, /* filler */
1521 1.42 christos /* 471 */ NULL, /* filler */
1522 1.42 christos /* 472 */ NULL, /* filler */
1523 1.42 christos /* 473 */ NULL, /* filler */
1524 1.42 christos /* 474 */ NULL, /* filler */
1525 1.42 christos /* 475 */ NULL, /* filler */
1526 1.42 christos /* 476 */ NULL, /* filler */
1527 1.42 christos /* 477 */ NULL, /* filler */
1528 1.42 christos /* 478 */ NULL, /* filler */
1529 1.42 christos /* 479 */ NULL, /* filler */
1530 1.42 christos /* 480 */ NULL, /* filler */
1531 1.42 christos /* 481 */ NULL, /* filler */
1532 1.42 christos /* 482 */ NULL, /* filler */
1533 1.42 christos /* 483 */ NULL, /* filler */
1534 1.42 christos /* 484 */ NULL, /* filler */
1535 1.42 christos /* 485 */ NULL, /* filler */
1536 1.42 christos /* 486 */ NULL, /* filler */
1537 1.42 christos /* 487 */ NULL, /* filler */
1538 1.42 christos /* 488 */ NULL, /* filler */
1539 1.42 christos /* 489 */ NULL, /* filler */
1540 1.42 christos /* 490 */ NULL, /* filler */
1541 1.42 christos /* 491 */ NULL, /* filler */
1542 1.42 christos /* 492 */ NULL, /* filler */
1543 1.42 christos /* 493 */ NULL, /* filler */
1544 1.42 christos /* 494 */ NULL, /* filler */
1545 1.42 christos /* 495 */ NULL, /* filler */
1546 1.42 christos /* 496 */ NULL, /* filler */
1547 1.42 christos /* 497 */ NULL, /* filler */
1548 1.42 christos /* 498 */ NULL, /* filler */
1549 1.42 christos /* 499 */ NULL, /* filler */
1550 1.42 christos /* 500 */ NULL, /* filler */
1551 1.42 christos /* 501 */ NULL, /* filler */
1552 1.42 christos /* 502 */ NULL, /* filler */
1553 1.42 christos /* 503 */ NULL, /* filler */
1554 1.42 christos /* 504 */ NULL, /* filler */
1555 1.42 christos /* 505 */ NULL, /* filler */
1556 1.42 christos /* 506 */ NULL, /* filler */
1557 1.42 christos /* 507 */ NULL, /* filler */
1558 1.42 christos /* 508 */ NULL, /* filler */
1559 1.42 christos /* 509 */ NULL, /* filler */
1560 1.42 christos /* 510 */ NULL, /* filler */
1561 1.42 christos /* 511 */ NULL, /* filler */
1562 1.42 christos };
1563