1/* $NetBSD: init_sysent.c,v 1.313 2016/11/02 00:14:11 pgoyette Exp $ */
2
3/*
4 * System call switch table.
5 *
6 * DO NOT EDIT-- this file is automatically generated.
7 * created from NetBSD: syscalls.master,v 1.286 2016/11/02 00:11:59 pgoyette Exp
8 */
9
10#include <sys/cdefs.h>
11__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.313 2016/11/02 00:14:11 pgoyette Exp $");
12
13#include "opt_modular.h"
14#include "opt_ntp.h"
15#include "opt_sysv.h"
16#include <sys/param.h>
17#include <sys/systm.h>
18#include <sys/signal.h>
19#include <sys/socket.h>
20#include <sys/mount.h>
21#include <sys/sched.h>
22#include <sys/idtype.h>
23#include <sys/syscallargs.h>
24
25#ifdef COMPAT_43
26#define compat_43(func) __CONCAT(compat_43_,func)
27#else
28#define compat_43(func) sys_nosys
29#endif
30
31#ifdef COMPAT_09
32#define compat_09(func) __CONCAT(compat_09_,func)
33#else
34#define compat_09(func) sys_nosys
35#endif
36
37#ifdef COMPAT_10
38#define compat_10(func) __CONCAT(compat_10_,func)
39#else
40#define compat_10(func) sys_nosys
41#endif
42
43#ifdef COMPAT_11
44#define compat_11(func) __CONCAT(compat_11_,func)
45#else
46#define compat_11(func) sys_nosys
47#endif
48
49#ifdef COMPAT_12
50#define compat_12(func) __CONCAT(compat_12_,func)
51#else
52#define compat_12(func) sys_nosys
53#endif
54
55#ifdef COMPAT_13
56#define compat_13(func) __CONCAT(compat_13_,func)
57#else
58#define compat_13(func) sys_nosys
59#endif
60
61#ifdef COMPAT_14
62#define compat_14(func) __CONCAT(compat_14_,func)
63#else
64#define compat_14(func) sys_nosys
65#endif
66
67#ifdef COMPAT_15
68#define compat_15(func) __CONCAT(compat_15_,func)
69#else
70#define compat_15(func) sys_nosys
71#endif
72
73#ifdef COMPAT_16
74#define compat_16(func) __CONCAT(compat_16_,func)
75#else
76#define compat_16(func) sys_nosys
77#endif
78
79#ifdef COMPAT_20
80#define compat_20(func) __CONCAT(compat_20_,func)
81#else
82#define compat_20(func) sys_nosys
83#endif
84
85#ifdef COMPAT_30
86#define compat_30(func) __CONCAT(compat_30_,func)
87#else
88#define compat_30(func) sys_nosys
89#endif
90
91#ifdef COMPAT_40
92#define compat_40(func) __CONCAT(compat_40_,func)
93#else
94#define compat_40(func) sys_nosys
95#endif
96
97#ifdef COMPAT_50
98#define compat_50(func) __CONCAT(compat_50_,func)
99#else
100#define compat_50(func) sys_nosys
101#endif
102
103#ifdef COMPAT_60
104#define compat_60(func) __CONCAT(compat_60_,func)
105#else
106#define compat_60(func) sys_nosys
107#endif
108
109#ifdef COMPAT_70
110#define compat_70(func) __CONCAT(compat_70_,func)
111#else
112#define compat_70(func) sys_nosys
113#endif
114
115#define s(type) sizeof(type)
116#define n(type) (sizeof(type)/sizeof (register_t))
117#define ns(type) .sy_narg = n(type), .sy_argsize = s(type)
118
119struct sysent sysent[] = {
120 {
121 ns(struct sys_syscall_args),
122 .sy_flags = SYCALL_INDIRECT,
123 .sy_call = (sy_call_t *)sys_syscall
124 }, /* 0 = syscall */
125 {
126 ns(struct sys_exit_args),
127 .sy_call = (sy_call_t *)sys_exit
128 }, /* 1 = exit */
129 {
130 .sy_call = (sy_call_t *)sys_fork
131 }, /* 2 = fork */
132 {
133 ns(struct sys_read_args),
134 .sy_flags = SYCALL_ARG_PTR,
135 .sy_call = (sy_call_t *)sys_read
136 }, /* 3 = read */
137 {
138 ns(struct sys_write_args),
139 .sy_flags = SYCALL_ARG_PTR,
140 .sy_call = (sy_call_t *)sys_write
141 }, /* 4 = write */
142 {
143 ns(struct sys_open_args),
144 .sy_flags = SYCALL_ARG_PTR,
145 .sy_call = (sy_call_t *)sys_open
146 }, /* 5 = open */
147 {
148 ns(struct sys_close_args),
149 .sy_call = (sy_call_t *)sys_close
150 }, /* 6 = close */
151 {
152 ns(struct compat_50_sys_wait4_args),
153 .sy_flags = SYCALL_ARG_PTR,
154 .sy_call = (sy_call_t *)sys_nomodule
155 }, /* 7 = compat_50_wait4 */
156 {
157 ns(struct compat_43_sys_creat_args),
158 .sy_flags = SYCALL_ARG_PTR,
159 .sy_call = (sy_call_t *)sys_nomodule
160 }, /* 8 = compat_43_ocreat */
161 {
162 ns(struct sys_link_args),
163 .sy_flags = SYCALL_ARG_PTR,
164 .sy_call = (sy_call_t *)sys_link
165 }, /* 9 = link */
166 {
167 ns(struct sys_unlink_args),
168 .sy_flags = SYCALL_ARG_PTR,
169 .sy_call = (sy_call_t *)sys_unlink
170 }, /* 10 = unlink */
171 {
172 .sy_call = sys_nosys,
173 }, /* 11 = filler */
174 {
175 ns(struct sys_chdir_args),
176 .sy_flags = SYCALL_ARG_PTR,
177 .sy_call = (sy_call_t *)sys_chdir
178 }, /* 12 = chdir */
179 {
180 ns(struct sys_fchdir_args),
181 .sy_call = (sy_call_t *)sys_fchdir
182 }, /* 13 = fchdir */
183 {
184 ns(struct compat_50_sys_mknod_args),
185 .sy_flags = SYCALL_ARG_PTR,
186 .sy_call = (sy_call_t *)sys_nomodule
187 }, /* 14 = compat_50_mknod */
188 {
189 ns(struct sys_chmod_args),
190 .sy_flags = SYCALL_ARG_PTR,
191 .sy_call = (sy_call_t *)sys_chmod
192 }, /* 15 = chmod */
193 {
194 ns(struct sys_chown_args),
195 .sy_flags = SYCALL_ARG_PTR,
196 .sy_call = (sy_call_t *)sys_chown
197 }, /* 16 = chown */
198 {
199 ns(struct sys_obreak_args),
200 .sy_flags = SYCALL_ARG_PTR,
201 .sy_call = (sy_call_t *)sys_obreak
202 }, /* 17 = break */
203 {
204 ns(struct compat_20_sys_getfsstat_args),
205 .sy_flags = SYCALL_ARG_PTR,
206 .sy_call = (sy_call_t *)sys_nomodule
207 }, /* 18 = compat_20_getfsstat */
208 {
209 ns(struct compat_43_sys_lseek_args),
210 .sy_call = (sy_call_t *)sys_nomodule
211 }, /* 19 = compat_43_olseek */
212 {
213 .sy_call = (sy_call_t *)sys_getpid_with_ppid
214 }, /* 20 = getpid */
215 {
216 ns(struct compat_40_sys_mount_args),
217 .sy_flags = SYCALL_ARG_PTR,
218 .sy_call = (sy_call_t *)sys_nomodule
219 }, /* 21 = compat_40_mount */
220 {
221 ns(struct sys_unmount_args),
222 .sy_flags = SYCALL_ARG_PTR,
223 .sy_call = (sy_call_t *)sys_unmount
224 }, /* 22 = unmount */
225 {
226 ns(struct sys_setuid_args),
227 .sy_call = (sy_call_t *)sys_setuid
228 }, /* 23 = setuid */
229 {
230 .sy_call = (sy_call_t *)sys_getuid_with_euid
231 }, /* 24 = getuid */
232 {
233 .sy_call = (sy_call_t *)sys_geteuid
234 }, /* 25 = geteuid */
235 {
236 ns(struct sys_ptrace_args),
237 .sy_flags = SYCALL_ARG_PTR,
238 .sy_call = (sy_call_t *)sys_nomodule
239 }, /* 26 = ptrace */
240 {
241 ns(struct sys_recvmsg_args),
242 .sy_flags = SYCALL_ARG_PTR,
243 .sy_call = (sy_call_t *)sys_recvmsg
244 }, /* 27 = recvmsg */
245 {
246 ns(struct sys_sendmsg_args),
247 .sy_flags = SYCALL_ARG_PTR,
248 .sy_call = (sy_call_t *)sys_sendmsg
249 }, /* 28 = sendmsg */
250 {
251 ns(struct sys_recvfrom_args),
252 .sy_flags = SYCALL_ARG_PTR,
253 .sy_call = (sy_call_t *)sys_recvfrom
254 }, /* 29 = recvfrom */
255 {
256 ns(struct sys_accept_args),
257 .sy_flags = SYCALL_ARG_PTR,
258 .sy_call = (sy_call_t *)sys_accept
259 }, /* 30 = accept */
260 {
261 ns(struct sys_getpeername_args),
262 .sy_flags = SYCALL_ARG_PTR,
263 .sy_call = (sy_call_t *)sys_getpeername
264 }, /* 31 = getpeername */
265 {
266 ns(struct sys_getsockname_args),
267 .sy_flags = SYCALL_ARG_PTR,
268 .sy_call = (sy_call_t *)sys_getsockname
269 }, /* 32 = getsockname */
270 {
271 ns(struct sys_access_args),
272 .sy_flags = SYCALL_ARG_PTR,
273 .sy_call = (sy_call_t *)sys_access
274 }, /* 33 = access */
275 {
276 ns(struct sys_chflags_args),
277 .sy_flags = SYCALL_ARG_PTR,
278 .sy_call = (sy_call_t *)sys_chflags
279 }, /* 34 = chflags */
280 {
281 ns(struct sys_fchflags_args),
282 .sy_call = (sy_call_t *)sys_fchflags
283 }, /* 35 = fchflags */
284 {
285 .sy_call = (sy_call_t *)sys_sync
286 }, /* 36 = sync */
287 {
288 ns(struct sys_kill_args),
289 .sy_call = (sy_call_t *)sys_kill
290 }, /* 37 = kill */
291 {
292 ns(struct compat_43_sys_stat_args),
293 .sy_flags = SYCALL_ARG_PTR,
294 .sy_call = (sy_call_t *)sys_nomodule
295 }, /* 38 = compat_43_stat43 */
296 {
297 .sy_call = (sy_call_t *)sys_getppid
298 }, /* 39 = getppid */
299 {
300 ns(struct compat_43_sys_lstat_args),
301 .sy_flags = SYCALL_ARG_PTR,
302 .sy_call = (sy_call_t *)sys_nomodule
303 }, /* 40 = compat_43_lstat43 */
304 {
305 ns(struct sys_dup_args),
306 .sy_call = (sy_call_t *)sys_dup
307 }, /* 41 = dup */
308 {
309 .sy_call = (sy_call_t *)sys_pipe
310 }, /* 42 = pipe */
311 {
312 .sy_call = (sy_call_t *)sys_getegid
313 }, /* 43 = getegid */
314 {
315 ns(struct sys_profil_args),
316 .sy_flags = SYCALL_ARG_PTR,
317 .sy_call = (sy_call_t *)sys_profil
318 }, /* 44 = profil */
319 {
320 ns(struct sys_ktrace_args),
321 .sy_flags = SYCALL_ARG_PTR,
322 .sy_call = (sy_call_t *)sys_ktrace
323 }, /* 45 = ktrace */
324 {
325 ns(struct compat_13_sys_sigaction_args),
326 .sy_flags = SYCALL_ARG_PTR,
327 .sy_call = (sy_call_t *)sys_nomodule
328 }, /* 46 = compat_13_sigaction13 */
329 {
330 .sy_call = (sy_call_t *)sys_getgid_with_egid
331 }, /* 47 = getgid */
332 {
333 ns(struct compat_13_sys_sigprocmask_args),
334 .sy_call = (sy_call_t *)sys_nomodule
335 }, /* 48 = compat_13_sigprocmask13 */
336 {
337 ns(struct sys___getlogin_args),
338 .sy_flags = SYCALL_ARG_PTR,
339 .sy_call = (sy_call_t *)sys___getlogin
340 }, /* 49 = __getlogin */
341 {
342 ns(struct sys___setlogin_args),
343 .sy_flags = SYCALL_ARG_PTR,
344 .sy_call = (sy_call_t *)sys___setlogin
345 }, /* 50 = __setlogin */
346 {
347 ns(struct sys_acct_args),
348 .sy_flags = SYCALL_ARG_PTR,
349 .sy_call = (sy_call_t *)sys_acct
350 }, /* 51 = acct */
351 {
352 .sy_call = (sy_call_t *)sys_nomodule
353 }, /* 52 = compat_13_sigpending13 */
354 {
355 ns(struct compat_13_sys_sigaltstack_args),
356 .sy_flags = SYCALL_ARG_PTR,
357 .sy_call = (sy_call_t *)sys_nomodule
358 }, /* 53 = compat_13_sigaltstack13 */
359 {
360 ns(struct sys_ioctl_args),
361 .sy_flags = SYCALL_ARG_PTR,
362 .sy_call = (sy_call_t *)sys_ioctl
363 }, /* 54 = ioctl */
364 {
365 ns(struct compat_12_sys_reboot_args),
366 .sy_call = (sy_call_t *)sys_nomodule
367 }, /* 55 = compat_12_oreboot */
368 {
369 ns(struct sys_revoke_args),
370 .sy_flags = SYCALL_ARG_PTR,
371 .sy_call = (sy_call_t *)sys_revoke
372 }, /* 56 = revoke */
373 {
374 ns(struct sys_symlink_args),
375 .sy_flags = SYCALL_ARG_PTR,
376 .sy_call = (sy_call_t *)sys_symlink
377 }, /* 57 = symlink */
378 {
379 ns(struct sys_readlink_args),
380 .sy_flags = SYCALL_ARG_PTR,
381 .sy_call = (sy_call_t *)sys_readlink
382 }, /* 58 = readlink */
383 {
384 ns(struct sys_execve_args),
385 .sy_flags = SYCALL_ARG_PTR,
386 .sy_call = (sy_call_t *)sys_execve
387 }, /* 59 = execve */
388 {
389 ns(struct sys_umask_args),
390 .sy_call = (sy_call_t *)sys_umask
391 }, /* 60 = umask */
392 {
393 ns(struct sys_chroot_args),
394 .sy_flags = SYCALL_ARG_PTR,
395 .sy_call = (sy_call_t *)sys_chroot
396 }, /* 61 = chroot */
397 {
398 ns(struct compat_43_sys_fstat_args),
399 .sy_flags = SYCALL_ARG_PTR,
400 .sy_call = (sy_call_t *)sys_nomodule
401 }, /* 62 = compat_43_fstat43 */
402 {
403 ns(struct compat_43_sys_getkerninfo_args),
404 .sy_flags = SYCALL_ARG_PTR,
405 .sy_call = (sy_call_t *)sys_nomodule
406 }, /* 63 = compat_43_ogetkerninfo */
407 {
408 .sy_call = (sy_call_t *)sys_nomodule
409 }, /* 64 = compat_43_ogetpagesize */
410 {
411 ns(struct compat_12_sys_msync_args),
412 .sy_flags = SYCALL_ARG_PTR,
413 .sy_call = (sy_call_t *)sys_nomodule
414 }, /* 65 = compat_12_msync */
415 {
416 .sy_call = (sy_call_t *)sys_vfork
417 }, /* 66 = vfork */
418 {
419 .sy_call = sys_nosys,
420 }, /* 67 = filler */
421 {
422 .sy_call = sys_nosys,
423 }, /* 68 = filler */
424 {
425 ns(struct sys_sbrk_args),
426 .sy_call = (sy_call_t *)sys_sbrk
427 }, /* 69 = sbrk */
428 {
429 ns(struct sys_sstk_args),
430 .sy_call = (sy_call_t *)sys_sstk
431 }, /* 70 = sstk */
432 {
433 ns(struct compat_43_sys_mmap_args),
434 .sy_flags = SYCALL_ARG_PTR,
435 .sy_call = (sy_call_t *)sys_nomodule
436 }, /* 71 = compat_43_ommap */
437 {
438 ns(struct sys_ovadvise_args),
439 .sy_call = (sy_call_t *)sys_ovadvise
440 }, /* 72 = vadvise */
441 {
442 ns(struct sys_munmap_args),
443 .sy_flags = SYCALL_ARG_PTR,
444 .sy_call = (sy_call_t *)sys_munmap
445 }, /* 73 = munmap */
446 {
447 ns(struct sys_mprotect_args),
448 .sy_flags = SYCALL_ARG_PTR,
449 .sy_call = (sy_call_t *)sys_mprotect
450 }, /* 74 = mprotect */
451 {
452 ns(struct sys_madvise_args),
453 .sy_flags = SYCALL_ARG_PTR,
454 .sy_call = (sy_call_t *)sys_madvise
455 }, /* 75 = madvise */
456 {
457 .sy_call = sys_nosys,
458 }, /* 76 = filler */
459 {
460 .sy_call = sys_nosys,
461 }, /* 77 = filler */
462 {
463 ns(struct sys_mincore_args),
464 .sy_flags = SYCALL_ARG_PTR,
465 .sy_call = (sy_call_t *)sys_mincore
466 }, /* 78 = mincore */
467 {
468 ns(struct sys_getgroups_args),
469 .sy_flags = SYCALL_ARG_PTR,
470 .sy_call = (sy_call_t *)sys_getgroups
471 }, /* 79 = getgroups */
472 {
473 ns(struct sys_setgroups_args),
474 .sy_flags = SYCALL_ARG_PTR,
475 .sy_call = (sy_call_t *)sys_setgroups
476 }, /* 80 = setgroups */
477 {
478 .sy_call = (sy_call_t *)sys_getpgrp
479 }, /* 81 = getpgrp */
480 {
481 ns(struct sys_setpgid_args),
482 .sy_call = (sy_call_t *)sys_setpgid
483 }, /* 82 = setpgid */
484 {
485 ns(struct compat_50_sys_setitimer_args),
486 .sy_flags = SYCALL_ARG_PTR,
487 .sy_call = (sy_call_t *)sys_nomodule
488 }, /* 83 = compat_50_setitimer */
489 {
490 .sy_call = (sy_call_t *)sys_nomodule
491 }, /* 84 = compat_43_owait */
492 {
493 ns(struct compat_12_sys_swapon_args),
494 .sy_flags = SYCALL_ARG_PTR,
495 .sy_call = (sy_call_t *)sys_nomodule
496 }, /* 85 = compat_12_oswapon */
497 {
498 ns(struct compat_50_sys_getitimer_args),
499 .sy_flags = SYCALL_ARG_PTR,
500 .sy_call = (sy_call_t *)sys_nomodule
501 }, /* 86 = compat_50_getitimer */
502 {
503 ns(struct compat_43_sys_gethostname_args),
504 .sy_flags = SYCALL_ARG_PTR,
505 .sy_call = (sy_call_t *)sys_nomodule
506 }, /* 87 = compat_43_ogethostname */
507 {
508 ns(struct compat_43_sys_sethostname_args),
509 .sy_flags = SYCALL_ARG_PTR,
510 .sy_call = (sy_call_t *)sys_nomodule
511 }, /* 88 = compat_43_osethostname */
512 {
513 .sy_call = (sy_call_t *)sys_nomodule
514 }, /* 89 = compat_43_ogetdtablesize */
515 {
516 ns(struct sys_dup2_args),
517 .sy_call = (sy_call_t *)sys_dup2
518 }, /* 90 = dup2 */
519 {
520 .sy_call = sys_nosys,
521 }, /* 91 = filler */
522 {
523 ns(struct sys_fcntl_args),
524 .sy_flags = SYCALL_ARG_PTR,
525 .sy_call = (sy_call_t *)sys_fcntl
526 }, /* 92 = fcntl */
527 {
528 ns(struct compat_50_sys_select_args),
529 .sy_flags = SYCALL_ARG_PTR,
530 .sy_call = (sy_call_t *)sys_nomodule
531 }, /* 93 = compat_50_select */
532 {
533 .sy_call = sys_nosys,
534 }, /* 94 = filler */
535 {
536 ns(struct sys_fsync_args),
537 .sy_call = (sy_call_t *)sys_fsync
538 }, /* 95 = fsync */
539 {
540 ns(struct sys_setpriority_args),
541 .sy_call = (sy_call_t *)sys_setpriority
542 }, /* 96 = setpriority */
543 {
544 ns(struct compat_30_sys_socket_args),
545 .sy_call = (sy_call_t *)sys_nomodule
546 }, /* 97 = compat_30_socket */
547 {
548 ns(struct sys_connect_args),
549 .sy_flags = SYCALL_ARG_PTR,
550 .sy_call = (sy_call_t *)sys_connect
551 }, /* 98 = connect */
552 {
553 ns(struct compat_43_sys_accept_args),
554 .sy_flags = SYCALL_ARG_PTR,
555 .sy_call = (sy_call_t *)sys_nomodule
556 }, /* 99 = compat_43_oaccept */
557 {
558 ns(struct sys_getpriority_args),
559 .sy_call = (sy_call_t *)sys_getpriority
560 }, /* 100 = getpriority */
561 {
562 ns(struct compat_43_sys_send_args),
563 .sy_flags = SYCALL_ARG_PTR,
564 .sy_call = (sy_call_t *)sys_nomodule
565 }, /* 101 = compat_43_osend */
566 {
567 ns(struct compat_43_sys_recv_args),
568 .sy_flags = SYCALL_ARG_PTR,
569 .sy_call = (sy_call_t *)sys_nomodule
570 }, /* 102 = compat_43_orecv */
571 {
572 ns(struct compat_13_sys_sigreturn_args),
573 .sy_flags = SYCALL_ARG_PTR,
574 .sy_call = (sy_call_t *)sys_nomodule
575 }, /* 103 = compat_13_sigreturn13 */
576 {
577 ns(struct sys_bind_args),
578 .sy_flags = SYCALL_ARG_PTR,
579 .sy_call = (sy_call_t *)sys_bind
580 }, /* 104 = bind */
581 {
582 ns(struct sys_setsockopt_args),
583 .sy_flags = SYCALL_ARG_PTR,
584 .sy_call = (sy_call_t *)sys_setsockopt
585 }, /* 105 = setsockopt */
586 {
587 ns(struct sys_listen_args),
588 .sy_call = (sy_call_t *)sys_listen
589 }, /* 106 = listen */
590 {
591 .sy_call = sys_nosys,
592 }, /* 107 = filler */
593 {
594 ns(struct compat_43_sys_sigvec_args),
595 .sy_flags = SYCALL_ARG_PTR,
596 .sy_call = (sy_call_t *)sys_nomodule
597 }, /* 108 = compat_43_osigvec */
598 {
599 ns(struct compat_43_sys_sigblock_args),
600 .sy_call = (sy_call_t *)sys_nomodule
601 }, /* 109 = compat_43_osigblock */
602 {
603 ns(struct compat_43_sys_sigsetmask_args),
604 .sy_call = (sy_call_t *)sys_nomodule
605 }, /* 110 = compat_43_osigsetmask */
606 {
607 ns(struct compat_13_sys_sigsuspend_args),
608 .sy_call = (sy_call_t *)sys_nomodule
609 }, /* 111 = compat_13_sigsuspend13 */
610 {
611 ns(struct compat_43_sys_sigstack_args),
612 .sy_flags = SYCALL_ARG_PTR,
613 .sy_call = (sy_call_t *)sys_nomodule
614 }, /* 112 = compat_43_osigstack */
615 {
616 ns(struct compat_43_sys_recvmsg_args),
617 .sy_flags = SYCALL_ARG_PTR,
618 .sy_call = (sy_call_t *)sys_nomodule
619 }, /* 113 = compat_43_orecvmsg */
620 {
621 ns(struct compat_43_sys_sendmsg_args),
622 .sy_flags = SYCALL_ARG_PTR,
623 .sy_call = (sy_call_t *)sys_nomodule
624 }, /* 114 = compat_43_osendmsg */
625 {
626 .sy_call = sys_nosys,
627 }, /* 115 = filler */
628 {
629 ns(struct compat_50_sys_gettimeofday_args),
630 .sy_flags = SYCALL_ARG_PTR,
631 .sy_call = (sy_call_t *)sys_nomodule
632 }, /* 116 = compat_50_gettimeofday */
633 {
634 ns(struct compat_50_sys_getrusage_args),
635 .sy_flags = SYCALL_ARG_PTR,
636 .sy_call = (sy_call_t *)sys_nomodule
637 }, /* 117 = compat_50_getrusage */
638 {
639 ns(struct sys_getsockopt_args),
640 .sy_flags = SYCALL_ARG_PTR,
641 .sy_call = (sy_call_t *)sys_getsockopt
642 }, /* 118 = getsockopt */
643 {
644 .sy_call = sys_nosys,
645 }, /* 119 = filler */
646 {
647 ns(struct sys_readv_args),
648 .sy_flags = SYCALL_ARG_PTR,
649 .sy_call = (sy_call_t *)sys_readv
650 }, /* 120 = readv */
651 {
652 ns(struct sys_writev_args),
653 .sy_flags = SYCALL_ARG_PTR,
654 .sy_call = (sy_call_t *)sys_writev
655 }, /* 121 = writev */
656 {
657 ns(struct compat_50_sys_settimeofday_args),
658 .sy_flags = SYCALL_ARG_PTR,
659 .sy_call = (sy_call_t *)sys_nomodule
660 }, /* 122 = compat_50_settimeofday */
661 {
662 ns(struct sys_fchown_args),
663 .sy_call = (sy_call_t *)sys_fchown
664 }, /* 123 = fchown */
665 {
666 ns(struct sys_fchmod_args),
667 .sy_call = (sy_call_t *)sys_fchmod
668 }, /* 124 = fchmod */
669 {
670 ns(struct compat_43_sys_recvfrom_args),
671 .sy_flags = SYCALL_ARG_PTR,
672 .sy_call = (sy_call_t *)sys_nomodule
673 }, /* 125 = compat_43_orecvfrom */
674 {
675 ns(struct sys_setreuid_args),
676 .sy_call = (sy_call_t *)sys_setreuid
677 }, /* 126 = setreuid */
678 {
679 ns(struct sys_setregid_args),
680 .sy_call = (sy_call_t *)sys_setregid
681 }, /* 127 = setregid */
682 {
683 ns(struct sys_rename_args),
684 .sy_flags = SYCALL_ARG_PTR,
685 .sy_call = (sy_call_t *)sys_rename
686 }, /* 128 = rename */
687 {
688 ns(struct compat_43_sys_truncate_args),
689 .sy_flags = SYCALL_ARG_PTR,
690 .sy_call = (sy_call_t *)sys_nomodule
691 }, /* 129 = compat_43_otruncate */
692 {
693 ns(struct compat_43_sys_ftruncate_args),
694 .sy_call = (sy_call_t *)sys_nomodule
695 }, /* 130 = compat_43_oftruncate */
696 {
697 ns(struct sys_flock_args),
698 .sy_call = (sy_call_t *)sys_flock
699 }, /* 131 = flock */
700 {
701 ns(struct sys_mkfifo_args),
702 .sy_flags = SYCALL_ARG_PTR,
703 .sy_call = (sy_call_t *)sys_mkfifo
704 }, /* 132 = mkfifo */
705 {
706 ns(struct sys_sendto_args),
707 .sy_flags = SYCALL_ARG_PTR,
708 .sy_call = (sy_call_t *)sys_sendto
709 }, /* 133 = sendto */
710 {
711 ns(struct sys_shutdown_args),
712 .sy_call = (sy_call_t *)sys_shutdown
713 }, /* 134 = shutdown */
714 {
715 ns(struct sys_socketpair_args),
716 .sy_flags = SYCALL_ARG_PTR,
717 .sy_call = (sy_call_t *)sys_socketpair
718 }, /* 135 = socketpair */
719 {
720 ns(struct sys_mkdir_args),
721 .sy_flags = SYCALL_ARG_PTR,
722 .sy_call = (sy_call_t *)sys_mkdir
723 }, /* 136 = mkdir */
724 {
725 ns(struct sys_rmdir_args),
726 .sy_flags = SYCALL_ARG_PTR,
727 .sy_call = (sy_call_t *)sys_rmdir
728 }, /* 137 = rmdir */
729 {
730 ns(struct compat_50_sys_utimes_args),
731 .sy_flags = SYCALL_ARG_PTR,
732 .sy_call = (sy_call_t *)sys_nomodule
733 }, /* 138 = compat_50_utimes */
734 {
735 .sy_call = sys_nosys,
736 }, /* 139 = filler */
737 {
738 ns(struct compat_50_sys_adjtime_args),
739 .sy_flags = SYCALL_ARG_PTR,
740 .sy_call = (sy_call_t *)sys_nomodule
741 }, /* 140 = compat_50_adjtime */
742 {
743 ns(struct compat_43_sys_getpeername_args),
744 .sy_flags = SYCALL_ARG_PTR,
745 .sy_call = (sy_call_t *)sys_nomodule
746 }, /* 141 = compat_43_ogetpeername */
747 {
748 .sy_call = (sy_call_t *)sys_nomodule
749 }, /* 142 = compat_43_ogethostid */
750 {
751 ns(struct compat_43_sys_sethostid_args),
752 .sy_call = (sy_call_t *)sys_nomodule
753 }, /* 143 = compat_43_osethostid */
754 {
755 ns(struct compat_43_sys_getrlimit_args),
756 .sy_flags = SYCALL_ARG_PTR,
757 .sy_call = (sy_call_t *)sys_nomodule
758 }, /* 144 = compat_43_ogetrlimit */
759 {
760 ns(struct compat_43_sys_setrlimit_args),
761 .sy_flags = SYCALL_ARG_PTR,
762 .sy_call = (sy_call_t *)sys_nomodule
763 }, /* 145 = compat_43_osetrlimit */
764 {
765 ns(struct compat_43_sys_killpg_args),
766 .sy_call = (sy_call_t *)sys_nomodule
767 }, /* 146 = compat_43_okillpg */
768 {
769 .sy_call = (sy_call_t *)sys_setsid
770 }, /* 147 = setsid */
771 {
772 ns(struct compat_50_sys_quotactl_args),
773 .sy_flags = SYCALL_ARG_PTR,
774 .sy_call = (sy_call_t *)sys_nomodule
775 }, /* 148 = compat_50_quotactl */
776 {
777 .sy_call = (sy_call_t *)sys_nomodule
778 }, /* 149 = compat_43_oquota */
779 {
780 ns(struct compat_43_sys_getsockname_args),
781 .sy_flags = SYCALL_ARG_PTR,
782 .sy_call = (sy_call_t *)sys_nomodule
783 }, /* 150 = compat_43_ogetsockname */
784 {
785 .sy_call = sys_nosys,
786 }, /* 151 = filler */
787 {
788 .sy_call = sys_nosys,
789 }, /* 152 = filler */
790 {
791 .sy_call = sys_nosys,
792 }, /* 153 = filler */
793 {
794 .sy_call = sys_nosys,
795 }, /* 154 = filler */
796 {
797 ns(struct sys_nfssvc_args),
798 .sy_flags = SYCALL_ARG_PTR,
799 .sy_call = (sy_call_t *)sys_nomodule
800 }, /* 155 = nfssvc */
801 {
802 ns(struct compat_43_sys_getdirentries_args),
803 .sy_flags = SYCALL_ARG_PTR,
804 .sy_call = (sy_call_t *)sys_nomodule
805 }, /* 156 = compat_43_ogetdirentries */
806 {
807 ns(struct compat_20_sys_statfs_args),
808 .sy_flags = SYCALL_ARG_PTR,
809 .sy_call = (sy_call_t *)sys_nomodule
810 }, /* 157 = compat_20_statfs */
811 {
812 ns(struct compat_20_sys_fstatfs_args),
813 .sy_flags = SYCALL_ARG_PTR,
814 .sy_call = (sy_call_t *)sys_nomodule
815 }, /* 158 = compat_20_fstatfs */
816 {
817 .sy_call = sys_nosys,
818 }, /* 159 = filler */
819 {
820 .sy_call = sys_nosys,
821 }, /* 160 = filler */
822 {
823 ns(struct compat_30_sys_getfh_args),
824 .sy_flags = SYCALL_ARG_PTR,
825 .sy_call = (sy_call_t *)sys_nomodule
826 }, /* 161 = compat_30_getfh */
827 {
828 ns(struct compat_09_sys_getdomainname_args),
829 .sy_flags = SYCALL_ARG_PTR,
830 .sy_call = (sy_call_t *)sys_nomodule
831 }, /* 162 = compat_09_ogetdomainname */
832 {
833 ns(struct compat_09_sys_setdomainname_args),
834 .sy_flags = SYCALL_ARG_PTR,
835 .sy_call = (sy_call_t *)sys_nomodule
836 }, /* 163 = compat_09_osetdomainname */
837 {
838 ns(struct compat_09_sys_uname_args),
839 .sy_flags = SYCALL_ARG_PTR,
840 .sy_call = (sy_call_t *)sys_nomodule
841 }, /* 164 = compat_09_ouname */
842 {
843 ns(struct sys_sysarch_args),
844 .sy_flags = SYCALL_ARG_PTR,
845 .sy_call = (sy_call_t *)sys_sysarch
846 }, /* 165 = sysarch */
847 {
848 .sy_call = sys_nosys,
849 }, /* 166 = filler */
850 {
851 .sy_call = sys_nosys,
852 }, /* 167 = filler */
853 {
854 .sy_call = sys_nosys,
855 }, /* 168 = filler */
856#if !defined(_LP64)
857 {
858 ns(struct compat_10_sys_semsys_args),
859 .sy_call = (sy_call_t *)sys_nomodule
860 }, /* 169 = compat_10_osemsys */
861#else
862 {
863 .sy_call = sys_nosys,
864 }, /* 169 = filler */
865#endif
866#if !defined(_LP64)
867 {
868 ns(struct compat_10_sys_msgsys_args),
869 .sy_call = (sy_call_t *)sys_nomodule
870 }, /* 170 = compat_10_omsgsys */
871#else
872 {
873 .sy_call = sys_nosys,
874 }, /* 170 = filler */
875#endif
876#if !defined(_LP64)
877 {
878 ns(struct compat_10_sys_shmsys_args),
879 .sy_call = (sy_call_t *)sys_nomodule
880 }, /* 171 = compat_10_oshmsys */
881#else
882 {
883 .sy_call = sys_nosys,
884 }, /* 171 = filler */
885#endif
886 {
887 .sy_call = sys_nosys,
888 }, /* 172 = filler */
889 {
890 ns(struct sys_pread_args),
891 .sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
892 .sy_call = (sy_call_t *)sys_pread
893 }, /* 173 = pread */
894 {
895 ns(struct sys_pwrite_args),
896 .sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
897 .sy_call = (sy_call_t *)sys_pwrite
898 }, /* 174 = pwrite */
899 {
900 ns(struct compat_30_sys_ntp_gettime_args),
901 .sy_flags = SYCALL_ARG_PTR,
902 .sy_call = (sy_call_t *)compat_30(sys_ntp_gettime)
903 }, /* 175 = compat_30_ntp_gettime */
904#if defined(NTP) || !defined(_KERNEL_OPT)
905 {
906 ns(struct sys_ntp_adjtime_args),
907 .sy_flags = SYCALL_ARG_PTR,
908 .sy_call = (sy_call_t *)sys_ntp_adjtime
909 }, /* 176 = ntp_adjtime */
910#else
911 {
912 .sy_call = sys_nosys,
913 }, /* 176 = filler */
914#endif
915 {
916 .sy_call = sys_nosys,
917 }, /* 177 = filler */
918 {
919 .sy_call = sys_nosys,
920 }, /* 178 = filler */
921 {
922 .sy_call = sys_nosys,
923 }, /* 179 = filler */
924 {
925 .sy_call = sys_nosys,
926 }, /* 180 = filler */
927 {
928 ns(struct sys_setgid_args),
929 .sy_call = (sy_call_t *)sys_setgid
930 }, /* 181 = setgid */
931 {
932 ns(struct sys_setegid_args),
933 .sy_call = (sy_call_t *)sys_setegid
934 }, /* 182 = setegid */
935 {
936 ns(struct sys_seteuid_args),
937 .sy_call = (sy_call_t *)sys_seteuid
938 }, /* 183 = seteuid */
939 {
940 ns(struct sys_lfs_bmapv_args),
941 .sy_flags = SYCALL_ARG_PTR,
942 .sy_call = (sy_call_t *)sys_nomodule
943 }, /* 184 = lfs_bmapv */
944 {
945 ns(struct sys_lfs_markv_args),
946 .sy_flags = SYCALL_ARG_PTR,
947 .sy_call = (sy_call_t *)sys_nomodule
948 }, /* 185 = lfs_markv */
949 {
950 ns(struct sys_lfs_segclean_args),
951 .sy_flags = SYCALL_ARG_PTR,
952 .sy_call = (sy_call_t *)sys_nomodule
953 }, /* 186 = lfs_segclean */
954 {
955 ns(struct compat_50_sys_lfs_segwait_args),
956 .sy_flags = SYCALL_ARG_PTR,
957 .sy_call = (sy_call_t *)sys_nomodule
958 }, /* 187 = compat_50_lfs_segwait */
959 {
960 ns(struct compat_12_sys_stat_args),
961 .sy_flags = SYCALL_ARG_PTR,
962 .sy_call = (sy_call_t *)sys_nomodule
963 }, /* 188 = compat_12_stat12 */
964 {
965 ns(struct compat_12_sys_fstat_args),
966 .sy_flags = SYCALL_ARG_PTR,
967 .sy_call = (sy_call_t *)sys_nomodule
968 }, /* 189 = compat_12_fstat12 */
969 {
970 ns(struct compat_12_sys_lstat_args),
971 .sy_flags = SYCALL_ARG_PTR,
972 .sy_call = (sy_call_t *)sys_nomodule
973 }, /* 190 = compat_12_lstat12 */
974 {
975 ns(struct sys_pathconf_args),
976 .sy_flags = SYCALL_ARG_PTR,
977 .sy_call = (sy_call_t *)sys_pathconf
978 }, /* 191 = pathconf */
979 {
980 ns(struct sys_fpathconf_args),
981 .sy_call = (sy_call_t *)sys_fpathconf
982 }, /* 192 = fpathconf */
983 {
984 .sy_call = sys_nosys,
985 }, /* 193 = filler */
986 {
987 ns(struct sys_getrlimit_args),
988 .sy_flags = SYCALL_ARG_PTR,
989 .sy_call = (sy_call_t *)sys_getrlimit
990 }, /* 194 = getrlimit */
991 {
992 ns(struct sys_setrlimit_args),
993 .sy_flags = SYCALL_ARG_PTR,
994 .sy_call = (sy_call_t *)sys_setrlimit
995 }, /* 195 = setrlimit */
996 {
997 ns(struct compat_12_sys_getdirentries_args),
998 .sy_flags = SYCALL_ARG_PTR,
999 .sy_call = (sy_call_t *)sys_nomodule
1000 }, /* 196 = compat_12_getdirentries */
1001 {
1002 ns(struct sys_mmap_args),
1003 .sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG6_64 | SYCALL_ARG_PTR,
1004 .sy_call = (sy_call_t *)sys_mmap
1005 }, /* 197 = mmap */
1006 {
1007 ns(struct sys___syscall_args),
1008 .sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG0_64 | SYCALL_RET_64 | SYCALL_INDIRECT,
1009 .sy_call = (sy_call_t *)sys___syscall
1010 }, /* 198 = __syscall */
1011 {
1012 ns(struct sys_lseek_args),
1013 .sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64 | SYCALL_RET_64,
1014 .sy_call = (sy_call_t *)sys_lseek
1015 }, /* 199 = lseek */
1016 {
1017 ns(struct sys_truncate_args),
1018 .sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64 | SYCALL_ARG_PTR,
1019 .sy_call = (sy_call_t *)sys_truncate
1020 }, /* 200 = truncate */
1021 {
1022 ns(struct sys_ftruncate_args),
1023 .sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64,
1024 .sy_call = (sy_call_t *)sys_ftruncate
1025 }, /* 201 = ftruncate */
1026 {
1027 ns(struct sys___sysctl_args),
1028 .sy_flags = SYCALL_ARG_PTR,
1029 .sy_call = (sy_call_t *)sys___sysctl
1030 }, /* 202 = __sysctl */
1031 {
1032 ns(struct sys_mlock_args),
1033 .sy_flags = SYCALL_ARG_PTR,
1034 .sy_call = (sy_call_t *)sys_mlock
1035 }, /* 203 = mlock */
1036 {
1037 ns(struct sys_munlock_args),
1038 .sy_flags = SYCALL_ARG_PTR,
1039 .sy_call = (sy_call_t *)sys_munlock
1040 }, /* 204 = munlock */
1041 {
1042 ns(struct sys_undelete_args),
1043 .sy_flags = SYCALL_ARG_PTR,
1044 .sy_call = (sy_call_t *)sys_undelete
1045 }, /* 205 = undelete */
1046 {
1047 ns(struct compat_50_sys_futimes_args),
1048 .sy_flags = SYCALL_ARG_PTR,
1049 .sy_call = (sy_call_t *)sys_nomodule
1050 }, /* 206 = compat_50_futimes */
1051 {
1052 ns(struct sys_getpgid_args),
1053 .sy_call = (sy_call_t *)sys_getpgid
1054 }, /* 207 = getpgid */
1055 {
1056 ns(struct sys_reboot_args),
1057 .sy_flags = SYCALL_ARG_PTR,
1058 .sy_call = (sy_call_t *)sys_reboot
1059 }, /* 208 = reboot */
1060 {
1061 ns(struct sys_poll_args),
1062 .sy_flags = SYCALL_ARG_PTR,
1063 .sy_call = (sy_call_t *)sys_poll
1064 }, /* 209 = poll */
1065 {
1066 ns(struct sys_afssys_args),
1067 .sy_call = (sy_call_t *)sys_nomodule
1068 }, /* 210 = afssys */
1069 {
1070 .sy_call = sys_nosys,
1071 }, /* 211 = filler */
1072 {
1073 .sy_call = sys_nosys,
1074 }, /* 212 = filler */
1075 {
1076 .sy_call = sys_nosys,
1077 }, /* 213 = filler */
1078 {
1079 .sy_call = sys_nosys,
1080 }, /* 214 = filler */
1081 {
1082 .sy_call = sys_nosys,
1083 }, /* 215 = filler */
1084 {
1085 .sy_call = sys_nosys,
1086 }, /* 216 = filler */
1087 {
1088 .sy_call = sys_nosys,
1089 }, /* 217 = filler */
1090 {
1091 .sy_call = sys_nosys,
1092 }, /* 218 = filler */
1093 {
1094 .sy_call = sys_nosys,
1095 }, /* 219 = filler */
1096 {
1097 ns(struct compat_14_sys___semctl_args),
1098 .sy_flags = SYCALL_ARG_PTR,
1099 .sy_call = (sy_call_t *)sys_nomodule
1100 }, /* 220 = compat_14___semctl */
1101 {
1102 ns(struct sys_semget_args),
1103 .sy_call = (sy_call_t *)sys_nomodule
1104 }, /* 221 = semget */
1105 {
1106 ns(struct sys_semop_args),
1107 .sy_flags = SYCALL_ARG_PTR,
1108 .sy_call = (sy_call_t *)sys_nomodule
1109 }, /* 222 = semop */
1110 {
1111 ns(struct sys_semconfig_args),
1112 .sy_call = (sy_call_t *)sys_nomodule
1113 }, /* 223 = semconfig */
1114 {
1115 ns(struct compat_14_sys_msgctl_args),
1116 .sy_flags = SYCALL_ARG_PTR,
1117 .sy_call = (sy_call_t *)sys_nomodule
1118 }, /* 224 = compat_14_msgctl */
1119 {
1120 ns(struct sys_msgget_args),
1121 .sy_call = (sy_call_t *)sys_nomodule
1122 }, /* 225 = msgget */
1123 {
1124 ns(struct sys_msgsnd_args),
1125 .sy_flags = SYCALL_ARG_PTR,
1126 .sy_call = (sy_call_t *)sys_nomodule
1127 }, /* 226 = msgsnd */
1128 {
1129 ns(struct sys_msgrcv_args),
1130 .sy_flags = SYCALL_ARG_PTR,
1131 .sy_call = (sy_call_t *)sys_nomodule
1132 }, /* 227 = msgrcv */
1133 {
1134 ns(struct sys_shmat_args),
1135 .sy_flags = SYCALL_ARG_PTR,
1136 .sy_call = (sy_call_t *)sys_nomodule
1137 }, /* 228 = shmat */
1138 {
1139 ns(struct compat_14_sys_shmctl_args),
1140 .sy_flags = SYCALL_ARG_PTR,
1141 .sy_call = (sy_call_t *)sys_nomodule
1142 }, /* 229 = compat_14_shmctl */
1143 {
1144 ns(struct sys_shmdt_args),
1145 .sy_flags = SYCALL_ARG_PTR,
1146 .sy_call = (sy_call_t *)sys_nomodule
1147 }, /* 230 = shmdt */
1148 {
1149 ns(struct sys_shmget_args),
1150 .sy_call = (sy_call_t *)sys_nomodule
1151 }, /* 231 = shmget */
1152 {
1153 ns(struct compat_50_sys_clock_gettime_args),
1154 .sy_flags = SYCALL_ARG_PTR,
1155 .sy_call = (sy_call_t *)sys_nomodule
1156 }, /* 232 = compat_50_clock_gettime */
1157 {
1158 ns(struct compat_50_sys_clock_settime_args),
1159 .sy_flags = SYCALL_ARG_PTR,
1160 .sy_call = (sy_call_t *)sys_nomodule
1161 }, /* 233 = compat_50_clock_settime */
1162 {
1163 ns(struct compat_50_sys_clock_getres_args),
1164 .sy_flags = SYCALL_ARG_PTR,
1165 .sy_call = (sy_call_t *)sys_nomodule
1166 }, /* 234 = compat_50_clock_getres */
1167 {
1168 ns(struct sys_timer_create_args),
1169 .sy_flags = SYCALL_ARG_PTR,
1170 .sy_call = (sy_call_t *)sys_timer_create
1171 }, /* 235 = timer_create */
1172 {
1173 ns(struct sys_timer_delete_args),
1174 .sy_call = (sy_call_t *)sys_timer_delete
1175 }, /* 236 = timer_delete */
1176 {
1177 ns(struct compat_50_sys_timer_settime_args),
1178 .sy_flags = SYCALL_ARG_PTR,
1179 .sy_call = (sy_call_t *)sys_nomodule
1180 }, /* 237 = compat_50_timer_settime */
1181 {
1182 ns(struct compat_50_sys_timer_gettime_args),
1183 .sy_flags = SYCALL_ARG_PTR,
1184 .sy_call = (sy_call_t *)sys_nomodule
1185 }, /* 238 = compat_50_timer_gettime */
1186 {
1187 ns(struct sys_timer_getoverrun_args),
1188 .sy_call = (sy_call_t *)sys_timer_getoverrun
1189 }, /* 239 = timer_getoverrun */
1190 {
1191 ns(struct compat_50_sys_nanosleep_args),
1192 .sy_flags = SYCALL_ARG_PTR,
1193 .sy_call = (sy_call_t *)sys_nomodule
1194 }, /* 240 = compat_50_nanosleep */
1195 {
1196 ns(struct sys_fdatasync_args),
1197 .sy_call = (sy_call_t *)sys_fdatasync
1198 }, /* 241 = fdatasync */
1199 {
1200 ns(struct sys_mlockall_args),
1201 .sy_call = (sy_call_t *)sys_mlockall
1202 }, /* 242 = mlockall */
1203 {
1204 .sy_call = (sy_call_t *)sys_munlockall
1205 }, /* 243 = munlockall */
1206 {
1207 ns(struct compat_50_sys___sigtimedwait_args),
1208 .sy_flags = SYCALL_ARG_PTR,
1209 .sy_call = (sy_call_t *)sys_nomodule
1210 }, /* 244 = compat_50___sigtimedwait */
1211 {
1212 ns(struct sys_sigqueueinfo_args),
1213 .sy_flags = SYCALL_ARG_PTR,
1214 .sy_call = (sy_call_t *)sys_sigqueueinfo
1215 }, /* 245 = sigqueueinfo */
1216 {
1217 ns(struct sys_modctl_args),
1218 .sy_flags = SYCALL_ARG_PTR,
1219 .sy_call = (sy_call_t *)sys_modctl
1220 }, /* 246 = modctl */
1221 {
1222 ns(struct sys__ksem_init_args),
1223 .sy_flags = SYCALL_ARG_PTR,
1224 .sy_call = (sy_call_t *)sys_nomodule
1225 }, /* 247 = _ksem_init */
1226 {
1227 ns(struct sys__ksem_open_args),
1228 .sy_flags = SYCALL_ARG_PTR,
1229 .sy_call = (sy_call_t *)sys_nomodule
1230 }, /* 248 = _ksem_open */
1231 {
1232 ns(struct sys__ksem_unlink_args),
1233 .sy_flags = SYCALL_ARG_PTR,
1234 .sy_call = (sy_call_t *)sys_nomodule
1235 }, /* 249 = _ksem_unlink */
1236 {
1237 ns(struct sys__ksem_close_args),
1238 .sy_call = (sy_call_t *)sys_nomodule
1239 }, /* 250 = _ksem_close */
1240 {
1241 ns(struct sys__ksem_post_args),
1242 .sy_call = (sy_call_t *)sys_nomodule
1243 }, /* 251 = _ksem_post */
1244 {
1245 ns(struct sys__ksem_wait_args),
1246 .sy_call = (sy_call_t *)sys_nomodule
1247 }, /* 252 = _ksem_wait */
1248 {
1249 ns(struct sys__ksem_trywait_args),
1250 .sy_call = (sy_call_t *)sys_nomodule
1251 }, /* 253 = _ksem_trywait */
1252 {
1253 ns(struct sys__ksem_getvalue_args),
1254 .sy_flags = SYCALL_ARG_PTR,
1255 .sy_call = (sy_call_t *)sys_nomodule
1256 }, /* 254 = _ksem_getvalue */
1257 {
1258 ns(struct sys__ksem_destroy_args),
1259 .sy_call = (sy_call_t *)sys_nomodule
1260 }, /* 255 = _ksem_destroy */
1261 {
1262 ns(struct sys__ksem_timedwait_args),
1263 .sy_flags = SYCALL_ARG_PTR,
1264 .sy_call = (sy_call_t *)sys_nomodule
1265 }, /* 256 = _ksem_timedwait */
1266 {
1267 ns(struct sys_mq_open_args),
1268 .sy_flags = SYCALL_ARG_PTR,
1269 .sy_call = (sy_call_t *)sys_nomodule
1270 }, /* 257 = mq_open */
1271 {
1272 ns(struct sys_mq_close_args),
1273 .sy_call = (sy_call_t *)sys_nomodule
1274 }, /* 258 = mq_close */
1275 {
1276 ns(struct sys_mq_unlink_args),
1277 .sy_flags = SYCALL_ARG_PTR,
1278 .sy_call = (sy_call_t *)sys_nomodule
1279 }, /* 259 = mq_unlink */
1280 {
1281 ns(struct sys_mq_getattr_args),
1282 .sy_flags = SYCALL_ARG_PTR,
1283 .sy_call = (sy_call_t *)sys_nomodule
1284 }, /* 260 = mq_getattr */
1285 {
1286 ns(struct sys_mq_setattr_args),
1287 .sy_flags = SYCALL_ARG_PTR,
1288 .sy_call = (sy_call_t *)sys_nomodule
1289 }, /* 261 = mq_setattr */
1290 {
1291 ns(struct sys_mq_notify_args),
1292 .sy_flags = SYCALL_ARG_PTR,
1293 .sy_call = (sy_call_t *)sys_nomodule
1294 }, /* 262 = mq_notify */
1295 {
1296 ns(struct sys_mq_send_args),
1297 .sy_flags = SYCALL_ARG_PTR,
1298 .sy_call = (sy_call_t *)sys_nomodule
1299 }, /* 263 = mq_send */
1300 {
1301 ns(struct sys_mq_receive_args),
1302 .sy_flags = SYCALL_ARG_PTR,
1303 .sy_call = (sy_call_t *)sys_nomodule
1304 }, /* 264 = mq_receive */
1305 {
1306 ns(struct compat_50_sys_mq_timedsend_args),
1307 .sy_flags = SYCALL_ARG_PTR,
1308 .sy_call = (sy_call_t *)sys_nomodule
1309 }, /* 265 = compat_50_mq_timedsend */
1310 {
1311 ns(struct compat_50_sys_mq_timedreceive_args),
1312 .sy_flags = SYCALL_ARG_PTR,
1313 .sy_call = (sy_call_t *)sys_nomodule
1314 }, /* 266 = compat_50_mq_timedreceive */
1315 {
1316 .sy_call = sys_nosys,
1317 }, /* 267 = filler */
1318 {
1319 .sy_call = sys_nosys,
1320 }, /* 268 = filler */
1321 {
1322 .sy_call = sys_nosys,
1323 }, /* 269 = filler */
1324 {
1325 ns(struct sys___posix_rename_args),
1326 .sy_flags = SYCALL_ARG_PTR,
1327 .sy_call = (sy_call_t *)sys___posix_rename
1328 }, /* 270 = __posix_rename */
1329 {
1330 ns(struct sys_swapctl_args),
1331 .sy_flags = SYCALL_ARG_PTR,
1332 .sy_call = (sy_call_t *)sys_swapctl
1333 }, /* 271 = swapctl */
1334 {
1335 ns(struct compat_30_sys_getdents_args),
1336 .sy_flags = SYCALL_ARG_PTR,
1337 .sy_call = (sy_call_t *)sys_nomodule
1338 }, /* 272 = compat_30_getdents */
1339 {
1340 ns(struct sys_minherit_args),
1341 .sy_flags = SYCALL_ARG_PTR,
1342 .sy_call = (sy_call_t *)sys_minherit
1343 }, /* 273 = minherit */
1344 {
1345 ns(struct sys_lchmod_args),
1346 .sy_flags = SYCALL_ARG_PTR,
1347 .sy_call = (sy_call_t *)sys_lchmod
1348 }, /* 274 = lchmod */
1349 {
1350 ns(struct sys_lchown_args),
1351 .sy_flags = SYCALL_ARG_PTR,
1352 .sy_call = (sy_call_t *)sys_lchown
1353 }, /* 275 = lchown */
1354 {
1355 ns(struct compat_50_sys_lutimes_args),
1356 .sy_flags = SYCALL_ARG_PTR,
1357 .sy_call = (sy_call_t *)sys_nomodule
1358 }, /* 276 = compat_50_lutimes */
1359 {
1360 ns(struct sys___msync13_args),
1361 .sy_flags = SYCALL_ARG_PTR,
1362 .sy_call = (sy_call_t *)sys___msync13
1363 }, /* 277 = __msync13 */
1364 {
1365 ns(struct compat_30_sys___stat13_args),
1366 .sy_flags = SYCALL_ARG_PTR,
1367 .sy_call = (sy_call_t *)sys_nomodule
1368 }, /* 278 = compat_30___stat13 */
1369 {
1370 ns(struct compat_30_sys___fstat13_args),
1371 .sy_flags = SYCALL_ARG_PTR,
1372 .sy_call = (sy_call_t *)sys_nomodule
1373 }, /* 279 = compat_30___fstat13 */
1374 {
1375 ns(struct compat_30_sys___lstat13_args),
1376 .sy_flags = SYCALL_ARG_PTR,
1377 .sy_call = (sy_call_t *)sys_nomodule
1378 }, /* 280 = compat_30___lstat13 */
1379 {
1380 ns(struct sys___sigaltstack14_args),
1381 .sy_flags = SYCALL_ARG_PTR,
1382 .sy_call = (sy_call_t *)sys___sigaltstack14
1383 }, /* 281 = __sigaltstack14 */
1384 {
1385 .sy_call = (sy_call_t *)sys___vfork14
1386 }, /* 282 = __vfork14 */
1387 {
1388 ns(struct sys___posix_chown_args),
1389 .sy_flags = SYCALL_ARG_PTR,
1390 .sy_call = (sy_call_t *)sys___posix_chown
1391 }, /* 283 = __posix_chown */
1392 {
1393 ns(struct sys___posix_fchown_args),
1394 .sy_call = (sy_call_t *)sys___posix_fchown
1395 }, /* 284 = __posix_fchown */
1396 {
1397 ns(struct sys___posix_lchown_args),
1398 .sy_flags = SYCALL_ARG_PTR,
1399 .sy_call = (sy_call_t *)sys___posix_lchown
1400 }, /* 285 = __posix_lchown */
1401 {
1402 ns(struct sys_getsid_args),
1403 .sy_call = (sy_call_t *)sys_getsid
1404 }, /* 286 = getsid */
1405 {
1406 ns(struct sys___clone_args),
1407 .sy_flags = SYCALL_ARG_PTR,
1408 .sy_call = (sy_call_t *)sys___clone
1409 }, /* 287 = __clone */
1410 {
1411 ns(struct sys_fktrace_args),
1412 .sy_call = (sy_call_t *)sys_fktrace
1413 }, /* 288 = fktrace */
1414 {
1415 ns(struct sys_preadv_args),
1416 .sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
1417 .sy_call = (sy_call_t *)sys_preadv
1418 }, /* 289 = preadv */
1419 {
1420 ns(struct sys_pwritev_args),
1421 .sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
1422 .sy_call = (sy_call_t *)sys_pwritev
1423 }, /* 290 = pwritev */
1424 {
1425 ns(struct compat_16_sys___sigaction14_args),
1426 .sy_flags = SYCALL_ARG_PTR,
1427 .sy_call = (sy_call_t *)sys_nomodule
1428 }, /* 291 = compat_16___sigaction14 */
1429 {
1430 ns(struct sys___sigpending14_args),
1431 .sy_flags = SYCALL_ARG_PTR,
1432 .sy_call = (sy_call_t *)sys___sigpending14
1433 }, /* 292 = __sigpending14 */
1434 {
1435 ns(struct sys___sigprocmask14_args),
1436 .sy_flags = SYCALL_ARG_PTR,
1437 .sy_call = (sy_call_t *)sys___sigprocmask14
1438 }, /* 293 = __sigprocmask14 */
1439 {
1440 ns(struct sys___sigsuspend14_args),
1441 .sy_flags = SYCALL_ARG_PTR,
1442 .sy_call = (sy_call_t *)sys___sigsuspend14
1443 }, /* 294 = __sigsuspend14 */
1444 {
1445 ns(struct compat_16_sys___sigreturn14_args),
1446 .sy_flags = SYCALL_ARG_PTR,
1447 .sy_call = (sy_call_t *)sys_nomodule
1448 }, /* 295 = compat_16___sigreturn14 */
1449 {
1450 ns(struct sys___getcwd_args),
1451 .sy_flags = SYCALL_ARG_PTR,
1452 .sy_call = (sy_call_t *)sys___getcwd
1453 }, /* 296 = __getcwd */
1454 {
1455 ns(struct sys_fchroot_args),
1456 .sy_call = (sy_call_t *)sys_fchroot
1457 }, /* 297 = fchroot */
1458 {
1459 ns(struct compat_30_sys_fhopen_args),
1460 .sy_flags = SYCALL_ARG_PTR,
1461 .sy_call = (sy_call_t *)sys_nomodule
1462 }, /* 298 = compat_30_fhopen */
1463 {
1464 ns(struct compat_30_sys_fhstat_args),
1465 .sy_flags = SYCALL_ARG_PTR,
1466 .sy_call = (sy_call_t *)sys_nomodule
1467 }, /* 299 = compat_30_fhstat */
1468 {
1469 ns(struct compat_20_sys_fhstatfs_args),
1470 .sy_flags = SYCALL_ARG_PTR,
1471 .sy_call = (sy_call_t *)sys_nomodule
1472 }, /* 300 = compat_20_fhstatfs */
1473 {
1474 ns(struct compat_50_sys_____semctl13_args),
1475 .sy_flags = SYCALL_ARG_PTR,
1476 .sy_call = (sy_call_t *)sys_nomodule
1477 }, /* 301 = compat_50_____semctl13 */
1478 {
1479 ns(struct compat_50_sys___msgctl13_args),
1480 .sy_flags = SYCALL_ARG_PTR,
1481 .sy_call = (sy_call_t *)sys_nomodule
1482 }, /* 302 = compat_50___msgctl13 */
1483 {
1484 ns(struct compat_50_sys___shmctl13_args),
1485 .sy_flags = SYCALL_ARG_PTR,
1486 .sy_call = (sy_call_t *)sys_nomodule
1487 }, /* 303 = compat_50___shmctl13 */
1488 {
1489 ns(struct sys_lchflags_args),
1490 .sy_flags = SYCALL_ARG_PTR,
1491 .sy_call = (sy_call_t *)sys_lchflags
1492 }, /* 304 = lchflags */
1493 {
1494 .sy_call = (sy_call_t *)sys_issetugid
1495 }, /* 305 = issetugid */
1496 {
1497 ns(struct sys_utrace_args),
1498 .sy_flags = SYCALL_ARG_PTR,
1499 .sy_call = (sy_call_t *)sys_utrace
1500 }, /* 306 = utrace */
1501 {
1502 ns(struct sys_getcontext_args),
1503 .sy_flags = SYCALL_ARG_PTR,
1504 .sy_call = (sy_call_t *)sys_getcontext
1505 }, /* 307 = getcontext */
1506 {
1507 ns(struct sys_setcontext_args),
1508 .sy_flags = SYCALL_ARG_PTR,
1509 .sy_call = (sy_call_t *)sys_setcontext
1510 }, /* 308 = setcontext */
1511 {
1512 ns(struct sys__lwp_create_args),
1513 .sy_flags = SYCALL_ARG_PTR,
1514 .sy_call = (sy_call_t *)sys__lwp_create
1515 }, /* 309 = _lwp_create */
1516 {
1517 .sy_call = (sy_call_t *)sys__lwp_exit
1518 }, /* 310 = _lwp_exit */
1519 {
1520 .sy_call = (sy_call_t *)sys__lwp_self
1521 }, /* 311 = _lwp_self */
1522 {
1523 ns(struct sys__lwp_wait_args),
1524 .sy_flags = SYCALL_ARG_PTR,
1525 .sy_call = (sy_call_t *)sys__lwp_wait
1526 }, /* 312 = _lwp_wait */
1527 {
1528 ns(struct sys__lwp_suspend_args),
1529 .sy_call = (sy_call_t *)sys__lwp_suspend
1530 }, /* 313 = _lwp_suspend */
1531 {
1532 ns(struct sys__lwp_continue_args),
1533 .sy_call = (sy_call_t *)sys__lwp_continue
1534 }, /* 314 = _lwp_continue */
1535 {
1536 ns(struct sys__lwp_wakeup_args),
1537 .sy_call = (sy_call_t *)sys__lwp_wakeup
1538 }, /* 315 = _lwp_wakeup */
1539 {
1540 .sy_call = (sy_call_t *)sys__lwp_getprivate
1541 }, /* 316 = _lwp_getprivate */
1542 {
1543 ns(struct sys__lwp_setprivate_args),
1544 .sy_flags = SYCALL_ARG_PTR,
1545 .sy_call = (sy_call_t *)sys__lwp_setprivate
1546 }, /* 317 = _lwp_setprivate */
1547 {
1548 ns(struct sys__lwp_kill_args),
1549 .sy_call = (sy_call_t *)sys__lwp_kill
1550 }, /* 318 = _lwp_kill */
1551 {
1552 ns(struct sys__lwp_detach_args),
1553 .sy_call = (sy_call_t *)sys__lwp_detach
1554 }, /* 319 = _lwp_detach */
1555 {
1556 ns(struct compat_50_sys__lwp_park_args),
1557 .sy_flags = SYCALL_ARG_PTR,
1558 .sy_call = (sy_call_t *)sys_nomodule
1559 }, /* 320 = compat_50__lwp_park */
1560 {
1561 ns(struct sys__lwp_unpark_args),
1562 .sy_flags = SYCALL_ARG_PTR,
1563 .sy_call = (sy_call_t *)sys__lwp_unpark
1564 }, /* 321 = _lwp_unpark */
1565 {
1566 ns(struct sys__lwp_unpark_all_args),
1567 .sy_flags = SYCALL_ARG_PTR,
1568 .sy_call = (sy_call_t *)sys__lwp_unpark_all
1569 }, /* 322 = _lwp_unpark_all */
1570 {
1571 ns(struct sys__lwp_setname_args),
1572 .sy_flags = SYCALL_ARG_PTR,
1573 .sy_call = (sy_call_t *)sys__lwp_setname
1574 }, /* 323 = _lwp_setname */
1575 {
1576 ns(struct sys__lwp_getname_args),
1577 .sy_flags = SYCALL_ARG_PTR,
1578 .sy_call = (sy_call_t *)sys__lwp_getname
1579 }, /* 324 = _lwp_getname */
1580 {
1581 ns(struct sys__lwp_ctl_args),
1582 .sy_flags = SYCALL_ARG_PTR,
1583 .sy_call = (sy_call_t *)sys__lwp_ctl
1584 }, /* 325 = _lwp_ctl */
1585 {
1586 .sy_call = sys_nosys,
1587 }, /* 326 = filler */
1588 {
1589 .sy_call = sys_nosys,
1590 }, /* 327 = filler */
1591 {
1592 .sy_call = sys_nosys,
1593 }, /* 328 = filler */
1594 {
1595 .sy_call = sys_nosys,
1596 }, /* 329 = filler */
1597 {
1598 ns(struct compat_60_sys_sa_register_args),
1599 .sy_flags = SYCALL_ARG_PTR,
1600 .sy_call = (sy_call_t *)compat_60(sys_sa_register)
1601 }, /* 330 = compat_60_sa_register */
1602 {
1603 ns(struct compat_60_sys_sa_stacks_args),
1604 .sy_flags = SYCALL_ARG_PTR,
1605 .sy_call = (sy_call_t *)compat_60(sys_sa_stacks)
1606 }, /* 331 = compat_60_sa_stacks */
1607 {
1608 .sy_call = (sy_call_t *)compat_60(sys_sa_enable)
1609 }, /* 332 = compat_60_sa_enable */
1610 {
1611 ns(struct compat_60_sys_sa_setconcurrency_args),
1612 .sy_call = (sy_call_t *)compat_60(sys_sa_setconcurrency)
1613 }, /* 333 = compat_60_sa_setconcurrency */
1614 {
1615 .sy_call = (sy_call_t *)compat_60(sys_sa_yield)
1616 }, /* 334 = compat_60_sa_yield */
1617 {
1618 ns(struct compat_60_sys_sa_preempt_args),
1619 .sy_call = (sy_call_t *)compat_60(sys_sa_preempt)
1620 }, /* 335 = compat_60_sa_preempt */
1621 {
1622 .sy_call = sys_nosys,
1623 }, /* 336 = filler */
1624 {
1625 .sy_call = sys_nosys,
1626 }, /* 337 = filler */
1627 {
1628 .sy_call = sys_nosys,
1629 }, /* 338 = filler */
1630 {
1631 .sy_call = sys_nosys,
1632 }, /* 339 = filler */
1633 {
1634 ns(struct sys___sigaction_sigtramp_args),
1635 .sy_flags = SYCALL_ARG_PTR,
1636 .sy_call = (sy_call_t *)sys___sigaction_sigtramp
1637 }, /* 340 = __sigaction_sigtramp */
1638 {
1639 ns(struct sys_pmc_get_info_args),
1640 .sy_flags = SYCALL_ARG_PTR,
1641 .sy_call = (sy_call_t *)sys_pmc_get_info
1642 }, /* 341 = pmc_get_info */
1643 {
1644 ns(struct sys_pmc_control_args),
1645 .sy_flags = SYCALL_ARG_PTR,
1646 .sy_call = (sy_call_t *)sys_pmc_control
1647 }, /* 342 = pmc_control */
1648 {
1649 ns(struct sys_rasctl_args),
1650 .sy_flags = SYCALL_ARG_PTR,
1651 .sy_call = (sy_call_t *)sys_rasctl
1652 }, /* 343 = rasctl */
1653 {
1654 .sy_call = (sy_call_t *)sys_kqueue
1655 }, /* 344 = kqueue */
1656 {
1657 ns(struct compat_50_sys_kevent_args),
1658 .sy_flags = SYCALL_ARG_PTR,
1659 .sy_call = (sy_call_t *)sys_nomodule
1660 }, /* 345 = compat_50_kevent */
1661 {
1662 ns(struct sys__sched_setparam_args),
1663 .sy_flags = SYCALL_ARG_PTR,
1664 .sy_call = (sy_call_t *)sys__sched_setparam
1665 }, /* 346 = _sched_setparam */
1666 {
1667 ns(struct sys__sched_getparam_args),
1668 .sy_flags = SYCALL_ARG_PTR,
1669 .sy_call = (sy_call_t *)sys__sched_getparam
1670 }, /* 347 = _sched_getparam */
1671 {
1672 ns(struct sys__sched_setaffinity_args),
1673 .sy_flags = SYCALL_ARG_PTR,
1674 .sy_call = (sy_call_t *)sys__sched_setaffinity
1675 }, /* 348 = _sched_setaffinity */
1676 {
1677 ns(struct sys__sched_getaffinity_args),
1678 .sy_flags = SYCALL_ARG_PTR,
1679 .sy_call = (sy_call_t *)sys__sched_getaffinity
1680 }, /* 349 = _sched_getaffinity */
1681 {
1682 .sy_call = (sy_call_t *)sys_sched_yield
1683 }, /* 350 = sched_yield */
1684 {
1685 ns(struct sys__sched_protect_args),
1686 .sy_call = (sy_call_t *)sys__sched_protect
1687 }, /* 351 = _sched_protect */
1688 {
1689 .sy_call = sys_nosys,
1690 }, /* 352 = filler */
1691 {
1692 .sy_call = sys_nosys,
1693 }, /* 353 = filler */
1694 {
1695 ns(struct sys_fsync_range_args),
1696 .sy_flags = SYCALL_NARGS64_VAL(2) | SYCALL_ARG3_64 | SYCALL_ARG2_64,
1697 .sy_call = (sy_call_t *)sys_fsync_range
1698 }, /* 354 = fsync_range */
1699 {
1700 ns(struct sys_uuidgen_args),
1701 .sy_flags = SYCALL_ARG_PTR,
1702 .sy_call = (sy_call_t *)sys_uuidgen
1703 }, /* 355 = uuidgen */
1704 {
1705 ns(struct sys_getvfsstat_args),
1706 .sy_flags = SYCALL_ARG_PTR,
1707 .sy_call = (sy_call_t *)sys_getvfsstat
1708 }, /* 356 = getvfsstat */
1709 {
1710 ns(struct sys_statvfs1_args),
1711 .sy_flags = SYCALL_ARG_PTR,
1712 .sy_call = (sy_call_t *)sys_statvfs1
1713 }, /* 357 = statvfs1 */
1714 {
1715 ns(struct sys_fstatvfs1_args),
1716 .sy_flags = SYCALL_ARG_PTR,
1717 .sy_call = (sy_call_t *)sys_fstatvfs1
1718 }, /* 358 = fstatvfs1 */
1719 {
1720 ns(struct compat_30_sys_fhstatvfs1_args),
1721 .sy_flags = SYCALL_ARG_PTR,
1722 .sy_call = (sy_call_t *)sys_nomodule
1723 }, /* 359 = compat_30_fhstatvfs1 */
1724 {
1725 ns(struct sys_extattrctl_args),
1726 .sy_flags = SYCALL_ARG_PTR,
1727 .sy_call = (sy_call_t *)sys_extattrctl
1728 }, /* 360 = extattrctl */
1729 {
1730 ns(struct sys_extattr_set_file_args),
1731 .sy_flags = SYCALL_ARG_PTR,
1732 .sy_call = (sy_call_t *)sys_extattr_set_file
1733 }, /* 361 = extattr_set_file */
1734 {
1735 ns(struct sys_extattr_get_file_args),
1736 .sy_flags = SYCALL_ARG_PTR,
1737 .sy_call = (sy_call_t *)sys_extattr_get_file
1738 }, /* 362 = extattr_get_file */
1739 {
1740 ns(struct sys_extattr_delete_file_args),
1741 .sy_flags = SYCALL_ARG_PTR,
1742 .sy_call = (sy_call_t *)sys_extattr_delete_file
1743 }, /* 363 = extattr_delete_file */
1744 {
1745 ns(struct sys_extattr_set_fd_args),
1746 .sy_flags = SYCALL_ARG_PTR,
1747 .sy_call = (sy_call_t *)sys_extattr_set_fd
1748 }, /* 364 = extattr_set_fd */
1749 {
1750 ns(struct sys_extattr_get_fd_args),
1751 .sy_flags = SYCALL_ARG_PTR,
1752 .sy_call = (sy_call_t *)sys_extattr_get_fd
1753 }, /* 365 = extattr_get_fd */
1754 {
1755 ns(struct sys_extattr_delete_fd_args),
1756 .sy_flags = SYCALL_ARG_PTR,
1757 .sy_call = (sy_call_t *)sys_extattr_delete_fd
1758 }, /* 366 = extattr_delete_fd */
1759 {
1760 ns(struct sys_extattr_set_link_args),
1761 .sy_flags = SYCALL_ARG_PTR,
1762 .sy_call = (sy_call_t *)sys_extattr_set_link
1763 }, /* 367 = extattr_set_link */
1764 {
1765 ns(struct sys_extattr_get_link_args),
1766 .sy_flags = SYCALL_ARG_PTR,
1767 .sy_call = (sy_call_t *)sys_extattr_get_link
1768 }, /* 368 = extattr_get_link */
1769 {
1770 ns(struct sys_extattr_delete_link_args),
1771 .sy_flags = SYCALL_ARG_PTR,
1772 .sy_call = (sy_call_t *)sys_extattr_delete_link
1773 }, /* 369 = extattr_delete_link */
1774 {
1775 ns(struct sys_extattr_list_fd_args),
1776 .sy_flags = SYCALL_ARG_PTR,
1777 .sy_call = (sy_call_t *)sys_extattr_list_fd
1778 }, /* 370 = extattr_list_fd */
1779 {
1780 ns(struct sys_extattr_list_file_args),
1781 .sy_flags = SYCALL_ARG_PTR,
1782 .sy_call = (sy_call_t *)sys_extattr_list_file
1783 }, /* 371 = extattr_list_file */
1784 {
1785 ns(struct sys_extattr_list_link_args),
1786 .sy_flags = SYCALL_ARG_PTR,
1787 .sy_call = (sy_call_t *)sys_extattr_list_link
1788 }, /* 372 = extattr_list_link */
1789 {
1790 ns(struct compat_50_sys_pselect_args),
1791 .sy_flags = SYCALL_ARG_PTR,
1792 .sy_call = (sy_call_t *)sys_nomodule
1793 }, /* 373 = compat_50_pselect */
1794 {
1795 ns(struct compat_50_sys_pollts_args),
1796 .sy_flags = SYCALL_ARG_PTR,
1797 .sy_call = (sy_call_t *)sys_nomodule
1798 }, /* 374 = compat_50_pollts */
1799 {
1800 ns(struct sys_setxattr_args),
1801 .sy_flags = SYCALL_ARG_PTR,
1802 .sy_call = (sy_call_t *)sys_setxattr
1803 }, /* 375 = setxattr */
1804 {
1805 ns(struct sys_lsetxattr_args),
1806 .sy_flags = SYCALL_ARG_PTR,
1807 .sy_call = (sy_call_t *)sys_lsetxattr
1808 }, /* 376 = lsetxattr */
1809 {
1810 ns(struct sys_fsetxattr_args),
1811 .sy_flags = SYCALL_ARG_PTR,
1812 .sy_call = (sy_call_t *)sys_fsetxattr
1813 }, /* 377 = fsetxattr */
1814 {
1815 ns(struct sys_getxattr_args),
1816 .sy_flags = SYCALL_ARG_PTR,
1817 .sy_call = (sy_call_t *)sys_getxattr
1818 }, /* 378 = getxattr */
1819 {
1820 ns(struct sys_lgetxattr_args),
1821 .sy_flags = SYCALL_ARG_PTR,
1822 .sy_call = (sy_call_t *)sys_lgetxattr
1823 }, /* 379 = lgetxattr */
1824 {
1825 ns(struct sys_fgetxattr_args),
1826 .sy_flags = SYCALL_ARG_PTR,
1827 .sy_call = (sy_call_t *)sys_fgetxattr
1828 }, /* 380 = fgetxattr */
1829 {
1830 ns(struct sys_listxattr_args),
1831 .sy_flags = SYCALL_ARG_PTR,
1832 .sy_call = (sy_call_t *)sys_listxattr
1833 }, /* 381 = listxattr */
1834 {
1835 ns(struct sys_llistxattr_args),
1836 .sy_flags = SYCALL_ARG_PTR,
1837 .sy_call = (sy_call_t *)sys_llistxattr
1838 }, /* 382 = llistxattr */
1839 {
1840 ns(struct sys_flistxattr_args),
1841 .sy_flags = SYCALL_ARG_PTR,
1842 .sy_call = (sy_call_t *)sys_flistxattr
1843 }, /* 383 = flistxattr */
1844 {
1845 ns(struct sys_removexattr_args),
1846 .sy_flags = SYCALL_ARG_PTR,
1847 .sy_call = (sy_call_t *)sys_removexattr
1848 }, /* 384 = removexattr */
1849 {
1850 ns(struct sys_lremovexattr_args),
1851 .sy_flags = SYCALL_ARG_PTR,
1852 .sy_call = (sy_call_t *)sys_lremovexattr
1853 }, /* 385 = lremovexattr */
1854 {
1855 ns(struct sys_fremovexattr_args),
1856 .sy_flags = SYCALL_ARG_PTR,
1857 .sy_call = (sy_call_t *)sys_fremovexattr
1858 }, /* 386 = fremovexattr */
1859 {
1860 ns(struct compat_50_sys___stat30_args),
1861 .sy_flags = SYCALL_ARG_PTR,
1862 .sy_call = (sy_call_t *)sys_nomodule
1863 }, /* 387 = compat_50___stat30 */
1864 {
1865 ns(struct compat_50_sys___fstat30_args),
1866 .sy_flags = SYCALL_ARG_PTR,
1867 .sy_call = (sy_call_t *)sys_nomodule
1868 }, /* 388 = compat_50___fstat30 */
1869 {
1870 ns(struct compat_50_sys___lstat30_args),
1871 .sy_flags = SYCALL_ARG_PTR,
1872 .sy_call = (sy_call_t *)sys_nomodule
1873 }, /* 389 = compat_50___lstat30 */
1874 {
1875 ns(struct sys___getdents30_args),
1876 .sy_flags = SYCALL_ARG_PTR,
1877 .sy_call = (sy_call_t *)sys___getdents30
1878 }, /* 390 = __getdents30 */
1879 {
1880 .sy_call = (sy_call_t *)nullop,
1881 }, /* 391 = filler */
1882 {
1883 ns(struct compat_30_sys___fhstat30_args),
1884 .sy_flags = SYCALL_ARG_PTR,
1885 .sy_call = (sy_call_t *)sys_nomodule
1886 }, /* 392 = compat_30___fhstat30 */
1887 {
1888 ns(struct compat_50_sys___ntp_gettime30_args),
1889 .sy_flags = SYCALL_ARG_PTR,
1890 .sy_call = (sy_call_t *)sys_nomodule
1891 }, /* 393 = compat_50___ntp_gettime30 */
1892 {
1893 ns(struct sys___socket30_args),
1894 .sy_call = (sy_call_t *)sys___socket30
1895 }, /* 394 = __socket30 */
1896 {
1897 ns(struct sys___getfh30_args),
1898 .sy_flags = SYCALL_ARG_PTR,
1899 .sy_call = (sy_call_t *)sys___getfh30
1900 }, /* 395 = __getfh30 */
1901 {
1902 ns(struct sys___fhopen40_args),
1903 .sy_flags = SYCALL_ARG_PTR,
1904 .sy_call = (sy_call_t *)sys___fhopen40
1905 }, /* 396 = __fhopen40 */
1906 {
1907 ns(struct sys___fhstatvfs140_args),
1908 .sy_flags = SYCALL_ARG_PTR,
1909 .sy_call = (sy_call_t *)sys___fhstatvfs140
1910 }, /* 397 = __fhstatvfs140 */
1911 {
1912 ns(struct compat_50_sys___fhstat40_args),
1913 .sy_flags = SYCALL_ARG_PTR,
1914 .sy_call = (sy_call_t *)sys_nomodule
1915 }, /* 398 = compat_50___fhstat40 */
1916 {
1917 ns(struct sys_aio_cancel_args),
1918 .sy_flags = SYCALL_ARG_PTR,
1919 .sy_call = (sy_call_t *)sys_nomodule
1920 }, /* 399 = aio_cancel */
1921 {
1922 ns(struct sys_aio_error_args),
1923 .sy_flags = SYCALL_ARG_PTR,
1924 .sy_call = (sy_call_t *)sys_nomodule
1925 }, /* 400 = aio_error */
1926 {
1927 ns(struct sys_aio_fsync_args),
1928 .sy_flags = SYCALL_ARG_PTR,
1929 .sy_call = (sy_call_t *)sys_nomodule
1930 }, /* 401 = aio_fsync */
1931 {
1932 ns(struct sys_aio_read_args),
1933 .sy_flags = SYCALL_ARG_PTR,
1934 .sy_call = (sy_call_t *)sys_nomodule
1935 }, /* 402 = aio_read */
1936 {
1937 ns(struct sys_aio_return_args),
1938 .sy_flags = SYCALL_ARG_PTR,
1939 .sy_call = (sy_call_t *)sys_nomodule
1940 }, /* 403 = aio_return */
1941 {
1942 ns(struct compat_50_sys_aio_suspend_args),
1943 .sy_flags = SYCALL_ARG_PTR,
1944 .sy_call = (sy_call_t *)sys_nomodule
1945 }, /* 404 = compat_50_aio_suspend */
1946 {
1947 ns(struct sys_aio_write_args),
1948 .sy_flags = SYCALL_ARG_PTR,
1949 .sy_call = (sy_call_t *)sys_nomodule
1950 }, /* 405 = aio_write */
1951 {
1952 ns(struct sys_lio_listio_args),
1953 .sy_flags = SYCALL_ARG_PTR,
1954 .sy_call = (sy_call_t *)sys_nomodule
1955 }, /* 406 = lio_listio */
1956 {
1957 .sy_call = sys_nosys,
1958 }, /* 407 = filler */
1959 {
1960 .sy_call = sys_nosys,
1961 }, /* 408 = filler */
1962 {
1963 .sy_call = sys_nosys,
1964 }, /* 409 = filler */
1965 {
1966 ns(struct sys___mount50_args),
1967 .sy_flags = SYCALL_ARG_PTR,
1968 .sy_call = (sy_call_t *)sys___mount50
1969 }, /* 410 = __mount50 */
1970 {
1971 ns(struct sys_mremap_args),
1972 .sy_flags = SYCALL_ARG_PTR,
1973 .sy_call = (sy_call_t *)sys_mremap
1974 }, /* 411 = mremap */
1975 {
1976 ns(struct sys_pset_create_args),
1977 .sy_flags = SYCALL_ARG_PTR,
1978 .sy_call = (sy_call_t *)sys_pset_create
1979 }, /* 412 = pset_create */
1980 {
1981 ns(struct sys_pset_destroy_args),
1982 .sy_call = (sy_call_t *)sys_pset_destroy
1983 }, /* 413 = pset_destroy */
1984 {
1985 ns(struct sys_pset_assign_args),
1986 .sy_flags = SYCALL_ARG_PTR,
1987 .sy_call = (sy_call_t *)sys_pset_assign
1988 }, /* 414 = pset_assign */
1989 {
1990 ns(struct sys__pset_bind_args),
1991 .sy_flags = SYCALL_ARG_PTR,
1992 .sy_call = (sy_call_t *)sys__pset_bind
1993 }, /* 415 = _pset_bind */
1994 {
1995 ns(struct sys___posix_fadvise50_args),
1996 .sy_flags = SYCALL_NARGS64_VAL(2) | SYCALL_ARG3_64 | SYCALL_ARG2_64,
1997 .sy_call = (sy_call_t *)sys___posix_fadvise50
1998 }, /* 416 = __posix_fadvise50 */
1999 {
2000 ns(struct sys___select50_args),
2001 .sy_flags = SYCALL_ARG_PTR,
2002 .sy_call = (sy_call_t *)sys___select50
2003 }, /* 417 = __select50 */
2004 {
2005 ns(struct sys___gettimeofday50_args),
2006 .sy_flags = SYCALL_ARG_PTR,
2007 .sy_call = (sy_call_t *)sys___gettimeofday50
2008 }, /* 418 = __gettimeofday50 */
2009 {
2010 ns(struct sys___settimeofday50_args),
2011 .sy_flags = SYCALL_ARG_PTR,
2012 .sy_call = (sy_call_t *)sys___settimeofday50
2013 }, /* 419 = __settimeofday50 */
2014 {
2015 ns(struct sys___utimes50_args),
2016 .sy_flags = SYCALL_ARG_PTR,
2017 .sy_call = (sy_call_t *)sys___utimes50
2018 }, /* 420 = __utimes50 */
2019 {
2020 ns(struct sys___adjtime50_args),
2021 .sy_flags = SYCALL_ARG_PTR,
2022 .sy_call = (sy_call_t *)sys___adjtime50
2023 }, /* 421 = __adjtime50 */
2024 {
2025 ns(struct sys___lfs_segwait50_args),
2026 .sy_flags = SYCALL_ARG_PTR,
2027 .sy_call = (sy_call_t *)sys_nomodule
2028 }, /* 422 = __lfs_segwait50 */
2029 {
2030 ns(struct sys___futimes50_args),
2031 .sy_flags = SYCALL_ARG_PTR,
2032 .sy_call = (sy_call_t *)sys___futimes50
2033 }, /* 423 = __futimes50 */
2034 {
2035 ns(struct sys___lutimes50_args),
2036 .sy_flags = SYCALL_ARG_PTR,
2037 .sy_call = (sy_call_t *)sys___lutimes50
2038 }, /* 424 = __lutimes50 */
2039 {
2040 ns(struct sys___setitimer50_args),
2041 .sy_flags = SYCALL_ARG_PTR,
2042 .sy_call = (sy_call_t *)sys___setitimer50
2043 }, /* 425 = __setitimer50 */
2044 {
2045 ns(struct sys___getitimer50_args),
2046 .sy_flags = SYCALL_ARG_PTR,
2047 .sy_call = (sy_call_t *)sys___getitimer50
2048 }, /* 426 = __getitimer50 */
2049 {
2050 ns(struct sys___clock_gettime50_args),
2051 .sy_flags = SYCALL_ARG_PTR,
2052 .sy_call = (sy_call_t *)sys___clock_gettime50
2053 }, /* 427 = __clock_gettime50 */
2054 {
2055 ns(struct sys___clock_settime50_args),
2056 .sy_flags = SYCALL_ARG_PTR,
2057 .sy_call = (sy_call_t *)sys___clock_settime50
2058 }, /* 428 = __clock_settime50 */
2059 {
2060 ns(struct sys___clock_getres50_args),
2061 .sy_flags = SYCALL_ARG_PTR,
2062 .sy_call = (sy_call_t *)sys___clock_getres50
2063 }, /* 429 = __clock_getres50 */
2064 {
2065 ns(struct sys___nanosleep50_args),
2066 .sy_flags = SYCALL_ARG_PTR,
2067 .sy_call = (sy_call_t *)sys___nanosleep50
2068 }, /* 430 = __nanosleep50 */
2069 {
2070 ns(struct sys_____sigtimedwait50_args),
2071 .sy_flags = SYCALL_ARG_PTR,
2072 .sy_call = (sy_call_t *)sys_____sigtimedwait50
2073 }, /* 431 = ____sigtimedwait50 */
2074 {
2075 ns(struct sys___mq_timedsend50_args),
2076 .sy_flags = SYCALL_ARG_PTR,
2077 .sy_call = (sy_call_t *)sys_nomodule
2078 }, /* 432 = __mq_timedsend50 */
2079 {
2080 ns(struct sys___mq_timedreceive50_args),
2081 .sy_flags = SYCALL_ARG_PTR,
2082 .sy_call = (sy_call_t *)sys_nomodule
2083 }, /* 433 = __mq_timedreceive50 */
2084 {
2085 ns(struct compat_60_sys__lwp_park_args),
2086 .sy_flags = SYCALL_ARG_PTR,
2087 .sy_call = (sy_call_t *)sys_nomodule
2088 }, /* 434 = compat_60__lwp_park */
2089 {
2090 ns(struct sys___kevent50_args),
2091 .sy_flags = SYCALL_ARG_PTR,
2092 .sy_call = (sy_call_t *)sys___kevent50
2093 }, /* 435 = __kevent50 */
2094 {
2095 ns(struct sys___pselect50_args),
2096 .sy_flags = SYCALL_ARG_PTR,
2097 .sy_call = (sy_call_t *)sys___pselect50
2098 }, /* 436 = __pselect50 */
2099 {
2100 ns(struct sys___pollts50_args),
2101 .sy_flags = SYCALL_ARG_PTR,
2102 .sy_call = (sy_call_t *)sys___pollts50
2103 }, /* 437 = __pollts50 */
2104 {
2105 ns(struct sys___aio_suspend50_args),
2106 .sy_flags = SYCALL_ARG_PTR,
2107 .sy_call = (sy_call_t *)sys_nomodule
2108 }, /* 438 = __aio_suspend50 */
2109 {
2110 ns(struct sys___stat50_args),
2111 .sy_flags = SYCALL_ARG_PTR,
2112 .sy_call = (sy_call_t *)sys___stat50
2113 }, /* 439 = __stat50 */
2114 {
2115 ns(struct sys___fstat50_args),
2116 .sy_flags = SYCALL_ARG_PTR,
2117 .sy_call = (sy_call_t *)sys___fstat50
2118 }, /* 440 = __fstat50 */
2119 {
2120 ns(struct sys___lstat50_args),
2121 .sy_flags = SYCALL_ARG_PTR,
2122 .sy_call = (sy_call_t *)sys___lstat50
2123 }, /* 441 = __lstat50 */
2124 {
2125 ns(struct sys_____semctl50_args),
2126 .sy_flags = SYCALL_ARG_PTR,
2127 .sy_call = (sy_call_t *)sys_nomodule
2128 }, /* 442 = ____semctl50 */
2129 {
2130 ns(struct sys___shmctl50_args),
2131 .sy_flags = SYCALL_ARG_PTR,
2132 .sy_call = (sy_call_t *)sys_nomodule
2133 }, /* 443 = __shmctl50 */
2134 {
2135 ns(struct sys___msgctl50_args),
2136 .sy_flags = SYCALL_ARG_PTR,
2137 .sy_call = (sy_call_t *)sys_nomodule
2138 }, /* 444 = __msgctl50 */
2139 {
2140 ns(struct sys___getrusage50_args),
2141 .sy_flags = SYCALL_ARG_PTR,
2142 .sy_call = (sy_call_t *)sys___getrusage50
2143 }, /* 445 = __getrusage50 */
2144 {
2145 ns(struct sys___timer_settime50_args),
2146 .sy_flags = SYCALL_ARG_PTR,
2147 .sy_call = (sy_call_t *)sys___timer_settime50
2148 }, /* 446 = __timer_settime50 */
2149 {
2150 ns(struct sys___timer_gettime50_args),
2151 .sy_flags = SYCALL_ARG_PTR,
2152 .sy_call = (sy_call_t *)sys___timer_gettime50
2153 }, /* 447 = __timer_gettime50 */
2154#if defined(NTP) || !defined(_KERNEL_OPT)
2155 {
2156 ns(struct sys___ntp_gettime50_args),
2157 .sy_flags = SYCALL_ARG_PTR,
2158 .sy_call = (sy_call_t *)sys___ntp_gettime50
2159 }, /* 448 = __ntp_gettime50 */
2160#else
2161 {
2162 .sy_call = sys_nosys,
2163 }, /* 448 = filler */
2164#endif
2165 {
2166 ns(struct sys___wait450_args),
2167 .sy_flags = SYCALL_ARG_PTR,
2168 .sy_call = (sy_call_t *)sys___wait450
2169 }, /* 449 = __wait450 */
2170 {
2171 ns(struct sys___mknod50_args),
2172 .sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64 | SYCALL_ARG_PTR,
2173 .sy_call = (sy_call_t *)sys___mknod50
2174 }, /* 450 = __mknod50 */
2175 {
2176 ns(struct sys___fhstat50_args),
2177 .sy_flags = SYCALL_ARG_PTR,
2178 .sy_call = (sy_call_t *)sys___fhstat50
2179 }, /* 451 = __fhstat50 */
2180 {
2181 .sy_call = sys_nosys,
2182 }, /* 452 = filler */
2183 {
2184 ns(struct sys_pipe2_args),
2185 .sy_flags = SYCALL_ARG_PTR,
2186 .sy_call = (sy_call_t *)sys_pipe2
2187 }, /* 453 = pipe2 */
2188 {
2189 ns(struct sys_dup3_args),
2190 .sy_call = (sy_call_t *)sys_dup3
2191 }, /* 454 = dup3 */
2192 {
2193 ns(struct sys_kqueue1_args),
2194 .sy_call = (sy_call_t *)sys_kqueue1
2195 }, /* 455 = kqueue1 */
2196 {
2197 ns(struct sys_paccept_args),
2198 .sy_flags = SYCALL_ARG_PTR,
2199 .sy_call = (sy_call_t *)sys_paccept
2200 }, /* 456 = paccept */
2201 {
2202 ns(struct sys_linkat_args),
2203 .sy_flags = SYCALL_ARG_PTR,
2204 .sy_call = (sy_call_t *)sys_linkat
2205 }, /* 457 = linkat */
2206 {
2207 ns(struct sys_renameat_args),
2208 .sy_flags = SYCALL_ARG_PTR,
2209 .sy_call = (sy_call_t *)sys_renameat
2210 }, /* 458 = renameat */
2211 {
2212 ns(struct sys_mkfifoat_args),
2213 .sy_flags = SYCALL_ARG_PTR,
2214 .sy_call = (sy_call_t *)sys_mkfifoat
2215 }, /* 459 = mkfifoat */
2216 {
2217 ns(struct sys_mknodat_args),
2218 .sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
2219 .sy_call = (sy_call_t *)sys_mknodat
2220 }, /* 460 = mknodat */
2221 {
2222 ns(struct sys_mkdirat_args),
2223 .sy_flags = SYCALL_ARG_PTR,
2224 .sy_call = (sy_call_t *)sys_mkdirat
2225 }, /* 461 = mkdirat */
2226 {
2227 ns(struct sys_faccessat_args),
2228 .sy_flags = SYCALL_ARG_PTR,
2229 .sy_call = (sy_call_t *)sys_faccessat
2230 }, /* 462 = faccessat */
2231 {
2232 ns(struct sys_fchmodat_args),
2233 .sy_flags = SYCALL_ARG_PTR,
2234 .sy_call = (sy_call_t *)sys_fchmodat
2235 }, /* 463 = fchmodat */
2236 {
2237 ns(struct sys_fchownat_args),
2238 .sy_flags = SYCALL_ARG_PTR,
2239 .sy_call = (sy_call_t *)sys_fchownat
2240 }, /* 464 = fchownat */
2241 {
2242 ns(struct sys_fexecve_args),
2243 .sy_flags = SYCALL_ARG_PTR,
2244 .sy_call = (sy_call_t *)sys_fexecve
2245 }, /* 465 = fexecve */
2246 {
2247 ns(struct sys_fstatat_args),
2248 .sy_flags = SYCALL_ARG_PTR,
2249 .sy_call = (sy_call_t *)sys_fstatat
2250 }, /* 466 = fstatat */
2251 {
2252 ns(struct sys_utimensat_args),
2253 .sy_flags = SYCALL_ARG_PTR,
2254 .sy_call = (sy_call_t *)sys_utimensat
2255 }, /* 467 = utimensat */
2256 {
2257 ns(struct sys_openat_args),
2258 .sy_flags = SYCALL_ARG_PTR,
2259 .sy_call = (sy_call_t *)sys_openat
2260 }, /* 468 = openat */
2261 {
2262 ns(struct sys_readlinkat_args),
2263 .sy_flags = SYCALL_ARG_PTR,
2264 .sy_call = (sy_call_t *)sys_readlinkat
2265 }, /* 469 = readlinkat */
2266 {
2267 ns(struct sys_symlinkat_args),
2268 .sy_flags = SYCALL_ARG_PTR,
2269 .sy_call = (sy_call_t *)sys_symlinkat
2270 }, /* 470 = symlinkat */
2271 {
2272 ns(struct sys_unlinkat_args),
2273 .sy_flags = SYCALL_ARG_PTR,
2274 .sy_call = (sy_call_t *)sys_unlinkat
2275 }, /* 471 = unlinkat */
2276 {
2277 ns(struct sys_futimens_args),
2278 .sy_flags = SYCALL_ARG_PTR,
2279 .sy_call = (sy_call_t *)sys_futimens
2280 }, /* 472 = futimens */
2281 {
2282 ns(struct sys___quotactl_args),
2283 .sy_flags = SYCALL_ARG_PTR,
2284 .sy_call = (sy_call_t *)sys___quotactl
2285 }, /* 473 = __quotactl */
2286 {
2287 ns(struct sys_posix_spawn_args),
2288 .sy_flags = SYCALL_ARG_PTR,
2289 .sy_call = (sy_call_t *)sys_posix_spawn
2290 }, /* 474 = posix_spawn */
2291 {
2292 ns(struct sys_recvmmsg_args),
2293 .sy_flags = SYCALL_ARG_PTR,
2294 .sy_call = (sy_call_t *)sys_recvmmsg
2295 }, /* 475 = recvmmsg */
2296 {
2297 ns(struct sys_sendmmsg_args),
2298 .sy_flags = SYCALL_ARG_PTR,
2299 .sy_call = (sy_call_t *)sys_sendmmsg
2300 }, /* 476 = sendmmsg */
2301 {
2302 ns(struct sys_clock_nanosleep_args),
2303 .sy_flags = SYCALL_ARG_PTR,
2304 .sy_call = (sy_call_t *)sys_clock_nanosleep
2305 }, /* 477 = clock_nanosleep */
2306 {
2307 ns(struct sys____lwp_park60_args),
2308 .sy_flags = SYCALL_ARG_PTR,
2309 .sy_call = (sy_call_t *)sys____lwp_park60
2310 }, /* 478 = ___lwp_park60 */
2311 {
2312 ns(struct sys_posix_fallocate_args),
2313 .sy_flags = SYCALL_NARGS64_VAL(2) | SYCALL_ARG3_64 | SYCALL_ARG2_64,
2314 .sy_call = (sy_call_t *)sys_posix_fallocate
2315 }, /* 479 = posix_fallocate */
2316 {
2317 ns(struct sys_fdiscard_args),
2318 .sy_flags = SYCALL_NARGS64_VAL(2) | SYCALL_ARG3_64 | SYCALL_ARG2_64,
2319 .sy_call = (sy_call_t *)sys_fdiscard
2320 }, /* 480 = fdiscard */
2321 {
2322 ns(struct sys_wait6_args),
2323 .sy_flags = SYCALL_ARG_PTR,
2324 .sy_call = (sy_call_t *)sys_wait6
2325 }, /* 481 = wait6 */
2326 {
2327 ns(struct sys_clock_getcpuclockid2_args),
2328 .sy_flags = SYCALL_ARG_PTR,
2329 .sy_call = (sy_call_t *)sys_clock_getcpuclockid2
2330 }, /* 482 = clock_getcpuclockid2 */
2331 {
2332 .sy_call = sys_nosys,
2333 }, /* 483 = filler */
2334 {
2335 .sy_call = sys_nosys,
2336 }, /* 484 = filler */
2337 {
2338 .sy_call = sys_nosys,
2339 }, /* 485 = filler */
2340 {
2341 .sy_call = sys_nosys,
2342 }, /* 486 = filler */
2343 {
2344 .sy_call = sys_nosys,
2345 }, /* 487 = filler */
2346 {
2347 .sy_call = sys_nosys,
2348 }, /* 488 = filler */
2349 {
2350 .sy_call = sys_nosys,
2351 }, /* 489 = filler */
2352 {
2353 .sy_call = sys_nosys,
2354 }, /* 490 = filler */
2355 {
2356 .sy_call = sys_nosys,
2357 }, /* 491 = filler */
2358 {
2359 .sy_call = sys_nosys,
2360 }, /* 492 = filler */
2361 {
2362 .sy_call = sys_nosys,
2363 }, /* 493 = filler */
2364 {
2365 .sy_call = sys_nosys,
2366 }, /* 494 = filler */
2367 {
2368 .sy_call = sys_nosys,
2369 }, /* 495 = filler */
2370 {
2371 .sy_call = sys_nosys,
2372 }, /* 496 = filler */
2373 {
2374 .sy_call = sys_nosys,
2375 }, /* 497 = filler */
2376 {
2377 .sy_call = sys_nosys,
2378 }, /* 498 = filler */
2379 {
2380 .sy_call = sys_nosys,
2381 }, /* 499 = filler */
2382 {
2383 .sy_call = sys_nosys,
2384 }, /* 500 = filler */
2385 {
2386 .sy_call = sys_nosys,
2387 }, /* 501 = filler */
2388 {
2389 .sy_call = sys_nosys,
2390 }, /* 502 = filler */
2391 {
2392 .sy_call = sys_nosys,
2393 }, /* 503 = filler */
2394 {
2395 .sy_call = sys_nosys,
2396 }, /* 504 = filler */
2397 {
2398 .sy_call = sys_nosys,
2399 }, /* 505 = filler */
2400 {
2401 .sy_call = sys_nosys,
2402 }, /* 506 = filler */
2403 {
2404 .sy_call = sys_nosys,
2405 }, /* 507 = filler */
2406 {
2407 .sy_call = sys_nosys,
2408 }, /* 508 = filler */
2409 {
2410 .sy_call = sys_nosys,
2411 }, /* 509 = filler */
2412 {
2413 .sy_call = sys_nosys,
2414 }, /* 510 = filler */
2415 {
2416 .sy_call = sys_nosys,
2417 }, /* 511 = filler */
2418};
2419