summaryrefslogtreecommitdiff
path: root/sys/kern/init_sysent.c
blob: 1ab785f7a5517404942963c3c3bb6f1be165a1ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
/* $NetBSD: init_sysent.c,v 1.230 2008/11/12 12:36:16 ad Exp $ */

/*
 * System call switch table.
 *
 * DO NOT EDIT-- this file is automatically generated.
 * created from	NetBSD: syscalls.master,v 1.211 2008/10/16 19:30:49 pooka Exp
 */

#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.230 2008/11/12 12:36:16 ad Exp $");

#include "opt_nfsserver.h"
#include "opt_ntp.h"
#include "opt_compat_netbsd.h"
#include "opt_sysv.h"
#include "opt_compat_43.h"
#include "opt_posix.h"
#include "fs_lfs.h"
#include "fs_nfs.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/signal.h>
#include <sys/mount.h>
#include <sys/sched.h>
#include <sys/syscallargs.h>

#ifdef COMPAT_43
#define	compat_43(func) __CONCAT(compat_43_,func)
#else
#define	compat_43(func) sys_nosys
#endif

#ifdef COMPAT_09
#define	compat_09(func) __CONCAT(compat_09_,func)
#else
#define	compat_09(func) sys_nosys
#endif

#ifdef COMPAT_10
#define	compat_10(func) __CONCAT(compat_10_,func)
#else
#define	compat_10(func) sys_nosys
#endif

#ifdef COMPAT_11
#define	compat_11(func) __CONCAT(compat_11_,func)
#else
#define	compat_11(func) sys_nosys
#endif

#ifdef COMPAT_12
#define	compat_12(func) __CONCAT(compat_12_,func)
#else
#define	compat_12(func) sys_nosys
#endif

#ifdef COMPAT_13
#define	compat_13(func) __CONCAT(compat_13_,func)
#else
#define	compat_13(func) sys_nosys
#endif

#ifdef COMPAT_14
#define	compat_14(func) __CONCAT(compat_14_,func)
#else
#define	compat_14(func) sys_nosys
#endif

#ifdef COMPAT_15
#define	compat_15(func) __CONCAT(compat_15_,func)
#else
#define	compat_15(func) sys_nosys
#endif

#ifdef COMPAT_16
#define	compat_16(func) __CONCAT(compat_16_,func)
#else
#define	compat_16(func) sys_nosys
#endif

#ifdef COMPAT_20
#define	compat_20(func) __CONCAT(compat_20_,func)
#else
#define	compat_20(func) sys_nosys
#endif

#ifdef COMPAT_30
#define	compat_30(func) __CONCAT(compat_30_,func)
#else
#define	compat_30(func) sys_nosys
#endif

#ifdef COMPAT_40
#define	compat_40(func) __CONCAT(compat_40_,func)
#else
#define	compat_40(func) sys_nosys
#endif

#ifdef COMPAT_50
#define	compat_50(func) __CONCAT(compat_50_,func)
#else
#define	compat_50(func) sys_nosys
#endif

#define	s(type)	sizeof(type)
#define	n(type)	(sizeof(type)/sizeof (register_t))
#define	ns(type)	n(type), s(type)

struct sysent sysent[] = {
	{ ns(struct sys_syscall_args), SYCALL_INDIRECT,
	    (sy_call_t *)sys_syscall },		/* 0 = syscall */
	{ ns(struct sys_exit_args), 0,
	    (sy_call_t *)sys_exit },		/* 1 = exit */
	{ 0, 0, 0,
	    (sy_call_t *)sys_fork },		/* 2 = fork */
	{ ns(struct sys_read_args), 0,
	    (sy_call_t *)sys_read },		/* 3 = read */
	{ ns(struct sys_write_args), 0,
	    (sy_call_t *)sys_write },		/* 4 = write */
	{ ns(struct sys_open_args), 0,
	    (sy_call_t *)sys_open },		/* 5 = open */
	{ ns(struct sys_close_args), 0,
	    (sy_call_t *)sys_close },		/* 6 = close */
	{ ns(struct sys_wait4_args), 0,
	    (sy_call_t *)sys_wait4 },		/* 7 = wait4 */
	{ ns(struct compat_43_sys_creat_args), 0,
	    (sy_call_t *)compat_43(sys_creat) },/* 8 = compat_43_ocreat */
	{ ns(struct sys_link_args), 0,
	    (sy_call_t *)sys_link },		/* 9 = link */
	{ ns(struct sys_unlink_args), 0,
	    (sy_call_t *)sys_unlink },		/* 10 = unlink */
	{ 0, 0, 0,
	    sys_nosys },			/* 11 = obsolete execv */
	{ ns(struct sys_chdir_args), 0,
	    (sy_call_t *)sys_chdir },		/* 12 = chdir */
	{ ns(struct sys_fchdir_args), 0,
	    (sy_call_t *)sys_fchdir },		/* 13 = fchdir */
	{ ns(struct sys_mknod_args), 0,
	    (sy_call_t *)sys_mknod },		/* 14 = mknod */
	{ ns(struct sys_chmod_args), 0,
	    (sy_call_t *)sys_chmod },		/* 15 = chmod */
	{ ns(struct sys_chown_args), 0,
	    (sy_call_t *)sys_chown },		/* 16 = chown */
	{ ns(struct sys_obreak_args), 0,
	    (sy_call_t *)sys_obreak },		/* 17 = break */
	{ ns(struct compat_20_sys_getfsstat_args), 0,
	    (sy_call_t *)compat_20(sys_getfsstat) },/* 18 = compat_20_getfsstat */
	{ ns(struct compat_43_sys_lseek_args), 0,
	    (sy_call_t *)compat_43(sys_lseek) },/* 19 = compat_43_olseek */
#ifdef COMPAT_43
	{ 0, 0, 0,
	    (sy_call_t *)sys_getpid_with_ppid },/* 20 = getpid */
#else
	{ 0, 0, 0,
	    (sy_call_t *)sys_getpid },		/* 20 = getpid */
#endif
	{ ns(struct compat_40_sys_mount_args), 0,
	    (sy_call_t *)compat_40(sys_mount) },/* 21 = compat_40_mount */
	{ ns(struct sys_unmount_args), 0,
	    (sy_call_t *)sys_unmount },		/* 22 = unmount */
	{ ns(struct sys_setuid_args), 0,
	    (sy_call_t *)sys_setuid },		/* 23 = setuid */
#ifdef COMPAT_43
	{ 0, 0, 0,
	    (sy_call_t *)sys_getuid_with_euid },/* 24 = getuid */
#else
	{ 0, 0, 0,
	    (sy_call_t *)sys_getuid },		/* 24 = getuid */
#endif
	{ 0, 0, 0,
	    (sy_call_t *)sys_geteuid },		/* 25 = geteuid */
	{ ns(struct sys_ptrace_args), 0,
	    (sy_call_t *)sys_ptrace },		/* 26 = ptrace */
	{ ns(struct sys_recvmsg_args), 0,
	    (sy_call_t *)sys_recvmsg },		/* 27 = recvmsg */
	{ ns(struct sys_sendmsg_args), 0,
	    (sy_call_t *)sys_sendmsg },		/* 28 = sendmsg */
	{ ns(struct sys_recvfrom_args), 0,
	    (sy_call_t *)sys_recvfrom },	/* 29 = recvfrom */
	{ ns(struct sys_accept_args), 0,
	    (sy_call_t *)sys_accept },		/* 30 = accept */
	{ ns(struct sys_getpeername_args), 0,
	    (sy_call_t *)sys_getpeername },	/* 31 = getpeername */
	{ ns(struct sys_getsockname_args), 0,
	    (sy_call_t *)sys_getsockname },	/* 32 = getsockname */
	{ ns(struct sys_access_args), 0,
	    (sy_call_t *)sys_access },		/* 33 = access */
	{ ns(struct sys_chflags_args), 0,
	    (sy_call_t *)sys_chflags },		/* 34 = chflags */
	{ ns(struct sys_fchflags_args), 0,
	    (sy_call_t *)sys_fchflags },	/* 35 = fchflags */
	{ 0, 0, 0,
	    (sy_call_t *)sys_sync },		/* 36 = sync */
	{ ns(struct sys_kill_args), 0,
	    (sy_call_t *)sys_kill },		/* 37 = kill */
	{ ns(struct compat_43_sys_stat_args), 0,
	    (sy_call_t *)compat_43(sys_stat) },	/* 38 = compat_43_stat43 */
	{ 0, 0, 0,
	    (sy_call_t *)sys_getppid },		/* 39 = getppid */
	{ ns(struct compat_43_sys_lstat_args), 0,
	    (sy_call_t *)compat_43(sys_lstat) },/* 40 = compat_43_lstat43 */
	{ ns(struct sys_dup_args), 0,
	    (sy_call_t *)sys_dup },		/* 41 = dup */
	{ 0, 0, 0,
	    (sy_call_t *)sys_pipe },		/* 42 = pipe */
	{ 0, 0, 0,
	    (sy_call_t *)sys_getegid },		/* 43 = getegid */
	{ ns(struct sys_profil_args), 0,
	    (sy_call_t *)sys_profil },		/* 44 = profil */
	{ ns(struct sys_ktrace_args), 0,
	    (sy_call_t *)sys_ktrace },		/* 45 = ktrace */
	{ ns(struct compat_13_sys_sigaction_args), 0,
	    (sy_call_t *)compat_13(sys_sigaction) },/* 46 = compat_13_sigaction13 */
#ifdef COMPAT_43
	{ 0, 0, 0,
	    (sy_call_t *)sys_getgid_with_egid },/* 47 = getgid */
#else
	{ 0, 0, 0,
	    (sy_call_t *)sys_getgid },		/* 47 = getgid */
#endif
	{ ns(struct compat_13_sys_sigprocmask_args), 0,
	    (sy_call_t *)compat_13(sys_sigprocmask) },/* 48 = compat_13_sigprocmask13 */
	{ ns(struct sys___getlogin_args), 0,
	    (sy_call_t *)sys___getlogin },	/* 49 = __getlogin */
	{ ns(struct sys___setlogin_args), 0,
	    (sy_call_t *)sys___setlogin },	/* 50 = __setlogin */
	{ ns(struct sys_acct_args), 0,
	    (sy_call_t *)sys_acct },		/* 51 = acct */
	{ 0, 0, 0,
	    (sy_call_t *)compat_13(sys_sigpending) },/* 52 = compat_13_sigpending13 */
	{ ns(struct compat_13_sys_sigaltstack_args), 0,
	    (sy_call_t *)compat_13(sys_sigaltstack) },/* 53 = compat_13_sigaltstack13 */
	{ ns(struct sys_ioctl_args), 0,
	    (sy_call_t *)sys_ioctl },		/* 54 = ioctl */
	{ ns(struct compat_12_sys_reboot_args), 0,
	    (sy_call_t *)compat_12(sys_reboot) },/* 55 = compat_12_oreboot */
	{ ns(struct sys_revoke_args), 0,
	    (sy_call_t *)sys_revoke },		/* 56 = revoke */
	{ ns(struct sys_symlink_args), 0,
	    (sy_call_t *)sys_symlink },		/* 57 = symlink */
	{ ns(struct sys_readlink_args), 0,
	    (sy_call_t *)sys_readlink },	/* 58 = readlink */
	{ ns(struct sys_execve_args), 0,
	    (sy_call_t *)sys_execve },		/* 59 = execve */
	{ ns(struct sys_umask_args), 0,
	    (sy_call_t *)sys_umask },		/* 60 = umask */
	{ ns(struct sys_chroot_args), 0,
	    (sy_call_t *)sys_chroot },		/* 61 = chroot */
	{ ns(struct compat_43_sys_fstat_args), 0,
	    (sy_call_t *)compat_43(sys_fstat) },/* 62 = compat_43_fstat43 */
	{ ns(struct compat_43_sys_getkerninfo_args), 0,
	    (sy_call_t *)compat_43(sys_getkerninfo) },/* 63 = compat_43_ogetkerninfo */
	{ 0, 0, 0,
	    (sy_call_t *)compat_43(sys_getpagesize) },/* 64 = compat_43_ogetpagesize */
	{ ns(struct compat_12_sys_msync_args), 0,
	    (sy_call_t *)compat_12(sys_msync) },/* 65 = compat_12_msync */
	{ 0, 0, 0,
	    (sy_call_t *)sys_vfork },		/* 66 = vfork */
	{ 0, 0, 0,
	    sys_nosys },			/* 67 = obsolete vread */
	{ 0, 0, 0,
	    sys_nosys },			/* 68 = obsolete vwrite */
	{ ns(struct sys_sbrk_args), 0,
	    (sy_call_t *)sys_sbrk },		/* 69 = sbrk */
	{ ns(struct sys_sstk_args), 0,
	    (sy_call_t *)sys_sstk },		/* 70 = sstk */
	{ ns(struct compat_43_sys_mmap_args), 0,
	    (sy_call_t *)compat_43(sys_mmap) },	/* 71 = compat_43_ommap */
	{ ns(struct sys_ovadvise_args), 0,
	    (sy_call_t *)sys_ovadvise },	/* 72 = vadvise */
	{ ns(struct sys_munmap_args), 0,
	    (sy_call_t *)sys_munmap },		/* 73 = munmap */
	{ ns(struct sys_mprotect_args), 0,
	    (sy_call_t *)sys_mprotect },	/* 74 = mprotect */
	{ ns(struct sys_madvise_args), 0,
	    (sy_call_t *)sys_madvise },		/* 75 = madvise */
	{ 0, 0, 0,
	    sys_nosys },			/* 76 = obsolete vhangup */
	{ 0, 0, 0,
	    sys_nosys },			/* 77 = obsolete vlimit */
	{ ns(struct sys_mincore_args), 0,
	    (sy_call_t *)sys_mincore },		/* 78 = mincore */
	{ ns(struct sys_getgroups_args), 0,
	    (sy_call_t *)sys_getgroups },	/* 79 = getgroups */
	{ ns(struct sys_setgroups_args), 0,
	    (sy_call_t *)sys_setgroups },	/* 80 = setgroups */
	{ 0, 0, 0,
	    (sy_call_t *)sys_getpgrp },		/* 81 = getpgrp */
	{ ns(struct sys_setpgid_args), 0,
	    (sy_call_t *)sys_setpgid },		/* 82 = setpgid */
	{ ns(struct sys_setitimer_args), 0,
	    (sy_call_t *)sys_setitimer },	/* 83 = setitimer */
	{ 0, 0, 0,
	    (sy_call_t *)compat_43(sys_wait) },	/* 84 = compat_43_owait */
	{ ns(struct compat_12_sys_swapon_args), 0,
	    (sy_call_t *)compat_12(sys_swapon) },/* 85 = compat_12_oswapon */
	{ ns(struct sys_getitimer_args), 0,
	    (sy_call_t *)sys_getitimer },	/* 86 = getitimer */
	{ ns(struct compat_43_sys_gethostname_args), 0,
	    (sy_call_t *)compat_43(sys_gethostname) },/* 87 = compat_43_ogethostname */
	{ ns(struct compat_43_sys_sethostname_args), 0,
	    (sy_call_t *)compat_43(sys_sethostname) },/* 88 = compat_43_osethostname */
	{ 0, 0, 0,
	    (sy_call_t *)compat_43(sys_getdtablesize) },/* 89 = compat_43_ogetdtablesize */
	{ ns(struct sys_dup2_args), 0,
	    (sy_call_t *)sys_dup2 },		/* 90 = dup2 */
	{ 0, 0, 0,
	    sys_nosys },			/* 91 = unimplemented getdopt */
	{ ns(struct sys_fcntl_args), 0,
	    (sy_call_t *)sys_fcntl },		/* 92 = fcntl */
	{ ns(struct sys_select_args), 0,
	    (sy_call_t *)sys_select },		/* 93 = select */
	{ 0, 0, 0,
	    sys_nosys },			/* 94 = unimplemented setdopt */
	{ ns(struct sys_fsync_args), 0,
	    (sy_call_t *)sys_fsync },		/* 95 = fsync */
	{ ns(struct sys_setpriority_args), 0,
	    (sy_call_t *)sys_setpriority },	/* 96 = setpriority */
	{ ns(struct compat_30_sys_socket_args), 0,
	    (sy_call_t *)compat_30(sys_socket) },/* 97 = compat_30_socket */
	{ ns(struct sys_connect_args), 0,
	    (sy_call_t *)sys_connect },		/* 98 = connect */
	{ ns(struct compat_43_sys_accept_args), 0,
	    (sy_call_t *)compat_43(sys_accept) },/* 99 = compat_43_oaccept */
	{ ns(struct sys_getpriority_args), 0,
	    (sy_call_t *)sys_getpriority },	/* 100 = getpriority */
	{ ns(struct compat_43_sys_send_args), 0,
	    (sy_call_t *)compat_43(sys_send) },	/* 101 = compat_43_osend */
	{ ns(struct compat_43_sys_recv_args), 0,
	    (sy_call_t *)compat_43(sys_recv) },	/* 102 = compat_43_orecv */
	{ ns(struct compat_13_sys_sigreturn_args), 0,
	    (sy_call_t *)compat_13(sys_sigreturn) },/* 103 = compat_13_sigreturn13 */
	{ ns(struct sys_bind_args), 0,
	    (sy_call_t *)sys_bind },		/* 104 = bind */
	{ ns(struct sys_setsockopt_args), 0,
	    (sy_call_t *)sys_setsockopt },	/* 105 = setsockopt */
	{ ns(struct sys_listen_args), 0,
	    (sy_call_t *)sys_listen },		/* 106 = listen */
	{ 0, 0, 0,
	    sys_nosys },			/* 107 = obsolete vtimes */
	{ ns(struct compat_43_sys_sigvec_args), 0,
	    (sy_call_t *)compat_43(sys_sigvec) },/* 108 = compat_43_osigvec */
	{ ns(struct compat_43_sys_sigblock_args), 0,
	    (sy_call_t *)compat_43(sys_sigblock) },/* 109 = compat_43_osigblock */
	{ ns(struct compat_43_sys_sigsetmask_args), 0,
	    (sy_call_t *)compat_43(sys_sigsetmask) },/* 110 = compat_43_osigsetmask */
	{ ns(struct compat_13_sys_sigsuspend_args), 0,
	    (sy_call_t *)compat_13(sys_sigsuspend) },/* 111 = compat_13_sigsuspend13 */
	{ ns(struct compat_43_sys_sigstack_args), 0,
	    (sy_call_t *)compat_43(sys_sigstack) },/* 112 = compat_43_osigstack */
	{ ns(struct compat_43_sys_recvmsg_args), 0,
	    (sy_call_t *)compat_43(sys_recvmsg) },/* 113 = compat_43_orecvmsg */
	{ ns(struct compat_43_sys_sendmsg_args), 0,
	    (sy_call_t *)compat_43(sys_sendmsg) },/* 114 = compat_43_osendmsg */
	{ 0, 0, 0,
	    sys_nosys },			/* 115 = obsolete vtrace */
	{ ns(struct sys_gettimeofday_args), 0,
	    (sy_call_t *)sys_gettimeofday },	/* 116 = gettimeofday */
	{ ns(struct sys_getrusage_args), 0,
	    (sy_call_t *)sys_getrusage },	/* 117 = getrusage */
	{ ns(struct sys_getsockopt_args), 0,
	    (sy_call_t *)sys_getsockopt },	/* 118 = getsockopt */
	{ 0, 0, 0,
	    sys_nosys },			/* 119 = obsolete resuba */
	{ ns(struct sys_readv_args), 0,
	    (sy_call_t *)sys_readv },		/* 120 = readv */
	{ ns(struct sys_writev_args), 0,
	    (sy_call_t *)sys_writev },		/* 121 = writev */
	{ ns(struct sys_settimeofday_args), 0,
	    (sy_call_t *)sys_settimeofday },	/* 122 = settimeofday */
	{ ns(struct sys_fchown_args), 0,
	    (sy_call_t *)sys_fchown },		/* 123 = fchown */
	{ ns(struct sys_fchmod_args), 0,
	    (sy_call_t *)sys_fchmod },		/* 124 = fchmod */
	{ ns(struct compat_43_sys_recvfrom_args), 0,
	    (sy_call_t *)compat_43(sys_recvfrom) },/* 125 = compat_43_orecvfrom */
	{ ns(struct sys_setreuid_args), 0,
	    (sy_call_t *)sys_setreuid },	/* 126 = setreuid */
	{ ns(struct sys_setregid_args), 0,
	    (sy_call_t *)sys_setregid },	/* 127 = setregid */
	{ ns(struct sys_rename_args), 0,
	    (sy_call_t *)sys_rename },		/* 128 = rename */
	{ ns(struct compat_43_sys_truncate_args), 0,
	    (sy_call_t *)compat_43(sys_truncate) },/* 129 = compat_43_otruncate */
	{ ns(struct compat_43_sys_ftruncate_args), 0,
	    (sy_call_t *)compat_43(sys_ftruncate) },/* 130 = compat_43_oftruncate */
	{ ns(struct sys_flock_args), 0,
	    (sy_call_t *)sys_flock },		/* 131 = flock */
	{ ns(struct sys_mkfifo_args), 0,
	    (sy_call_t *)sys_mkfifo },		/* 132 = mkfifo */
	{ ns(struct sys_sendto_args), 0,
	    (sy_call_t *)sys_sendto },		/* 133 = sendto */
	{ ns(struct sys_shutdown_args), 0,
	    (sy_call_t *)sys_shutdown },	/* 134 = shutdown */
	{ ns(struct sys_socketpair_args), 0,
	    (sy_call_t *)sys_socketpair },	/* 135 = socketpair */
	{ ns(struct sys_mkdir_args), 0,
	    (sy_call_t *)sys_mkdir },		/* 136 = mkdir */
	{ ns(struct sys_rmdir_args), 0,
	    (sy_call_t *)sys_rmdir },		/* 137 = rmdir */
	{ ns(struct sys_utimes_args), 0,
	    (sy_call_t *)sys_utimes },		/* 138 = utimes */
	{ 0, 0, 0,
	    sys_nosys },			/* 139 = obsolete 4.2 sigreturn */
	{ ns(struct sys_adjtime_args), 0,
	    (sy_call_t *)sys_adjtime },		/* 140 = adjtime */
	{ ns(struct compat_43_sys_getpeername_args), 0,
	    (sy_call_t *)compat_43(sys_getpeername) },/* 141 = compat_43_ogetpeername */
	{ 0, 0, 0,
	    (sy_call_t *)compat_43(sys_gethostid) },/* 142 = compat_43_ogethostid */
	{ ns(struct compat_43_sys_sethostid_args), 0,
	    (sy_call_t *)compat_43(sys_sethostid) },/* 143 = compat_43_osethostid */
	{ ns(struct compat_43_sys_getrlimit_args), 0,
	    (sy_call_t *)compat_43(sys_getrlimit) },/* 144 = compat_43_ogetrlimit */
	{ ns(struct compat_43_sys_setrlimit_args), 0,
	    (sy_call_t *)compat_43(sys_setrlimit) },/* 145 = compat_43_osetrlimit */
	{ ns(struct compat_43_sys_killpg_args), 0,
	    (sy_call_t *)compat_43(sys_killpg) },/* 146 = compat_43_okillpg */
	{ 0, 0, 0,
	    (sy_call_t *)sys_setsid },		/* 147 = setsid */
	{ ns(struct sys_quotactl_args), 0,
	    (sy_call_t *)sys_quotactl },	/* 148 = quotactl */
	{ 0, 0, 0,
	    (sy_call_t *)compat_43(sys_quota) },/* 149 = compat_43_oquota */
	{ ns(struct compat_43_sys_getsockname_args), 0,
	    (sy_call_t *)compat_43(sys_getsockname) },/* 150 = compat_43_ogetsockname */
	{ 0, 0, 0,
	    sys_nosys },			/* 151 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 152 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 153 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 154 = unimplemented */
#if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
	{ ns(struct sys_nfssvc_args), 0,
	    (sy_call_t *)sys_nfssvc },		/* 155 = nfssvc */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 155 = excluded nfssvc */
#endif
	{ ns(struct compat_43_sys_getdirentries_args), 0,
	    (sy_call_t *)compat_43(sys_getdirentries) },/* 156 = compat_43_ogetdirentries */
	{ ns(struct compat_20_sys_statfs_args), 0,
	    (sy_call_t *)compat_20(sys_statfs) },/* 157 = compat_20_statfs */
	{ ns(struct compat_20_sys_fstatfs_args), 0,
	    (sy_call_t *)compat_20(sys_fstatfs) },/* 158 = compat_20_fstatfs */
	{ 0, 0, 0,
	    sys_nosys },			/* 159 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 160 = unimplemented */
	{ ns(struct compat_30_sys_getfh_args), 0,
	    (sy_call_t *)compat_30(sys_getfh) },/* 161 = compat_30_getfh */
	{ ns(struct compat_09_sys_getdomainname_args), 0,
	    (sy_call_t *)compat_09(sys_getdomainname) },/* 162 = compat_09_ogetdomainname */
	{ ns(struct compat_09_sys_setdomainname_args), 0,
	    (sy_call_t *)compat_09(sys_setdomainname) },/* 163 = compat_09_osetdomainname */
	{ ns(struct compat_09_sys_uname_args), 0,
	    (sy_call_t *)compat_09(sys_uname) },/* 164 = compat_09_ouname */
	{ ns(struct sys_sysarch_args), 0,
	    (sy_call_t *)sys_sysarch },		/* 165 = sysarch */
	{ 0, 0, 0,
	    sys_nosys },			/* 166 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 167 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 168 = unimplemented */
#if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64)
	{ ns(struct compat_10_sys_semsys_args), 0,
	    (sy_call_t *)compat_10(sys_semsys) },/* 169 = compat_10_osemsys */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 169 = excluded 1.0 semsys */
#endif
#if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64)
	{ ns(struct compat_10_sys_msgsys_args), 0,
	    (sy_call_t *)compat_10(sys_msgsys) },/* 170 = compat_10_omsgsys */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 170 = excluded 1.0 msgsys */
#endif
#if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64)
	{ ns(struct compat_10_sys_shmsys_args), 0,
	    (sy_call_t *)compat_10(sys_shmsys) },/* 171 = compat_10_oshmsys */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 171 = excluded 1.0 shmsys */
#endif
	{ 0, 0, 0,
	    sys_nosys },			/* 172 = unimplemented */
	{ ns(struct sys_pread_args), 0,
	    (sy_call_t *)sys_pread },		/* 173 = pread */
	{ ns(struct sys_pwrite_args), 0,
	    (sy_call_t *)sys_pwrite },		/* 174 = pwrite */
	{ ns(struct compat_30_sys_ntp_gettime_args), 0,
	    (sy_call_t *)compat_30(sys_ntp_gettime) },/* 175 = compat_30_ntp_gettime */
#if defined(NTP) || !defined(_KERNEL)
	{ ns(struct sys_ntp_adjtime_args), 0,
	    (sy_call_t *)sys_ntp_adjtime },	/* 176 = ntp_adjtime */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 176 = excluded ntp_adjtime */
#endif
	{ 0, 0, 0,
	    sys_nosys },			/* 177 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 178 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 179 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 180 = unimplemented */
	{ ns(struct sys_setgid_args), 0,
	    (sy_call_t *)sys_setgid },		/* 181 = setgid */
	{ ns(struct sys_setegid_args), 0,
	    (sy_call_t *)sys_setegid },		/* 182 = setegid */
	{ ns(struct sys_seteuid_args), 0,
	    (sy_call_t *)sys_seteuid },		/* 183 = seteuid */
#if defined(LFS) || !defined(_KERNEL)
	{ ns(struct sys_lfs_bmapv_args), 0,
	    (sy_call_t *)sys_lfs_bmapv },	/* 184 = lfs_bmapv */
	{ ns(struct sys_lfs_markv_args), 0,
	    (sy_call_t *)sys_lfs_markv },	/* 185 = lfs_markv */
	{ ns(struct sys_lfs_segclean_args), 0,
	    (sy_call_t *)sys_lfs_segclean },	/* 186 = lfs_segclean */
	{ ns(struct sys_lfs_segwait_args), 0,
	    (sy_call_t *)sys_lfs_segwait },	/* 187 = lfs_segwait */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 184 = excluded lfs_bmapv */
	{ 0, 0, 0,
	    sys_nosys },			/* 185 = excluded lfs_markv */
	{ 0, 0, 0,
	    sys_nosys },			/* 186 = excluded lfs_segclean */
	{ 0, 0, 0,
	    sys_nosys },			/* 187 = excluded lfs_segwait */
#endif
	{ ns(struct compat_12_sys_stat_args), 0,
	    (sy_call_t *)compat_12(sys_stat) },	/* 188 = compat_12_stat12 */
	{ ns(struct compat_12_sys_fstat_args), 0,
	    (sy_call_t *)compat_12(sys_fstat) },/* 189 = compat_12_fstat12 */
	{ ns(struct compat_12_sys_lstat_args), 0,
	    (sy_call_t *)compat_12(sys_lstat) },/* 190 = compat_12_lstat12 */
	{ ns(struct sys_pathconf_args), 0,
	    (sy_call_t *)sys_pathconf },	/* 191 = pathconf */
	{ ns(struct sys_fpathconf_args), 0,
	    (sy_call_t *)sys_fpathconf },	/* 192 = fpathconf */
	{ 0, 0, 0,
	    sys_nosys },			/* 193 = unimplemented */
	{ ns(struct sys_getrlimit_args), 0,
	    (sy_call_t *)sys_getrlimit },	/* 194 = getrlimit */
	{ ns(struct sys_setrlimit_args), 0,
	    (sy_call_t *)sys_setrlimit },	/* 195 = setrlimit */
	{ ns(struct compat_12_sys_getdirentries_args), 0,
	    (sy_call_t *)compat_12(sys_getdirentries) },/* 196 = compat_12_getdirentries */
	{ ns(struct sys_mmap_args), 0,
	    (sy_call_t *)sys_mmap },		/* 197 = mmap */
	{ ns(struct sys___syscall_args), SYCALL_INDIRECT,
	    (sy_call_t *)sys___syscall },	/* 198 = __syscall */
	{ ns(struct sys_lseek_args), 0,
	    (sy_call_t *)sys_lseek },		/* 199 = lseek */
	{ ns(struct sys_truncate_args), 0,
	    (sy_call_t *)sys_truncate },	/* 200 = truncate */
	{ ns(struct sys_ftruncate_args), 0,
	    (sy_call_t *)sys_ftruncate },	/* 201 = ftruncate */
	{ ns(struct sys___sysctl_args), 0,
	    (sy_call_t *)sys___sysctl },	/* 202 = __sysctl */
	{ ns(struct sys_mlock_args), 0,
	    (sy_call_t *)sys_mlock },		/* 203 = mlock */
	{ ns(struct sys_munlock_args), 0,
	    (sy_call_t *)sys_munlock },		/* 204 = munlock */
	{ ns(struct sys_undelete_args), 0,
	    (sy_call_t *)sys_undelete },	/* 205 = undelete */
	{ ns(struct sys_futimes_args), 0,
	    (sy_call_t *)sys_futimes },		/* 206 = futimes */
	{ ns(struct sys_getpgid_args), 0,
	    (sy_call_t *)sys_getpgid },		/* 207 = getpgid */
	{ ns(struct sys_reboot_args), 0,
	    (sy_call_t *)sys_reboot },		/* 208 = reboot */
	{ ns(struct sys_poll_args), 0,
	    (sy_call_t *)sys_poll },		/* 209 = poll */
	{ 0, 0, 0,
	    sys_nosys },			/* 210 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 211 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 212 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 213 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 214 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 215 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 216 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 217 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 218 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 219 = unimplemented */
#if defined(SYSVSEM) || !defined(_KERNEL)
	{ ns(struct compat_14_sys___semctl_args), 0,
	    (sy_call_t *)compat_14(sys___semctl) },/* 220 = compat_14___semctl */
	{ ns(struct sys_semget_args), 0,
	    (sy_call_t *)sys_semget },		/* 221 = semget */
	{ ns(struct sys_semop_args), 0,
	    (sy_call_t *)sys_semop },		/* 222 = semop */
	{ ns(struct sys_semconfig_args), 0,
	    (sy_call_t *)sys_semconfig },	/* 223 = semconfig */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 220 = excluded compat_14_semctl */
	{ 0, 0, 0,
	    sys_nosys },			/* 221 = excluded semget */
	{ 0, 0, 0,
	    sys_nosys },			/* 222 = excluded semop */
	{ 0, 0, 0,
	    sys_nosys },			/* 223 = excluded semconfig */
#endif
#if defined(SYSVMSG) || !defined(_KERNEL)
	{ ns(struct compat_14_sys_msgctl_args), 0,
	    (sy_call_t *)compat_14(sys_msgctl) },/* 224 = compat_14_msgctl */
	{ ns(struct sys_msgget_args), 0,
	    (sy_call_t *)sys_msgget },		/* 225 = msgget */
	{ ns(struct sys_msgsnd_args), 0,
	    (sy_call_t *)sys_msgsnd },		/* 226 = msgsnd */
	{ ns(struct sys_msgrcv_args), 0,
	    (sy_call_t *)sys_msgrcv },		/* 227 = msgrcv */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 224 = excluded compat_14_msgctl */
	{ 0, 0, 0,
	    sys_nosys },			/* 225 = excluded msgget */
	{ 0, 0, 0,
	    sys_nosys },			/* 226 = excluded msgsnd */
	{ 0, 0, 0,
	    sys_nosys },			/* 227 = excluded msgrcv */
#endif
#if defined(SYSVSHM) || !defined(_KERNEL)
	{ ns(struct sys_shmat_args), 0,
	    (sy_call_t *)sys_shmat },		/* 228 = shmat */
	{ ns(struct compat_14_sys_shmctl_args), 0,
	    (sy_call_t *)compat_14(sys_shmctl) },/* 229 = compat_14_shmctl */
	{ ns(struct sys_shmdt_args), 0,
	    (sy_call_t *)sys_shmdt },		/* 230 = shmdt */
	{ ns(struct sys_shmget_args), 0,
	    (sy_call_t *)sys_shmget },		/* 231 = shmget */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 228 = excluded shmat */
	{ 0, 0, 0,
	    sys_nosys },			/* 229 = excluded compat_14_shmctl */
	{ 0, 0, 0,
	    sys_nosys },			/* 230 = excluded shmdt */
	{ 0, 0, 0,
	    sys_nosys },			/* 231 = excluded shmget */
#endif
	{ ns(struct sys_clock_gettime_args), 0,
	    (sy_call_t *)sys_clock_gettime },	/* 232 = clock_gettime */
	{ ns(struct sys_clock_settime_args), 0,
	    (sy_call_t *)sys_clock_settime },	/* 233 = clock_settime */
	{ ns(struct sys_clock_getres_args), 0,
	    (sy_call_t *)sys_clock_getres },	/* 234 = clock_getres */
	{ ns(struct sys_timer_create_args), 0,
	    (sy_call_t *)sys_timer_create },	/* 235 = timer_create */
	{ ns(struct sys_timer_delete_args), 0,
	    (sy_call_t *)sys_timer_delete },	/* 236 = timer_delete */
	{ ns(struct sys_timer_settime_args), 0,
	    (sy_call_t *)sys_timer_settime },	/* 237 = timer_settime */
	{ ns(struct sys_timer_gettime_args), 0,
	    (sy_call_t *)sys_timer_gettime },	/* 238 = timer_gettime */
	{ ns(struct sys_timer_getoverrun_args), 0,
	    (sy_call_t *)sys_timer_getoverrun },/* 239 = timer_getoverrun */
	{ ns(struct sys_nanosleep_args), 0,
	    (sy_call_t *)sys_nanosleep },	/* 240 = nanosleep */
	{ ns(struct sys_fdatasync_args), 0,
	    (sy_call_t *)sys_fdatasync },	/* 241 = fdatasync */
	{ ns(struct sys_mlockall_args), 0,
	    (sy_call_t *)sys_mlockall },	/* 242 = mlockall */
	{ 0, 0, 0,
	    (sy_call_t *)sys_munlockall },	/* 243 = munlockall */
	{ ns(struct sys___sigtimedwait_args), 0,
	    (sy_call_t *)sys___sigtimedwait },	/* 244 = __sigtimedwait */
	{ 0, 0, 0,
	    sys_nosys },			/* 245 = unimplemented sys_sigqueue */
	{ ns(struct sys_modctl_args), 0,
	    (sy_call_t *)sys_modctl },		/* 246 = modctl */
#if defined(P1003_1B_SEMAPHORE) || (!defined(_KERNEL) && defined(_LIBC))
	{ ns(struct sys__ksem_init_args), 0,
	    (sy_call_t *)sys__ksem_init },	/* 247 = _ksem_init */
	{ ns(struct sys__ksem_open_args), 0,
	    (sy_call_t *)sys__ksem_open },	/* 248 = _ksem_open */
	{ ns(struct sys__ksem_unlink_args), 0,
	    (sy_call_t *)sys__ksem_unlink },	/* 249 = _ksem_unlink */
	{ ns(struct sys__ksem_close_args), 0,
	    (sy_call_t *)sys__ksem_close },	/* 250 = _ksem_close */
	{ ns(struct sys__ksem_post_args), 0,
	    (sy_call_t *)sys__ksem_post },	/* 251 = _ksem_post */
	{ ns(struct sys__ksem_wait_args), 0,
	    (sy_call_t *)sys__ksem_wait },	/* 252 = _ksem_wait */
	{ ns(struct sys__ksem_trywait_args), 0,
	    (sy_call_t *)sys__ksem_trywait },	/* 253 = _ksem_trywait */
	{ ns(struct sys__ksem_getvalue_args), 0,
	    (sy_call_t *)sys__ksem_getvalue },	/* 254 = _ksem_getvalue */
	{ ns(struct sys__ksem_destroy_args), 0,
	    (sy_call_t *)sys__ksem_destroy },	/* 255 = _ksem_destroy */
	{ 0, 0, 0,
	    sys_nosys },			/* 256 = unimplemented sys__ksem_timedwait */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 247 = excluded sys__ksem_init */
	{ 0, 0, 0,
	    sys_nosys },			/* 248 = excluded sys__ksem_open */
	{ 0, 0, 0,
	    sys_nosys },			/* 249 = excluded sys__ksem_unlink */
	{ 0, 0, 0,
	    sys_nosys },			/* 250 = excluded sys__ksem_close */
	{ 0, 0, 0,
	    sys_nosys },			/* 251 = excluded sys__ksem_post */
	{ 0, 0, 0,
	    sys_nosys },			/* 252 = excluded sys__ksem_wait */
	{ 0, 0, 0,
	    sys_nosys },			/* 253 = excluded sys__ksem_trywait */
	{ 0, 0, 0,
	    sys_nosys },			/* 254 = excluded sys__ksem_getvalue */
	{ 0, 0, 0,
	    sys_nosys },			/* 255 = excluded sys__ksem_destroy */
	{ 0, 0, 0,
	    sys_nosys },			/* 256 = unimplemented sys__ksem_timedwait */
#endif
	{ ns(struct sys_mq_open_args), 0,
	    (sy_call_t *)sys_mq_open },		/* 257 = mq_open */
	{ ns(struct sys_mq_close_args), 0,
	    (sy_call_t *)sys_mq_close },	/* 258 = mq_close */
	{ ns(struct sys_mq_unlink_args), 0,
	    (sy_call_t *)sys_mq_unlink },	/* 259 = mq_unlink */
	{ ns(struct sys_mq_getattr_args), 0,
	    (sy_call_t *)sys_mq_getattr },	/* 260 = mq_getattr */
	{ ns(struct sys_mq_setattr_args), 0,
	    (sy_call_t *)sys_mq_setattr },	/* 261 = mq_setattr */
	{ ns(struct sys_mq_notify_args), 0,
	    (sy_call_t *)sys_mq_notify },	/* 262 = mq_notify */
	{ ns(struct sys_mq_send_args), 0,
	    (sy_call_t *)sys_mq_send },		/* 263 = mq_send */
	{ ns(struct sys_mq_receive_args), 0,
	    (sy_call_t *)sys_mq_receive },	/* 264 = mq_receive */
	{ ns(struct sys_mq_timedsend_args), 0,
	    (sy_call_t *)sys_mq_timedsend },	/* 265 = mq_timedsend */
	{ ns(struct sys_mq_timedreceive_args), 0,
	    (sy_call_t *)sys_mq_timedreceive },	/* 266 = mq_timedreceive */
	{ 0, 0, 0,
	    sys_nosys },			/* 267 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 268 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 269 = unimplemented */
	{ ns(struct sys___posix_rename_args), 0,
	    (sy_call_t *)sys___posix_rename },	/* 270 = __posix_rename */
	{ ns(struct sys_swapctl_args), 0,
	    (sy_call_t *)sys_swapctl },		/* 271 = swapctl */
	{ ns(struct compat_30_sys_getdents_args), 0,
	    (sy_call_t *)compat_30(sys_getdents) },/* 272 = compat_30_getdents */
	{ ns(struct sys_minherit_args), 0,
	    (sy_call_t *)sys_minherit },	/* 273 = minherit */
	{ ns(struct sys_lchmod_args), 0,
	    (sy_call_t *)sys_lchmod },		/* 274 = lchmod */
	{ ns(struct sys_lchown_args), 0,
	    (sy_call_t *)sys_lchown },		/* 275 = lchown */
	{ ns(struct sys_lutimes_args), 0,
	    (sy_call_t *)sys_lutimes },		/* 276 = lutimes */
	{ ns(struct sys___msync13_args), 0,
	    (sy_call_t *)sys___msync13 },	/* 277 = __msync13 */
	{ ns(struct compat_30_sys___stat13_args), 0,
	    (sy_call_t *)compat_30(sys___stat13) },/* 278 = compat_30___stat13 */
	{ ns(struct compat_30_sys___fstat13_args), 0,
	    (sy_call_t *)compat_30(sys___fstat13) },/* 279 = compat_30___fstat13 */
	{ ns(struct compat_30_sys___lstat13_args), 0,
	    (sy_call_t *)compat_30(sys___lstat13) },/* 280 = compat_30___lstat13 */
	{ ns(struct sys___sigaltstack14_args), 0,
	    (sy_call_t *)sys___sigaltstack14 },	/* 281 = __sigaltstack14 */
	{ 0, 0, 0,
	    (sy_call_t *)sys___vfork14 },	/* 282 = __vfork14 */
	{ ns(struct sys___posix_chown_args), 0,
	    (sy_call_t *)sys___posix_chown },	/* 283 = __posix_chown */
	{ ns(struct sys___posix_fchown_args), 0,
	    (sy_call_t *)sys___posix_fchown },	/* 284 = __posix_fchown */
	{ ns(struct sys___posix_lchown_args), 0,
	    (sy_call_t *)sys___posix_lchown },	/* 285 = __posix_lchown */
	{ ns(struct sys_getsid_args), 0,
	    (sy_call_t *)sys_getsid },		/* 286 = getsid */
	{ ns(struct sys___clone_args), 0,
	    (sy_call_t *)sys___clone },		/* 287 = __clone */
	{ ns(struct sys_fktrace_args), 0,
	    (sy_call_t *)sys_fktrace },		/* 288 = fktrace */
	{ ns(struct sys_preadv_args), 0,
	    (sy_call_t *)sys_preadv },		/* 289 = preadv */
	{ ns(struct sys_pwritev_args), 0,
	    (sy_call_t *)sys_pwritev },		/* 290 = pwritev */
	{ ns(struct compat_16_sys___sigaction14_args), 0,
	    (sy_call_t *)compat_16(sys___sigaction14) },/* 291 = compat_16___sigaction14 */
	{ ns(struct sys___sigpending14_args), 0,
	    (sy_call_t *)sys___sigpending14 },	/* 292 = __sigpending14 */
	{ ns(struct sys___sigprocmask14_args), 0,
	    (sy_call_t *)sys___sigprocmask14 },	/* 293 = __sigprocmask14 */
	{ ns(struct sys___sigsuspend14_args), 0,
	    (sy_call_t *)sys___sigsuspend14 },	/* 294 = __sigsuspend14 */
	{ ns(struct compat_16_sys___sigreturn14_args), 0,
	    (sy_call_t *)compat_16(sys___sigreturn14) },/* 295 = compat_16___sigreturn14 */
	{ ns(struct sys___getcwd_args), 0,
	    (sy_call_t *)sys___getcwd },	/* 296 = __getcwd */
	{ ns(struct sys_fchroot_args), 0,
	    (sy_call_t *)sys_fchroot },		/* 297 = fchroot */
	{ ns(struct compat_30_sys_fhopen_args), 0,
	    (sy_call_t *)compat_30(sys_fhopen) },/* 298 = compat_30_fhopen */
	{ ns(struct compat_30_sys_fhstat_args), 0,
	    (sy_call_t *)compat_30(sys_fhstat) },/* 299 = compat_30_fhstat */
	{ ns(struct compat_20_sys_fhstatfs_args), 0,
	    (sy_call_t *)compat_20(sys_fhstatfs) },/* 300 = compat_20_fhstatfs */
#if defined(SYSVSEM) || !defined(_KERNEL)
	{ ns(struct sys_____semctl13_args), 0,
	    (sy_call_t *)sys_____semctl13 },	/* 301 = ____semctl13 */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 301 = excluded ____semctl13 */
#endif
#if defined(SYSVMSG) || !defined(_KERNEL)
	{ ns(struct sys___msgctl13_args), 0,
	    (sy_call_t *)sys___msgctl13 },	/* 302 = __msgctl13 */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 302 = excluded __msgctl13 */
#endif
#if defined(SYSVSHM) || !defined(_KERNEL)
	{ ns(struct sys___shmctl13_args), 0,
	    (sy_call_t *)sys___shmctl13 },	/* 303 = __shmctl13 */
#else
	{ 0, 0, 0,
	    sys_nosys },			/* 303 = excluded __shmctl13 */
#endif
	{ ns(struct sys_lchflags_args), 0,
	    (sy_call_t *)sys_lchflags },	/* 304 = lchflags */
	{ 0, 0, 0,
	    (sy_call_t *)sys_issetugid },	/* 305 = issetugid */
	{ ns(struct sys_utrace_args), 0,
	    (sy_call_t *)sys_utrace },		/* 306 = utrace */
	{ ns(struct sys_getcontext_args), 0,
	    (sy_call_t *)sys_getcontext },	/* 307 = getcontext */
	{ ns(struct sys_setcontext_args), 0,
	    (sy_call_t *)sys_setcontext },	/* 308 = setcontext */
	{ ns(struct sys__lwp_create_args), 0,
	    (sy_call_t *)sys__lwp_create },	/* 309 = _lwp_create */
	{ 0, 0, 0,
	    (sy_call_t *)sys__lwp_exit },	/* 310 = _lwp_exit */
	{ 0, 0, 0,
	    (sy_call_t *)sys__lwp_self },	/* 311 = _lwp_self */
	{ ns(struct sys__lwp_wait_args), 0,
	    (sy_call_t *)sys__lwp_wait },	/* 312 = _lwp_wait */
	{ ns(struct sys__lwp_suspend_args), 0,
	    (sy_call_t *)sys__lwp_suspend },	/* 313 = _lwp_suspend */
	{ ns(struct sys__lwp_continue_args), 0,
	    (sy_call_t *)sys__lwp_continue },	/* 314 = _lwp_continue */
	{ ns(struct sys__lwp_wakeup_args), 0,
	    (sy_call_t *)sys__lwp_wakeup },	/* 315 = _lwp_wakeup */
	{ 0, 0, 0,
	    (sy_call_t *)sys__lwp_getprivate },	/* 316 = _lwp_getprivate */
	{ ns(struct sys__lwp_setprivate_args), 0,
	    (sy_call_t *)sys__lwp_setprivate },	/* 317 = _lwp_setprivate */
	{ ns(struct sys__lwp_kill_args), 0,
	    (sy_call_t *)sys__lwp_kill },	/* 318 = _lwp_kill */
	{ ns(struct sys__lwp_detach_args), 0,
	    (sy_call_t *)sys__lwp_detach },	/* 319 = _lwp_detach */
	{ ns(struct sys__lwp_park_args), 0,
	    (sy_call_t *)sys__lwp_park },	/* 320 = _lwp_park */
	{ ns(struct sys__lwp_unpark_args), 0,
	    (sy_call_t *)sys__lwp_unpark },	/* 321 = _lwp_unpark */
	{ ns(struct sys__lwp_unpark_all_args), 0,
	    (sy_call_t *)sys__lwp_unpark_all },	/* 322 = _lwp_unpark_all */
	{ ns(struct sys__lwp_setname_args), 0,
	    (sy_call_t *)sys__lwp_setname },	/* 323 = _lwp_setname */
	{ ns(struct sys__lwp_getname_args), 0,
	    (sy_call_t *)sys__lwp_getname },	/* 324 = _lwp_getname */
	{ ns(struct sys__lwp_ctl_args), 0,
	    (sy_call_t *)sys__lwp_ctl },	/* 325 = _lwp_ctl */
	{ 0, 0, 0,
	    sys_nosys },			/* 326 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 327 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 328 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 329 = unimplemented */
	{ ns(struct sys_sa_register_args), 0,
	    (sy_call_t *)sys_sa_register },	/* 330 = sa_register */
	{ ns(struct sys_sa_stacks_args), 0,
	    (sy_call_t *)sys_sa_stacks },	/* 331 = sa_stacks */
	{ 0, 0, 0,
	    (sy_call_t *)sys_sa_enable },	/* 332 = sa_enable */
	{ ns(struct sys_sa_setconcurrency_args), 0,
	    (sy_call_t *)sys_sa_setconcurrency },/* 333 = sa_setconcurrency */
	{ 0, 0, 0,
	    (sy_call_t *)sys_sa_yield },	/* 334 = sa_yield */
	{ ns(struct sys_sa_preempt_args), 0,
	    (sy_call_t *)sys_sa_preempt },	/* 335 = sa_preempt */
	{ 0, 0, 0,
	    sys_nosys },			/* 336 = obsolete sys_sa_unblockyield */
	{ 0, 0, 0,
	    sys_nosys },			/* 337 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 338 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 339 = unimplemented */
	{ ns(struct sys___sigaction_sigtramp_args), 0,
	    (sy_call_t *)sys___sigaction_sigtramp },/* 340 = __sigaction_sigtramp */
	{ ns(struct sys_pmc_get_info_args), 0,
	    (sy_call_t *)sys_pmc_get_info },	/* 341 = pmc_get_info */
	{ ns(struct sys_pmc_control_args), 0,
	    (sy_call_t *)sys_pmc_control },	/* 342 = pmc_control */
	{ ns(struct sys_rasctl_args), 0,
	    (sy_call_t *)sys_rasctl },		/* 343 = rasctl */
	{ 0, 0, 0,
	    (sy_call_t *)sys_kqueue },		/* 344 = kqueue */
	{ ns(struct sys_kevent_args), 0,
	    (sy_call_t *)sys_kevent },		/* 345 = kevent */
	{ ns(struct sys__sched_setparam_args), 0,
	    (sy_call_t *)sys__sched_setparam },	/* 346 = _sched_setparam */
	{ ns(struct sys__sched_getparam_args), 0,
	    (sy_call_t *)sys__sched_getparam },	/* 347 = _sched_getparam */
	{ ns(struct sys__sched_setaffinity_args), 0,
	    (sy_call_t *)sys__sched_setaffinity },/* 348 = _sched_setaffinity */
	{ ns(struct sys__sched_getaffinity_args), 0,
	    (sy_call_t *)sys__sched_getaffinity },/* 349 = _sched_getaffinity */
	{ 0, 0, 0,
	    (sy_call_t *)sys_sched_yield },	/* 350 = sched_yield */
	{ 0, 0, 0,
	    sys_nosys },			/* 351 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 352 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 353 = unimplemented */
	{ ns(struct sys_fsync_range_args), 0,
	    (sy_call_t *)sys_fsync_range },	/* 354 = fsync_range */
	{ ns(struct sys_uuidgen_args), 0,
	    (sy_call_t *)sys_uuidgen },		/* 355 = uuidgen */
	{ ns(struct sys_getvfsstat_args), 0,
	    (sy_call_t *)sys_getvfsstat },	/* 356 = getvfsstat */
	{ ns(struct sys_statvfs1_args), 0,
	    (sy_call_t *)sys_statvfs1 },	/* 357 = statvfs1 */
	{ ns(struct sys_fstatvfs1_args), 0,
	    (sy_call_t *)sys_fstatvfs1 },	/* 358 = fstatvfs1 */
	{ ns(struct compat_30_sys_fhstatvfs1_args), 0,
	    (sy_call_t *)compat_30(sys_fhstatvfs1) },/* 359 = compat_30_fhstatvfs1 */
	{ ns(struct sys_extattrctl_args), 0,
	    (sy_call_t *)sys_extattrctl },	/* 360 = extattrctl */
	{ ns(struct sys_extattr_set_file_args), 0,
	    (sy_call_t *)sys_extattr_set_file },/* 361 = extattr_set_file */
	{ ns(struct sys_extattr_get_file_args), 0,
	    (sy_call_t *)sys_extattr_get_file },/* 362 = extattr_get_file */
	{ ns(struct sys_extattr_delete_file_args), 0,
	    (sy_call_t *)sys_extattr_delete_file },/* 363 = extattr_delete_file */
	{ ns(struct sys_extattr_set_fd_args), 0,
	    (sy_call_t *)sys_extattr_set_fd },	/* 364 = extattr_set_fd */
	{ ns(struct sys_extattr_get_fd_args), 0,
	    (sy_call_t *)sys_extattr_get_fd },	/* 365 = extattr_get_fd */
	{ ns(struct sys_extattr_delete_fd_args), 0,
	    (sy_call_t *)sys_extattr_delete_fd },/* 366 = extattr_delete_fd */
	{ ns(struct sys_extattr_set_link_args), 0,
	    (sy_call_t *)sys_extattr_set_link },/* 367 = extattr_set_link */
	{ ns(struct sys_extattr_get_link_args), 0,
	    (sy_call_t *)sys_extattr_get_link },/* 368 = extattr_get_link */
	{ ns(struct sys_extattr_delete_link_args), 0,
	    (sy_call_t *)sys_extattr_delete_link },/* 369 = extattr_delete_link */
	{ ns(struct sys_extattr_list_fd_args), 0,
	    (sy_call_t *)sys_extattr_list_fd },	/* 370 = extattr_list_fd */
	{ ns(struct sys_extattr_list_file_args), 0,
	    (sy_call_t *)sys_extattr_list_file },/* 371 = extattr_list_file */
	{ ns(struct sys_extattr_list_link_args), 0,
	    (sy_call_t *)sys_extattr_list_link },/* 372 = extattr_list_link */
	{ ns(struct sys_pselect_args), 0,
	    (sy_call_t *)sys_pselect },		/* 373 = pselect */
	{ ns(struct sys_pollts_args), 0,
	    (sy_call_t *)sys_pollts },		/* 374 = pollts */
	{ ns(struct sys_setxattr_args), 0,
	    (sy_call_t *)sys_setxattr },	/* 375 = setxattr */
	{ ns(struct sys_lsetxattr_args), 0,
	    (sy_call_t *)sys_lsetxattr },	/* 376 = lsetxattr */
	{ ns(struct sys_fsetxattr_args), 0,
	    (sy_call_t *)sys_fsetxattr },	/* 377 = fsetxattr */
	{ ns(struct sys_getxattr_args), 0,
	    (sy_call_t *)sys_getxattr },	/* 378 = getxattr */
	{ ns(struct sys_lgetxattr_args), 0,
	    (sy_call_t *)sys_lgetxattr },	/* 379 = lgetxattr */
	{ ns(struct sys_fgetxattr_args), 0,
	    (sy_call_t *)sys_fgetxattr },	/* 380 = fgetxattr */
	{ ns(struct sys_listxattr_args), 0,
	    (sy_call_t *)sys_listxattr },	/* 381 = listxattr */
	{ ns(struct sys_llistxattr_args), 0,
	    (sy_call_t *)sys_llistxattr },	/* 382 = llistxattr */
	{ ns(struct sys_flistxattr_args), 0,
	    (sy_call_t *)sys_flistxattr },	/* 383 = flistxattr */
	{ ns(struct sys_removexattr_args), 0,
	    (sy_call_t *)sys_removexattr },	/* 384 = removexattr */
	{ ns(struct sys_lremovexattr_args), 0,
	    (sy_call_t *)sys_lremovexattr },	/* 385 = lremovexattr */
	{ ns(struct sys_fremovexattr_args), 0,
	    (sy_call_t *)sys_fremovexattr },	/* 386 = fremovexattr */
	{ ns(struct sys___stat30_args), 0,
	    (sy_call_t *)sys___stat30 },	/* 387 = __stat30 */
	{ ns(struct sys___fstat30_args), 0,
	    (sy_call_t *)sys___fstat30 },	/* 388 = __fstat30 */
	{ ns(struct sys___lstat30_args), 0,
	    (sy_call_t *)sys___lstat30 },	/* 389 = __lstat30 */
	{ ns(struct sys___getdents30_args), 0,
	    (sy_call_t *)sys___getdents30 },	/* 390 = __getdents30 */
	{ 0, 0, 0,
	    (sy_call_t *)nullop },			/* 391 = ignored old posix_fadvise */
	{ ns(struct compat_30_sys___fhstat30_args), 0,
	    (sy_call_t *)compat_30(sys___fhstat30) },/* 392 = compat_30___fhstat30 */
	{ ns(struct sys___ntp_gettime30_args), 0,
	    (sy_call_t *)sys___ntp_gettime30 },	/* 393 = __ntp_gettime30 */
	{ ns(struct sys___socket30_args), 0,
	    (sy_call_t *)sys___socket30 },	/* 394 = __socket30 */
	{ ns(struct sys___getfh30_args), 0,
	    (sy_call_t *)sys___getfh30 },	/* 395 = __getfh30 */
	{ ns(struct sys___fhopen40_args), 0,
	    (sy_call_t *)sys___fhopen40 },	/* 396 = __fhopen40 */
	{ ns(struct sys___fhstatvfs140_args), 0,
	    (sy_call_t *)sys___fhstatvfs140 },	/* 397 = __fhstatvfs140 */
	{ ns(struct sys___fhstat40_args), 0,
	    (sy_call_t *)sys___fhstat40 },	/* 398 = __fhstat40 */
	{ ns(struct sys_aio_cancel_args), 0,
	    (sy_call_t *)sys_aio_cancel },	/* 399 = aio_cancel */
	{ ns(struct sys_aio_error_args), 0,
	    (sy_call_t *)sys_aio_error },	/* 400 = aio_error */
	{ ns(struct sys_aio_fsync_args), 0,
	    (sy_call_t *)sys_aio_fsync },	/* 401 = aio_fsync */
	{ ns(struct sys_aio_read_args), 0,
	    (sy_call_t *)sys_aio_read },	/* 402 = aio_read */
	{ ns(struct sys_aio_return_args), 0,
	    (sy_call_t *)sys_aio_return },	/* 403 = aio_return */
	{ ns(struct sys_aio_suspend_args), 0,
	    (sy_call_t *)sys_aio_suspend },	/* 404 = aio_suspend */
	{ ns(struct sys_aio_write_args), 0,
	    (sy_call_t *)sys_aio_write },	/* 405 = aio_write */
	{ ns(struct sys_lio_listio_args), 0,
	    (sy_call_t *)sys_lio_listio },	/* 406 = lio_listio */
	{ 0, 0, 0,
	    sys_nosys },			/* 407 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 408 = unimplemented */
	{ 0, 0, 0,
	    sys_nosys },			/* 409 = unimplemented */
	{ ns(struct sys___mount50_args), 0,
	    (sy_call_t *)sys___mount50 },	/* 410 = __mount50 */
	{ ns(struct sys_mremap_args), 0,
	    (sy_call_t *)sys_mremap },		/* 411 = mremap */
	{ ns(struct sys_pset_create_args), 0,
	    (sy_call_t *)sys_pset_create },	/* 412 = pset_create */
	{ ns(struct sys_pset_destroy_args), 0,
	    (sy_call_t *)sys_pset_destroy },	/* 413 = pset_destroy */
	{ ns(struct sys_pset_assign_args), 0,
	    (sy_call_t *)sys_pset_assign },	/* 414 = pset_assign */
	{ ns(struct sys__pset_bind_args), 0,
	    (sy_call_t *)sys__pset_bind },	/* 415 = _pset_bind */
	{ ns(struct sys___posix_fadvise50_args), 0,
	    (sy_call_t *)sys___posix_fadvise50 },/* 416 = __posix_fadvise50 */
	{ 0, 0, 0,
	    sys_nosys },			/* 417 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 418 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 419 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 420 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 421 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 422 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 423 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 424 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 425 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 426 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 427 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 428 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 429 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 430 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 431 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 432 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 433 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 434 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 435 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 436 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 437 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 438 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 439 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 440 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 441 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 442 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 443 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 444 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 445 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 446 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 447 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 448 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 449 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 450 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 451 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 452 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 453 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 454 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 455 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 456 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 457 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 458 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 459 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 460 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 461 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 462 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 463 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 464 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 465 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 466 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 467 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 468 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 469 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 470 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 471 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 472 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 473 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 474 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 475 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 476 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 477 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 478 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 479 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 480 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 481 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 482 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 483 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 484 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 485 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 486 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 487 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 488 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 489 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 490 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 491 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 492 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 493 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 494 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 495 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 496 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 497 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 498 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 499 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 500 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 501 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 502 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 503 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 504 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 505 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 506 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 507 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 508 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 509 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 510 = filler */
	{ 0, 0, 0,
	    sys_nosys },			/* 511 = filler */
};