systrace_args.c revision 1.29.2.5 1 1.29.2.1 pgoyette /* $NetBSD: systrace_args.c,v 1.29.2.5 2018/03/25 07:19:47 pgoyette Exp $ */
2 1.1 christos
3 1.1 christos /*
4 1.1 christos * System call argument to DTrace register array converstion.
5 1.1 christos *
6 1.1 christos * DO NOT EDIT-- this file is automatically generated.
7 1.1 christos * This file is part of the DTrace syscall provider.
8 1.1 christos */
9 1.1 christos
10 1.1 christos static void
11 1.1 christos systrace_args(register_t sysnum, const void *params, uintptr_t *uarg, size_t *n_args)
12 1.1 christos {
13 1.1 christos intptr_t *iarg = (intptr_t *)uarg;
14 1.1 christos switch (sysnum) {
15 1.1 christos /* sys_syscall */
16 1.1 christos case 0: {
17 1.23 christos const struct sys_syscall_args *p = params;
18 1.1 christos iarg[0] = SCARG(p, code); /* int */
19 1.1 christos iarg[1] = SCARG(p, args[SYS_MAXSYSARGS]); /* register_t */
20 1.1 christos *n_args = 2;
21 1.1 christos break;
22 1.1 christos }
23 1.1 christos /* sys_exit */
24 1.1 christos case 1: {
25 1.23 christos const struct sys_exit_args *p = params;
26 1.1 christos iarg[0] = SCARG(p, rval); /* int */
27 1.1 christos *n_args = 1;
28 1.1 christos break;
29 1.1 christos }
30 1.1 christos /* sys_fork */
31 1.1 christos case 2: {
32 1.1 christos *n_args = 0;
33 1.1 christos break;
34 1.1 christos }
35 1.1 christos /* sys_read */
36 1.1 christos case 3: {
37 1.23 christos const struct sys_read_args *p = params;
38 1.1 christos iarg[0] = SCARG(p, fd); /* int */
39 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
40 1.1 christos uarg[2] = SCARG(p, nbyte); /* size_t */
41 1.1 christos *n_args = 3;
42 1.1 christos break;
43 1.1 christos }
44 1.1 christos /* sys_write */
45 1.1 christos case 4: {
46 1.23 christos const struct sys_write_args *p = params;
47 1.1 christos iarg[0] = SCARG(p, fd); /* int */
48 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* const void * */
49 1.1 christos uarg[2] = SCARG(p, nbyte); /* size_t */
50 1.1 christos *n_args = 3;
51 1.1 christos break;
52 1.1 christos }
53 1.1 christos /* sys_open */
54 1.1 christos case 5: {
55 1.23 christos const struct sys_open_args *p = params;
56 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
57 1.1 christos iarg[1] = SCARG(p, flags); /* int */
58 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */
59 1.1 christos *n_args = 3;
60 1.1 christos break;
61 1.1 christos }
62 1.1 christos /* sys_close */
63 1.1 christos case 6: {
64 1.23 christos const struct sys_close_args *p = params;
65 1.1 christos iarg[0] = SCARG(p, fd); /* int */
66 1.1 christos *n_args = 1;
67 1.1 christos break;
68 1.1 christos }
69 1.1 christos /* sys_wait4 */
70 1.1 christos case 7: {
71 1.23 christos const struct compat_50_sys_wait4_args *p = params;
72 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
73 1.1 christos uarg[1] = (intptr_t) SCARG(p, status); /* int * */
74 1.1 christos iarg[2] = SCARG(p, options); /* int */
75 1.1 christos uarg[3] = (intptr_t) SCARG(p, rusage); /* struct rusage50 * */
76 1.1 christos *n_args = 4;
77 1.1 christos break;
78 1.1 christos }
79 1.1 christos /* sys_creat */
80 1.1 christos case 8: {
81 1.23 christos const struct compat_43_sys_creat_args *p = params;
82 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
83 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */
84 1.1 christos *n_args = 2;
85 1.1 christos break;
86 1.1 christos }
87 1.1 christos /* sys_link */
88 1.1 christos case 9: {
89 1.23 christos const struct sys_link_args *p = params;
90 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
91 1.1 christos uarg[1] = (intptr_t) SCARG(p, link); /* const char * */
92 1.1 christos *n_args = 2;
93 1.1 christos break;
94 1.1 christos }
95 1.1 christos /* sys_unlink */
96 1.1 christos case 10: {
97 1.23 christos const struct sys_unlink_args *p = params;
98 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
99 1.1 christos *n_args = 1;
100 1.1 christos break;
101 1.1 christos }
102 1.1 christos /* sys_chdir */
103 1.1 christos case 12: {
104 1.23 christos const struct sys_chdir_args *p = params;
105 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
106 1.1 christos *n_args = 1;
107 1.1 christos break;
108 1.1 christos }
109 1.1 christos /* sys_fchdir */
110 1.1 christos case 13: {
111 1.23 christos const struct sys_fchdir_args *p = params;
112 1.1 christos iarg[0] = SCARG(p, fd); /* int */
113 1.1 christos *n_args = 1;
114 1.1 christos break;
115 1.1 christos }
116 1.1 christos /* sys_mknod */
117 1.1 christos case 14: {
118 1.23 christos const struct compat_50_sys_mknod_args *p = params;
119 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
120 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */
121 1.1 christos uarg[2] = SCARG(p, dev); /* uint32_t */
122 1.1 christos *n_args = 3;
123 1.1 christos break;
124 1.1 christos }
125 1.1 christos /* sys_chmod */
126 1.1 christos case 15: {
127 1.23 christos const struct sys_chmod_args *p = params;
128 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
129 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */
130 1.1 christos *n_args = 2;
131 1.1 christos break;
132 1.1 christos }
133 1.1 christos /* sys_chown */
134 1.1 christos case 16: {
135 1.23 christos const struct sys_chown_args *p = params;
136 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
137 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */
138 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */
139 1.1 christos *n_args = 3;
140 1.1 christos break;
141 1.1 christos }
142 1.1 christos /* sys_obreak */
143 1.1 christos case 17: {
144 1.23 christos const struct sys_obreak_args *p = params;
145 1.1 christos uarg[0] = (intptr_t) SCARG(p, nsize); /* char * */
146 1.1 christos *n_args = 1;
147 1.1 christos break;
148 1.1 christos }
149 1.1 christos /* sys_getfsstat */
150 1.1 christos case 18: {
151 1.23 christos const struct compat_20_sys_getfsstat_args *p = params;
152 1.1 christos uarg[0] = (intptr_t) SCARG(p, buf); /* struct statfs12 * */
153 1.1 christos iarg[1] = SCARG(p, bufsize); /* long */
154 1.1 christos iarg[2] = SCARG(p, flags); /* int */
155 1.1 christos *n_args = 3;
156 1.1 christos break;
157 1.1 christos }
158 1.1 christos /* sys_lseek */
159 1.1 christos case 19: {
160 1.23 christos const struct compat_43_sys_lseek_args *p = params;
161 1.1 christos iarg[0] = SCARG(p, fd); /* int */
162 1.1 christos iarg[1] = SCARG(p, offset); /* long */
163 1.1 christos iarg[2] = SCARG(p, whence); /* int */
164 1.1 christos *n_args = 3;
165 1.1 christos break;
166 1.1 christos }
167 1.1 christos /* sys_getpid_with_ppid */
168 1.1 christos case 20: {
169 1.1 christos *n_args = 0;
170 1.1 christos break;
171 1.1 christos }
172 1.1 christos /* sys_mount */
173 1.1 christos case 21: {
174 1.23 christos const struct compat_40_sys_mount_args *p = params;
175 1.1 christos uarg[0] = (intptr_t) SCARG(p, type); /* const char * */
176 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
177 1.1 christos iarg[2] = SCARG(p, flags); /* int */
178 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* void * */
179 1.1 christos *n_args = 4;
180 1.1 christos break;
181 1.1 christos }
182 1.1 christos /* sys_unmount */
183 1.1 christos case 22: {
184 1.23 christos const struct sys_unmount_args *p = params;
185 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
186 1.1 christos iarg[1] = SCARG(p, flags); /* int */
187 1.1 christos *n_args = 2;
188 1.1 christos break;
189 1.1 christos }
190 1.1 christos /* sys_setuid */
191 1.1 christos case 23: {
192 1.23 christos const struct sys_setuid_args *p = params;
193 1.1 christos uarg[0] = SCARG(p, uid); /* uid_t */
194 1.1 christos *n_args = 1;
195 1.1 christos break;
196 1.1 christos }
197 1.1 christos /* sys_getuid_with_euid */
198 1.1 christos case 24: {
199 1.1 christos *n_args = 0;
200 1.1 christos break;
201 1.1 christos }
202 1.1 christos /* sys_geteuid */
203 1.1 christos case 25: {
204 1.1 christos *n_args = 0;
205 1.1 christos break;
206 1.1 christos }
207 1.1 christos /* sys_ptrace */
208 1.1 christos case 26: {
209 1.23 christos const struct sys_ptrace_args *p = params;
210 1.1 christos iarg[0] = SCARG(p, req); /* int */
211 1.1 christos iarg[1] = SCARG(p, pid); /* pid_t */
212 1.1 christos uarg[2] = (intptr_t) SCARG(p, addr); /* void * */
213 1.1 christos iarg[3] = SCARG(p, data); /* int */
214 1.1 christos *n_args = 4;
215 1.1 christos break;
216 1.1 christos }
217 1.1 christos /* sys_recvmsg */
218 1.1 christos case 27: {
219 1.23 christos const struct sys_recvmsg_args *p = params;
220 1.1 christos iarg[0] = SCARG(p, s); /* int */
221 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg); /* struct msghdr * */
222 1.1 christos iarg[2] = SCARG(p, flags); /* int */
223 1.1 christos *n_args = 3;
224 1.1 christos break;
225 1.1 christos }
226 1.1 christos /* sys_sendmsg */
227 1.1 christos case 28: {
228 1.23 christos const struct sys_sendmsg_args *p = params;
229 1.1 christos iarg[0] = SCARG(p, s); /* int */
230 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg); /* const struct msghdr * */
231 1.1 christos iarg[2] = SCARG(p, flags); /* int */
232 1.1 christos *n_args = 3;
233 1.1 christos break;
234 1.1 christos }
235 1.1 christos /* sys_recvfrom */
236 1.1 christos case 29: {
237 1.23 christos const struct sys_recvfrom_args *p = params;
238 1.1 christos iarg[0] = SCARG(p, s); /* int */
239 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
240 1.1 christos uarg[2] = SCARG(p, len); /* size_t */
241 1.1 christos iarg[3] = SCARG(p, flags); /* int */
242 1.1 christos uarg[4] = (intptr_t) SCARG(p, from); /* struct sockaddr * */
243 1.1 christos uarg[5] = (intptr_t) SCARG(p, fromlenaddr); /* socklen_t * */
244 1.1 christos *n_args = 6;
245 1.1 christos break;
246 1.1 christos }
247 1.1 christos /* sys_accept */
248 1.1 christos case 30: {
249 1.23 christos const struct sys_accept_args *p = params;
250 1.1 christos iarg[0] = SCARG(p, s); /* int */
251 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* struct sockaddr * */
252 1.1 christos uarg[2] = (intptr_t) SCARG(p, anamelen); /* socklen_t * */
253 1.1 christos *n_args = 3;
254 1.1 christos break;
255 1.1 christos }
256 1.1 christos /* sys_getpeername */
257 1.1 christos case 31: {
258 1.23 christos const struct sys_getpeername_args *p = params;
259 1.1 christos iarg[0] = SCARG(p, fdes); /* int */
260 1.1 christos uarg[1] = (intptr_t) SCARG(p, asa); /* struct sockaddr * */
261 1.1 christos uarg[2] = (intptr_t) SCARG(p, alen); /* socklen_t * */
262 1.1 christos *n_args = 3;
263 1.1 christos break;
264 1.1 christos }
265 1.1 christos /* sys_getsockname */
266 1.1 christos case 32: {
267 1.23 christos const struct sys_getsockname_args *p = params;
268 1.1 christos iarg[0] = SCARG(p, fdes); /* int */
269 1.1 christos uarg[1] = (intptr_t) SCARG(p, asa); /* struct sockaddr * */
270 1.1 christos uarg[2] = (intptr_t) SCARG(p, alen); /* socklen_t * */
271 1.1 christos *n_args = 3;
272 1.1 christos break;
273 1.1 christos }
274 1.1 christos /* sys_access */
275 1.1 christos case 33: {
276 1.23 christos const struct sys_access_args *p = params;
277 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
278 1.1 christos iarg[1] = SCARG(p, flags); /* int */
279 1.1 christos *n_args = 2;
280 1.1 christos break;
281 1.1 christos }
282 1.1 christos /* sys_chflags */
283 1.1 christos case 34: {
284 1.23 christos const struct sys_chflags_args *p = params;
285 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
286 1.1 christos uarg[1] = SCARG(p, flags); /* u_long */
287 1.1 christos *n_args = 2;
288 1.1 christos break;
289 1.1 christos }
290 1.1 christos /* sys_fchflags */
291 1.1 christos case 35: {
292 1.23 christos const struct sys_fchflags_args *p = params;
293 1.1 christos iarg[0] = SCARG(p, fd); /* int */
294 1.1 christos uarg[1] = SCARG(p, flags); /* u_long */
295 1.1 christos *n_args = 2;
296 1.1 christos break;
297 1.1 christos }
298 1.1 christos /* sys_sync */
299 1.1 christos case 36: {
300 1.1 christos *n_args = 0;
301 1.1 christos break;
302 1.1 christos }
303 1.1 christos /* sys_kill */
304 1.1 christos case 37: {
305 1.23 christos const struct sys_kill_args *p = params;
306 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
307 1.1 christos iarg[1] = SCARG(p, signum); /* int */
308 1.1 christos *n_args = 2;
309 1.1 christos break;
310 1.1 christos }
311 1.1 christos /* sys_stat */
312 1.1 christos case 38: {
313 1.23 christos const struct compat_43_sys_stat_args *p = params;
314 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
315 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat43 * */
316 1.1 christos *n_args = 2;
317 1.1 christos break;
318 1.1 christos }
319 1.1 christos /* sys_getppid */
320 1.1 christos case 39: {
321 1.1 christos *n_args = 0;
322 1.1 christos break;
323 1.1 christos }
324 1.1 christos /* sys_lstat */
325 1.1 christos case 40: {
326 1.23 christos const struct compat_43_sys_lstat_args *p = params;
327 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
328 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat43 * */
329 1.1 christos *n_args = 2;
330 1.1 christos break;
331 1.1 christos }
332 1.1 christos /* sys_dup */
333 1.1 christos case 41: {
334 1.23 christos const struct sys_dup_args *p = params;
335 1.1 christos iarg[0] = SCARG(p, fd); /* int */
336 1.1 christos *n_args = 1;
337 1.1 christos break;
338 1.1 christos }
339 1.1 christos /* sys_pipe */
340 1.1 christos case 42: {
341 1.1 christos *n_args = 0;
342 1.1 christos break;
343 1.1 christos }
344 1.1 christos /* sys_getegid */
345 1.1 christos case 43: {
346 1.1 christos *n_args = 0;
347 1.1 christos break;
348 1.1 christos }
349 1.1 christos /* sys_profil */
350 1.1 christos case 44: {
351 1.23 christos const struct sys_profil_args *p = params;
352 1.1 christos uarg[0] = (intptr_t) SCARG(p, samples); /* char * */
353 1.1 christos uarg[1] = SCARG(p, size); /* size_t */
354 1.1 christos uarg[2] = SCARG(p, offset); /* u_long */
355 1.1 christos uarg[3] = SCARG(p, scale); /* u_int */
356 1.1 christos *n_args = 4;
357 1.1 christos break;
358 1.1 christos }
359 1.1 christos /* sys_ktrace */
360 1.1 christos case 45: {
361 1.23 christos const struct sys_ktrace_args *p = params;
362 1.1 christos uarg[0] = (intptr_t) SCARG(p, fname); /* const char * */
363 1.1 christos iarg[1] = SCARG(p, ops); /* int */
364 1.1 christos iarg[2] = SCARG(p, facs); /* int */
365 1.1 christos iarg[3] = SCARG(p, pid); /* pid_t */
366 1.1 christos *n_args = 4;
367 1.1 christos break;
368 1.1 christos }
369 1.1 christos /* sys_sigaction */
370 1.1 christos case 46: {
371 1.23 christos const struct compat_13_sys_sigaction_args *p = params;
372 1.1 christos iarg[0] = SCARG(p, signum); /* int */
373 1.1 christos uarg[1] = (intptr_t) SCARG(p, nsa); /* const struct sigaction13 * */
374 1.1 christos uarg[2] = (intptr_t) SCARG(p, osa); /* struct sigaction13 * */
375 1.1 christos *n_args = 3;
376 1.1 christos break;
377 1.1 christos }
378 1.1 christos /* sys_getgid_with_egid */
379 1.1 christos case 47: {
380 1.1 christos *n_args = 0;
381 1.1 christos break;
382 1.1 christos }
383 1.1 christos /* sys_sigprocmask */
384 1.1 christos case 48: {
385 1.23 christos const struct compat_13_sys_sigprocmask_args *p = params;
386 1.1 christos iarg[0] = SCARG(p, how); /* int */
387 1.1 christos iarg[1] = SCARG(p, mask); /* int */
388 1.1 christos *n_args = 2;
389 1.1 christos break;
390 1.1 christos }
391 1.1 christos /* sys___getlogin */
392 1.1 christos case 49: {
393 1.23 christos const struct sys___getlogin_args *p = params;
394 1.1 christos uarg[0] = (intptr_t) SCARG(p, namebuf); /* char * */
395 1.1 christos uarg[1] = SCARG(p, namelen); /* size_t */
396 1.1 christos *n_args = 2;
397 1.1 christos break;
398 1.1 christos }
399 1.1 christos /* sys___setlogin */
400 1.1 christos case 50: {
401 1.23 christos const struct sys___setlogin_args *p = params;
402 1.1 christos uarg[0] = (intptr_t) SCARG(p, namebuf); /* const char * */
403 1.1 christos *n_args = 1;
404 1.1 christos break;
405 1.1 christos }
406 1.1 christos /* sys_acct */
407 1.1 christos case 51: {
408 1.23 christos const struct sys_acct_args *p = params;
409 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
410 1.1 christos *n_args = 1;
411 1.1 christos break;
412 1.1 christos }
413 1.1 christos /* sys_sigpending */
414 1.1 christos case 52: {
415 1.1 christos *n_args = 0;
416 1.1 christos break;
417 1.1 christos }
418 1.1 christos /* sys_sigaltstack */
419 1.1 christos case 53: {
420 1.23 christos const struct compat_13_sys_sigaltstack_args *p = params;
421 1.1 christos uarg[0] = (intptr_t) SCARG(p, nss); /* const struct sigaltstack13 * */
422 1.1 christos uarg[1] = (intptr_t) SCARG(p, oss); /* struct sigaltstack13 * */
423 1.1 christos *n_args = 2;
424 1.1 christos break;
425 1.1 christos }
426 1.1 christos /* sys_ioctl */
427 1.1 christos case 54: {
428 1.23 christos const struct sys_ioctl_args *p = params;
429 1.1 christos iarg[0] = SCARG(p, fd); /* int */
430 1.1 christos uarg[1] = SCARG(p, com); /* u_long */
431 1.1 christos uarg[2] = (intptr_t) SCARG(p, data); /* void * */
432 1.1 christos *n_args = 3;
433 1.1 christos break;
434 1.1 christos }
435 1.1 christos /* sys_reboot */
436 1.1 christos case 55: {
437 1.23 christos const struct compat_12_sys_reboot_args *p = params;
438 1.1 christos iarg[0] = SCARG(p, opt); /* int */
439 1.1 christos *n_args = 1;
440 1.1 christos break;
441 1.1 christos }
442 1.1 christos /* sys_revoke */
443 1.1 christos case 56: {
444 1.23 christos const struct sys_revoke_args *p = params;
445 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
446 1.1 christos *n_args = 1;
447 1.1 christos break;
448 1.1 christos }
449 1.1 christos /* sys_symlink */
450 1.1 christos case 57: {
451 1.23 christos const struct sys_symlink_args *p = params;
452 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
453 1.1 christos uarg[1] = (intptr_t) SCARG(p, link); /* const char * */
454 1.1 christos *n_args = 2;
455 1.1 christos break;
456 1.1 christos }
457 1.1 christos /* sys_readlink */
458 1.1 christos case 58: {
459 1.23 christos const struct sys_readlink_args *p = params;
460 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
461 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
462 1.1 christos uarg[2] = SCARG(p, count); /* size_t */
463 1.1 christos *n_args = 3;
464 1.1 christos break;
465 1.1 christos }
466 1.1 christos /* sys_execve */
467 1.1 christos case 59: {
468 1.23 christos const struct sys_execve_args *p = params;
469 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
470 1.1 christos uarg[1] = (intptr_t) SCARG(p, argp); /* char *const * */
471 1.1 christos uarg[2] = (intptr_t) SCARG(p, envp); /* char *const * */
472 1.1 christos *n_args = 3;
473 1.1 christos break;
474 1.1 christos }
475 1.1 christos /* sys_umask */
476 1.1 christos case 60: {
477 1.23 christos const struct sys_umask_args *p = params;
478 1.1 christos iarg[0] = SCARG(p, newmask); /* mode_t */
479 1.1 christos *n_args = 1;
480 1.1 christos break;
481 1.1 christos }
482 1.1 christos /* sys_chroot */
483 1.1 christos case 61: {
484 1.23 christos const struct sys_chroot_args *p = params;
485 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
486 1.1 christos *n_args = 1;
487 1.1 christos break;
488 1.1 christos }
489 1.1 christos /* sys_fstat */
490 1.1 christos case 62: {
491 1.23 christos const struct compat_43_sys_fstat_args *p = params;
492 1.1 christos iarg[0] = SCARG(p, fd); /* int */
493 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat43 * */
494 1.1 christos *n_args = 2;
495 1.1 christos break;
496 1.1 christos }
497 1.1 christos /* sys_getkerninfo */
498 1.1 christos case 63: {
499 1.23 christos const struct compat_43_sys_getkerninfo_args *p = params;
500 1.1 christos iarg[0] = SCARG(p, op); /* int */
501 1.1 christos uarg[1] = (intptr_t) SCARG(p, where); /* char * */
502 1.1 christos uarg[2] = (intptr_t) SCARG(p, size); /* int * */
503 1.1 christos iarg[3] = SCARG(p, arg); /* int */
504 1.1 christos *n_args = 4;
505 1.1 christos break;
506 1.1 christos }
507 1.1 christos /* sys_getpagesize */
508 1.1 christos case 64: {
509 1.1 christos *n_args = 0;
510 1.1 christos break;
511 1.1 christos }
512 1.1 christos /* sys_msync */
513 1.1 christos case 65: {
514 1.23 christos const struct compat_12_sys_msync_args *p = params;
515 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
516 1.1 christos uarg[1] = SCARG(p, len); /* size_t */
517 1.1 christos *n_args = 2;
518 1.1 christos break;
519 1.1 christos }
520 1.1 christos /* sys_vfork */
521 1.1 christos case 66: {
522 1.1 christos *n_args = 0;
523 1.1 christos break;
524 1.1 christos }
525 1.1 christos /* sys_mmap */
526 1.1 christos case 71: {
527 1.23 christos const struct compat_43_sys_mmap_args *p = params;
528 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
529 1.1 christos uarg[1] = SCARG(p, len); /* size_t */
530 1.1 christos iarg[2] = SCARG(p, prot); /* int */
531 1.1 christos iarg[3] = SCARG(p, flags); /* int */
532 1.1 christos iarg[4] = SCARG(p, fd); /* int */
533 1.1 christos iarg[5] = SCARG(p, pos); /* long */
534 1.1 christos *n_args = 6;
535 1.1 christos break;
536 1.1 christos }
537 1.29 kamil /* sys_ovadvise */
538 1.29 kamil case 72: {
539 1.29 kamil const struct sys_ovadvise_args *p = params;
540 1.29 kamil iarg[0] = SCARG(p, anom); /* int */
541 1.29 kamil *n_args = 1;
542 1.29 kamil break;
543 1.29 kamil }
544 1.1 christos /* sys_munmap */
545 1.1 christos case 73: {
546 1.23 christos const struct sys_munmap_args *p = params;
547 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
548 1.1 christos uarg[1] = SCARG(p, len); /* size_t */
549 1.1 christos *n_args = 2;
550 1.1 christos break;
551 1.1 christos }
552 1.1 christos /* sys_mprotect */
553 1.1 christos case 74: {
554 1.23 christos const struct sys_mprotect_args *p = params;
555 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
556 1.1 christos uarg[1] = SCARG(p, len); /* size_t */
557 1.1 christos iarg[2] = SCARG(p, prot); /* int */
558 1.1 christos *n_args = 3;
559 1.1 christos break;
560 1.1 christos }
561 1.1 christos /* sys_madvise */
562 1.1 christos case 75: {
563 1.23 christos const struct sys_madvise_args *p = params;
564 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
565 1.1 christos uarg[1] = SCARG(p, len); /* size_t */
566 1.1 christos iarg[2] = SCARG(p, behav); /* int */
567 1.1 christos *n_args = 3;
568 1.1 christos break;
569 1.1 christos }
570 1.1 christos /* sys_mincore */
571 1.1 christos case 78: {
572 1.23 christos const struct sys_mincore_args *p = params;
573 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
574 1.1 christos uarg[1] = SCARG(p, len); /* size_t */
575 1.1 christos uarg[2] = (intptr_t) SCARG(p, vec); /* char * */
576 1.1 christos *n_args = 3;
577 1.1 christos break;
578 1.1 christos }
579 1.1 christos /* sys_getgroups */
580 1.1 christos case 79: {
581 1.23 christos const struct sys_getgroups_args *p = params;
582 1.1 christos iarg[0] = SCARG(p, gidsetsize); /* int */
583 1.1 christos uarg[1] = (intptr_t) SCARG(p, gidset); /* gid_t * */
584 1.1 christos *n_args = 2;
585 1.1 christos break;
586 1.1 christos }
587 1.1 christos /* sys_setgroups */
588 1.1 christos case 80: {
589 1.23 christos const struct sys_setgroups_args *p = params;
590 1.1 christos iarg[0] = SCARG(p, gidsetsize); /* int */
591 1.1 christos uarg[1] = (intptr_t) SCARG(p, gidset); /* const gid_t * */
592 1.1 christos *n_args = 2;
593 1.1 christos break;
594 1.1 christos }
595 1.1 christos /* sys_getpgrp */
596 1.1 christos case 81: {
597 1.1 christos *n_args = 0;
598 1.1 christos break;
599 1.1 christos }
600 1.1 christos /* sys_setpgid */
601 1.1 christos case 82: {
602 1.23 christos const struct sys_setpgid_args *p = params;
603 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
604 1.1 christos iarg[1] = SCARG(p, pgid); /* pid_t */
605 1.1 christos *n_args = 2;
606 1.1 christos break;
607 1.1 christos }
608 1.1 christos /* sys_setitimer */
609 1.1 christos case 83: {
610 1.23 christos const struct compat_50_sys_setitimer_args *p = params;
611 1.1 christos iarg[0] = SCARG(p, which); /* int */
612 1.1 christos uarg[1] = (intptr_t) SCARG(p, itv); /* const struct itimerval50 * */
613 1.1 christos uarg[2] = (intptr_t) SCARG(p, oitv); /* struct itimerval50 * */
614 1.1 christos *n_args = 3;
615 1.1 christos break;
616 1.1 christos }
617 1.1 christos /* sys_wait */
618 1.1 christos case 84: {
619 1.1 christos *n_args = 0;
620 1.1 christos break;
621 1.1 christos }
622 1.1 christos /* sys_swapon */
623 1.1 christos case 85: {
624 1.23 christos const struct compat_12_sys_swapon_args *p = params;
625 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
626 1.1 christos *n_args = 1;
627 1.1 christos break;
628 1.1 christos }
629 1.1 christos /* sys_getitimer */
630 1.1 christos case 86: {
631 1.23 christos const struct compat_50_sys_getitimer_args *p = params;
632 1.1 christos iarg[0] = SCARG(p, which); /* int */
633 1.1 christos uarg[1] = (intptr_t) SCARG(p, itv); /* struct itimerval50 * */
634 1.1 christos *n_args = 2;
635 1.1 christos break;
636 1.1 christos }
637 1.1 christos /* sys_gethostname */
638 1.1 christos case 87: {
639 1.23 christos const struct compat_43_sys_gethostname_args *p = params;
640 1.1 christos uarg[0] = (intptr_t) SCARG(p, hostname); /* char * */
641 1.1 christos uarg[1] = SCARG(p, len); /* u_int */
642 1.1 christos *n_args = 2;
643 1.1 christos break;
644 1.1 christos }
645 1.1 christos /* sys_sethostname */
646 1.1 christos case 88: {
647 1.23 christos const struct compat_43_sys_sethostname_args *p = params;
648 1.1 christos uarg[0] = (intptr_t) SCARG(p, hostname); /* char * */
649 1.1 christos uarg[1] = SCARG(p, len); /* u_int */
650 1.1 christos *n_args = 2;
651 1.1 christos break;
652 1.1 christos }
653 1.1 christos /* sys_getdtablesize */
654 1.1 christos case 89: {
655 1.1 christos *n_args = 0;
656 1.1 christos break;
657 1.1 christos }
658 1.1 christos /* sys_dup2 */
659 1.1 christos case 90: {
660 1.23 christos const struct sys_dup2_args *p = params;
661 1.1 christos iarg[0] = SCARG(p, from); /* int */
662 1.1 christos iarg[1] = SCARG(p, to); /* int */
663 1.1 christos *n_args = 2;
664 1.1 christos break;
665 1.1 christos }
666 1.1 christos /* sys_fcntl */
667 1.1 christos case 92: {
668 1.23 christos const struct sys_fcntl_args *p = params;
669 1.1 christos iarg[0] = SCARG(p, fd); /* int */
670 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
671 1.1 christos uarg[2] = (intptr_t) SCARG(p, arg); /* void * */
672 1.1 christos *n_args = 3;
673 1.1 christos break;
674 1.1 christos }
675 1.1 christos /* sys_select */
676 1.1 christos case 93: {
677 1.23 christos const struct compat_50_sys_select_args *p = params;
678 1.1 christos iarg[0] = SCARG(p, nd); /* int */
679 1.1 christos uarg[1] = (intptr_t) SCARG(p, in); /* fd_set * */
680 1.1 christos uarg[2] = (intptr_t) SCARG(p, ou); /* fd_set * */
681 1.1 christos uarg[3] = (intptr_t) SCARG(p, ex); /* fd_set * */
682 1.1 christos uarg[4] = (intptr_t) SCARG(p, tv); /* struct timeval50 * */
683 1.1 christos *n_args = 5;
684 1.1 christos break;
685 1.1 christos }
686 1.1 christos /* sys_fsync */
687 1.1 christos case 95: {
688 1.23 christos const struct sys_fsync_args *p = params;
689 1.1 christos iarg[0] = SCARG(p, fd); /* int */
690 1.1 christos *n_args = 1;
691 1.1 christos break;
692 1.1 christos }
693 1.1 christos /* sys_setpriority */
694 1.1 christos case 96: {
695 1.23 christos const struct sys_setpriority_args *p = params;
696 1.1 christos iarg[0] = SCARG(p, which); /* int */
697 1.1 christos iarg[1] = SCARG(p, who); /* id_t */
698 1.1 christos iarg[2] = SCARG(p, prio); /* int */
699 1.1 christos *n_args = 3;
700 1.1 christos break;
701 1.1 christos }
702 1.1 christos /* sys_socket */
703 1.1 christos case 97: {
704 1.23 christos const struct compat_30_sys_socket_args *p = params;
705 1.1 christos iarg[0] = SCARG(p, domain); /* int */
706 1.1 christos iarg[1] = SCARG(p, type); /* int */
707 1.1 christos iarg[2] = SCARG(p, protocol); /* int */
708 1.1 christos *n_args = 3;
709 1.1 christos break;
710 1.1 christos }
711 1.1 christos /* sys_connect */
712 1.1 christos case 98: {
713 1.23 christos const struct sys_connect_args *p = params;
714 1.1 christos iarg[0] = SCARG(p, s); /* int */
715 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const struct sockaddr * */
716 1.1 christos iarg[2] = SCARG(p, namelen); /* socklen_t */
717 1.1 christos *n_args = 3;
718 1.1 christos break;
719 1.1 christos }
720 1.1 christos /* sys_accept */
721 1.1 christos case 99: {
722 1.23 christos const struct compat_43_sys_accept_args *p = params;
723 1.1 christos iarg[0] = SCARG(p, s); /* int */
724 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* void * */
725 1.1 christos uarg[2] = (intptr_t) SCARG(p, anamelen); /* socklen_t * */
726 1.1 christos *n_args = 3;
727 1.1 christos break;
728 1.1 christos }
729 1.1 christos /* sys_getpriority */
730 1.1 christos case 100: {
731 1.23 christos const struct sys_getpriority_args *p = params;
732 1.1 christos iarg[0] = SCARG(p, which); /* int */
733 1.1 christos iarg[1] = SCARG(p, who); /* id_t */
734 1.1 christos *n_args = 2;
735 1.1 christos break;
736 1.1 christos }
737 1.1 christos /* sys_send */
738 1.1 christos case 101: {
739 1.23 christos const struct compat_43_sys_send_args *p = params;
740 1.1 christos iarg[0] = SCARG(p, s); /* int */
741 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
742 1.1 christos iarg[2] = SCARG(p, len); /* int */
743 1.1 christos iarg[3] = SCARG(p, flags); /* int */
744 1.1 christos *n_args = 4;
745 1.1 christos break;
746 1.1 christos }
747 1.1 christos /* sys_recv */
748 1.1 christos case 102: {
749 1.23 christos const struct compat_43_sys_recv_args *p = params;
750 1.1 christos iarg[0] = SCARG(p, s); /* int */
751 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
752 1.1 christos iarg[2] = SCARG(p, len); /* int */
753 1.1 christos iarg[3] = SCARG(p, flags); /* int */
754 1.1 christos *n_args = 4;
755 1.1 christos break;
756 1.1 christos }
757 1.1 christos /* sys_sigreturn */
758 1.1 christos case 103: {
759 1.23 christos const struct compat_13_sys_sigreturn_args *p = params;
760 1.1 christos uarg[0] = (intptr_t) SCARG(p, sigcntxp); /* struct sigcontext13 * */
761 1.1 christos *n_args = 1;
762 1.1 christos break;
763 1.1 christos }
764 1.1 christos /* sys_bind */
765 1.1 christos case 104: {
766 1.23 christos const struct sys_bind_args *p = params;
767 1.1 christos iarg[0] = SCARG(p, s); /* int */
768 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const struct sockaddr * */
769 1.1 christos iarg[2] = SCARG(p, namelen); /* socklen_t */
770 1.1 christos *n_args = 3;
771 1.1 christos break;
772 1.1 christos }
773 1.1 christos /* sys_setsockopt */
774 1.1 christos case 105: {
775 1.23 christos const struct sys_setsockopt_args *p = params;
776 1.1 christos iarg[0] = SCARG(p, s); /* int */
777 1.1 christos iarg[1] = SCARG(p, level); /* int */
778 1.1 christos iarg[2] = SCARG(p, name); /* int */
779 1.1 christos uarg[3] = (intptr_t) SCARG(p, val); /* const void * */
780 1.1 christos iarg[4] = SCARG(p, valsize); /* socklen_t */
781 1.1 christos *n_args = 5;
782 1.1 christos break;
783 1.1 christos }
784 1.1 christos /* sys_listen */
785 1.1 christos case 106: {
786 1.23 christos const struct sys_listen_args *p = params;
787 1.1 christos iarg[0] = SCARG(p, s); /* int */
788 1.1 christos iarg[1] = SCARG(p, backlog); /* int */
789 1.1 christos *n_args = 2;
790 1.1 christos break;
791 1.1 christos }
792 1.1 christos /* sys_sigvec */
793 1.1 christos case 108: {
794 1.23 christos const struct compat_43_sys_sigvec_args *p = params;
795 1.1 christos iarg[0] = SCARG(p, signum); /* int */
796 1.1 christos uarg[1] = (intptr_t) SCARG(p, nsv); /* struct sigvec * */
797 1.1 christos uarg[2] = (intptr_t) SCARG(p, osv); /* struct sigvec * */
798 1.1 christos *n_args = 3;
799 1.1 christos break;
800 1.1 christos }
801 1.1 christos /* sys_sigblock */
802 1.1 christos case 109: {
803 1.23 christos const struct compat_43_sys_sigblock_args *p = params;
804 1.1 christos iarg[0] = SCARG(p, mask); /* int */
805 1.1 christos *n_args = 1;
806 1.1 christos break;
807 1.1 christos }
808 1.1 christos /* sys_sigsetmask */
809 1.1 christos case 110: {
810 1.23 christos const struct compat_43_sys_sigsetmask_args *p = params;
811 1.1 christos iarg[0] = SCARG(p, mask); /* int */
812 1.1 christos *n_args = 1;
813 1.1 christos break;
814 1.1 christos }
815 1.1 christos /* sys_sigsuspend */
816 1.1 christos case 111: {
817 1.23 christos const struct compat_13_sys_sigsuspend_args *p = params;
818 1.1 christos iarg[0] = SCARG(p, mask); /* int */
819 1.1 christos *n_args = 1;
820 1.1 christos break;
821 1.1 christos }
822 1.1 christos /* sys_sigstack */
823 1.1 christos case 112: {
824 1.23 christos const struct compat_43_sys_sigstack_args *p = params;
825 1.1 christos uarg[0] = (intptr_t) SCARG(p, nss); /* struct sigstack * */
826 1.1 christos uarg[1] = (intptr_t) SCARG(p, oss); /* struct sigstack * */
827 1.1 christos *n_args = 2;
828 1.1 christos break;
829 1.1 christos }
830 1.1 christos /* sys_recvmsg */
831 1.1 christos case 113: {
832 1.23 christos const struct compat_43_sys_recvmsg_args *p = params;
833 1.1 christos iarg[0] = SCARG(p, s); /* int */
834 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg); /* struct omsghdr * */
835 1.1 christos iarg[2] = SCARG(p, flags); /* int */
836 1.1 christos *n_args = 3;
837 1.1 christos break;
838 1.1 christos }
839 1.1 christos /* sys_sendmsg */
840 1.1 christos case 114: {
841 1.23 christos const struct compat_43_sys_sendmsg_args *p = params;
842 1.1 christos iarg[0] = SCARG(p, s); /* int */
843 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg); /* void * */
844 1.1 christos iarg[2] = SCARG(p, flags); /* int */
845 1.1 christos *n_args = 3;
846 1.1 christos break;
847 1.1 christos }
848 1.1 christos /* sys_gettimeofday */
849 1.1 christos case 116: {
850 1.23 christos const struct compat_50_sys_gettimeofday_args *p = params;
851 1.1 christos uarg[0] = (intptr_t) SCARG(p, tp); /* struct timeval50 * */
852 1.1 christos uarg[1] = (intptr_t) SCARG(p, tzp); /* void * */
853 1.1 christos *n_args = 2;
854 1.1 christos break;
855 1.1 christos }
856 1.1 christos /* sys_getrusage */
857 1.1 christos case 117: {
858 1.23 christos const struct compat_50_sys_getrusage_args *p = params;
859 1.1 christos iarg[0] = SCARG(p, who); /* int */
860 1.1 christos uarg[1] = (intptr_t) SCARG(p, rusage); /* struct rusage50 * */
861 1.1 christos *n_args = 2;
862 1.1 christos break;
863 1.1 christos }
864 1.1 christos /* sys_getsockopt */
865 1.1 christos case 118: {
866 1.23 christos const struct sys_getsockopt_args *p = params;
867 1.1 christos iarg[0] = SCARG(p, s); /* int */
868 1.1 christos iarg[1] = SCARG(p, level); /* int */
869 1.1 christos iarg[2] = SCARG(p, name); /* int */
870 1.1 christos uarg[3] = (intptr_t) SCARG(p, val); /* void * */
871 1.1 christos uarg[4] = (intptr_t) SCARG(p, avalsize); /* socklen_t * */
872 1.1 christos *n_args = 5;
873 1.1 christos break;
874 1.1 christos }
875 1.1 christos /* sys_readv */
876 1.1 christos case 120: {
877 1.23 christos const struct sys_readv_args *p = params;
878 1.1 christos iarg[0] = SCARG(p, fd); /* int */
879 1.1 christos uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */
880 1.1 christos iarg[2] = SCARG(p, iovcnt); /* int */
881 1.1 christos *n_args = 3;
882 1.1 christos break;
883 1.1 christos }
884 1.1 christos /* sys_writev */
885 1.1 christos case 121: {
886 1.23 christos const struct sys_writev_args *p = params;
887 1.1 christos iarg[0] = SCARG(p, fd); /* int */
888 1.1 christos uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */
889 1.1 christos iarg[2] = SCARG(p, iovcnt); /* int */
890 1.1 christos *n_args = 3;
891 1.1 christos break;
892 1.1 christos }
893 1.1 christos /* sys_settimeofday */
894 1.1 christos case 122: {
895 1.23 christos const struct compat_50_sys_settimeofday_args *p = params;
896 1.1 christos uarg[0] = (intptr_t) SCARG(p, tv); /* const struct timeval50 * */
897 1.1 christos uarg[1] = (intptr_t) SCARG(p, tzp); /* const void * */
898 1.1 christos *n_args = 2;
899 1.1 christos break;
900 1.1 christos }
901 1.1 christos /* sys_fchown */
902 1.1 christos case 123: {
903 1.23 christos const struct sys_fchown_args *p = params;
904 1.1 christos iarg[0] = SCARG(p, fd); /* int */
905 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */
906 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */
907 1.1 christos *n_args = 3;
908 1.1 christos break;
909 1.1 christos }
910 1.1 christos /* sys_fchmod */
911 1.1 christos case 124: {
912 1.23 christos const struct sys_fchmod_args *p = params;
913 1.1 christos iarg[0] = SCARG(p, fd); /* int */
914 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */
915 1.1 christos *n_args = 2;
916 1.1 christos break;
917 1.1 christos }
918 1.1 christos /* sys_recvfrom */
919 1.1 christos case 125: {
920 1.23 christos const struct compat_43_sys_recvfrom_args *p = params;
921 1.1 christos iarg[0] = SCARG(p, s); /* int */
922 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
923 1.1 christos uarg[2] = SCARG(p, len); /* size_t */
924 1.1 christos iarg[3] = SCARG(p, flags); /* int */
925 1.1 christos uarg[4] = (intptr_t) SCARG(p, from); /* void * */
926 1.1 christos uarg[5] = (intptr_t) SCARG(p, fromlenaddr); /* socklen_t * */
927 1.1 christos *n_args = 6;
928 1.1 christos break;
929 1.1 christos }
930 1.1 christos /* sys_setreuid */
931 1.1 christos case 126: {
932 1.23 christos const struct sys_setreuid_args *p = params;
933 1.1 christos uarg[0] = SCARG(p, ruid); /* uid_t */
934 1.1 christos uarg[1] = SCARG(p, euid); /* uid_t */
935 1.1 christos *n_args = 2;
936 1.1 christos break;
937 1.1 christos }
938 1.1 christos /* sys_setregid */
939 1.1 christos case 127: {
940 1.23 christos const struct sys_setregid_args *p = params;
941 1.1 christos iarg[0] = SCARG(p, rgid); /* gid_t */
942 1.1 christos iarg[1] = SCARG(p, egid); /* gid_t */
943 1.1 christos *n_args = 2;
944 1.1 christos break;
945 1.1 christos }
946 1.1 christos /* sys_rename */
947 1.1 christos case 128: {
948 1.23 christos const struct sys_rename_args *p = params;
949 1.1 christos uarg[0] = (intptr_t) SCARG(p, from); /* const char * */
950 1.1 christos uarg[1] = (intptr_t) SCARG(p, to); /* const char * */
951 1.1 christos *n_args = 2;
952 1.1 christos break;
953 1.1 christos }
954 1.1 christos /* sys_truncate */
955 1.1 christos case 129: {
956 1.23 christos const struct compat_43_sys_truncate_args *p = params;
957 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
958 1.1 christos iarg[1] = SCARG(p, length); /* long */
959 1.1 christos *n_args = 2;
960 1.1 christos break;
961 1.1 christos }
962 1.1 christos /* sys_ftruncate */
963 1.1 christos case 130: {
964 1.23 christos const struct compat_43_sys_ftruncate_args *p = params;
965 1.1 christos iarg[0] = SCARG(p, fd); /* int */
966 1.1 christos iarg[1] = SCARG(p, length); /* long */
967 1.1 christos *n_args = 2;
968 1.1 christos break;
969 1.1 christos }
970 1.1 christos /* sys_flock */
971 1.1 christos case 131: {
972 1.23 christos const struct sys_flock_args *p = params;
973 1.1 christos iarg[0] = SCARG(p, fd); /* int */
974 1.1 christos iarg[1] = SCARG(p, how); /* int */
975 1.1 christos *n_args = 2;
976 1.1 christos break;
977 1.1 christos }
978 1.1 christos /* sys_mkfifo */
979 1.1 christos case 132: {
980 1.23 christos const struct sys_mkfifo_args *p = params;
981 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
982 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */
983 1.1 christos *n_args = 2;
984 1.1 christos break;
985 1.1 christos }
986 1.1 christos /* sys_sendto */
987 1.1 christos case 133: {
988 1.23 christos const struct sys_sendto_args *p = params;
989 1.1 christos iarg[0] = SCARG(p, s); /* int */
990 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* const void * */
991 1.1 christos uarg[2] = SCARG(p, len); /* size_t */
992 1.1 christos iarg[3] = SCARG(p, flags); /* int */
993 1.1 christos uarg[4] = (intptr_t) SCARG(p, to); /* const struct sockaddr * */
994 1.1 christos iarg[5] = SCARG(p, tolen); /* socklen_t */
995 1.1 christos *n_args = 6;
996 1.1 christos break;
997 1.1 christos }
998 1.1 christos /* sys_shutdown */
999 1.1 christos case 134: {
1000 1.23 christos const struct sys_shutdown_args *p = params;
1001 1.1 christos iarg[0] = SCARG(p, s); /* int */
1002 1.1 christos iarg[1] = SCARG(p, how); /* int */
1003 1.1 christos *n_args = 2;
1004 1.1 christos break;
1005 1.1 christos }
1006 1.1 christos /* sys_socketpair */
1007 1.1 christos case 135: {
1008 1.23 christos const struct sys_socketpair_args *p = params;
1009 1.1 christos iarg[0] = SCARG(p, domain); /* int */
1010 1.1 christos iarg[1] = SCARG(p, type); /* int */
1011 1.1 christos iarg[2] = SCARG(p, protocol); /* int */
1012 1.1 christos uarg[3] = (intptr_t) SCARG(p, rsv); /* int * */
1013 1.1 christos *n_args = 4;
1014 1.1 christos break;
1015 1.1 christos }
1016 1.1 christos /* sys_mkdir */
1017 1.1 christos case 136: {
1018 1.23 christos const struct sys_mkdir_args *p = params;
1019 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1020 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */
1021 1.1 christos *n_args = 2;
1022 1.1 christos break;
1023 1.1 christos }
1024 1.1 christos /* sys_rmdir */
1025 1.1 christos case 137: {
1026 1.23 christos const struct sys_rmdir_args *p = params;
1027 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1028 1.1 christos *n_args = 1;
1029 1.1 christos break;
1030 1.1 christos }
1031 1.1 christos /* sys_utimes */
1032 1.1 christos case 138: {
1033 1.23 christos const struct compat_50_sys_utimes_args *p = params;
1034 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1035 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval50 * */
1036 1.1 christos *n_args = 2;
1037 1.1 christos break;
1038 1.1 christos }
1039 1.1 christos /* sys_adjtime */
1040 1.1 christos case 140: {
1041 1.23 christos const struct compat_50_sys_adjtime_args *p = params;
1042 1.1 christos uarg[0] = (intptr_t) SCARG(p, delta); /* const struct timeval50 * */
1043 1.1 christos uarg[1] = (intptr_t) SCARG(p, olddelta); /* struct timeval50 * */
1044 1.1 christos *n_args = 2;
1045 1.1 christos break;
1046 1.1 christos }
1047 1.1 christos /* sys_getpeername */
1048 1.1 christos case 141: {
1049 1.23 christos const struct compat_43_sys_getpeername_args *p = params;
1050 1.1 christos iarg[0] = SCARG(p, fdes); /* int */
1051 1.1 christos uarg[1] = (intptr_t) SCARG(p, asa); /* void * */
1052 1.1 christos uarg[2] = (intptr_t) SCARG(p, alen); /* socklen_t * */
1053 1.1 christos *n_args = 3;
1054 1.1 christos break;
1055 1.1 christos }
1056 1.1 christos /* sys_gethostid */
1057 1.1 christos case 142: {
1058 1.1 christos *n_args = 0;
1059 1.1 christos break;
1060 1.1 christos }
1061 1.1 christos /* sys_sethostid */
1062 1.1 christos case 143: {
1063 1.23 christos const struct compat_43_sys_sethostid_args *p = params;
1064 1.1 christos iarg[0] = SCARG(p, hostid); /* int32_t */
1065 1.1 christos *n_args = 1;
1066 1.1 christos break;
1067 1.1 christos }
1068 1.1 christos /* sys_getrlimit */
1069 1.1 christos case 144: {
1070 1.23 christos const struct compat_43_sys_getrlimit_args *p = params;
1071 1.1 christos iarg[0] = SCARG(p, which); /* int */
1072 1.1 christos uarg[1] = (intptr_t) SCARG(p, rlp); /* struct orlimit * */
1073 1.1 christos *n_args = 2;
1074 1.1 christos break;
1075 1.1 christos }
1076 1.1 christos /* sys_setrlimit */
1077 1.1 christos case 145: {
1078 1.23 christos const struct compat_43_sys_setrlimit_args *p = params;
1079 1.1 christos iarg[0] = SCARG(p, which); /* int */
1080 1.1 christos uarg[1] = (intptr_t) SCARG(p, rlp); /* const struct orlimit * */
1081 1.1 christos *n_args = 2;
1082 1.1 christos break;
1083 1.1 christos }
1084 1.1 christos /* sys_killpg */
1085 1.1 christos case 146: {
1086 1.23 christos const struct compat_43_sys_killpg_args *p = params;
1087 1.1 christos iarg[0] = SCARG(p, pgid); /* int */
1088 1.1 christos iarg[1] = SCARG(p, signum); /* int */
1089 1.1 christos *n_args = 2;
1090 1.1 christos break;
1091 1.1 christos }
1092 1.1 christos /* sys_setsid */
1093 1.1 christos case 147: {
1094 1.1 christos *n_args = 0;
1095 1.1 christos break;
1096 1.1 christos }
1097 1.1 christos /* sys_quotactl */
1098 1.1 christos case 148: {
1099 1.23 christos const struct compat_50_sys_quotactl_args *p = params;
1100 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1101 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
1102 1.1 christos iarg[2] = SCARG(p, uid); /* int */
1103 1.1 christos uarg[3] = (intptr_t) SCARG(p, arg); /* void * */
1104 1.1 christos *n_args = 4;
1105 1.1 christos break;
1106 1.1 christos }
1107 1.1 christos /* sys_quota */
1108 1.1 christos case 149: {
1109 1.1 christos *n_args = 0;
1110 1.1 christos break;
1111 1.1 christos }
1112 1.1 christos /* sys_getsockname */
1113 1.1 christos case 150: {
1114 1.23 christos const struct compat_43_sys_getsockname_args *p = params;
1115 1.1 christos iarg[0] = SCARG(p, fdec); /* int */
1116 1.1 christos uarg[1] = (intptr_t) SCARG(p, asa); /* void * */
1117 1.1 christos uarg[2] = (intptr_t) SCARG(p, alen); /* socklen_t * */
1118 1.1 christos *n_args = 3;
1119 1.1 christos break;
1120 1.1 christos }
1121 1.1 christos /* sys_nfssvc */
1122 1.1 christos case 155: {
1123 1.23 christos const struct sys_nfssvc_args *p = params;
1124 1.1 christos iarg[0] = SCARG(p, flag); /* int */
1125 1.1 christos uarg[1] = (intptr_t) SCARG(p, argp); /* void * */
1126 1.1 christos *n_args = 2;
1127 1.1 christos break;
1128 1.1 christos }
1129 1.1 christos /* sys_getdirentries */
1130 1.1 christos case 156: {
1131 1.23 christos const struct compat_43_sys_getdirentries_args *p = params;
1132 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1133 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
1134 1.1 christos uarg[2] = SCARG(p, count); /* u_int */
1135 1.1 christos uarg[3] = (intptr_t) SCARG(p, basep); /* long * */
1136 1.1 christos *n_args = 4;
1137 1.1 christos break;
1138 1.1 christos }
1139 1.1 christos /* sys_statfs */
1140 1.1 christos case 157: {
1141 1.23 christos const struct compat_20_sys_statfs_args *p = params;
1142 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1143 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statfs12 * */
1144 1.1 christos *n_args = 2;
1145 1.1 christos break;
1146 1.1 christos }
1147 1.1 christos /* sys_fstatfs */
1148 1.1 christos case 158: {
1149 1.23 christos const struct compat_20_sys_fstatfs_args *p = params;
1150 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1151 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statfs12 * */
1152 1.1 christos *n_args = 2;
1153 1.1 christos break;
1154 1.1 christos }
1155 1.1 christos /* sys_getfh */
1156 1.1 christos case 161: {
1157 1.23 christos const struct compat_30_sys_getfh_args *p = params;
1158 1.1 christos uarg[0] = (intptr_t) SCARG(p, fname); /* const char * */
1159 1.1 christos uarg[1] = (intptr_t) SCARG(p, fhp); /* struct compat_30_fhandle * */
1160 1.1 christos *n_args = 2;
1161 1.1 christos break;
1162 1.1 christos }
1163 1.1 christos /* sys_getdomainname */
1164 1.1 christos case 162: {
1165 1.23 christos const struct compat_09_sys_getdomainname_args *p = params;
1166 1.1 christos uarg[0] = (intptr_t) SCARG(p, domainname); /* char * */
1167 1.1 christos iarg[1] = SCARG(p, len); /* int */
1168 1.1 christos *n_args = 2;
1169 1.1 christos break;
1170 1.1 christos }
1171 1.1 christos /* sys_setdomainname */
1172 1.1 christos case 163: {
1173 1.23 christos const struct compat_09_sys_setdomainname_args *p = params;
1174 1.1 christos uarg[0] = (intptr_t) SCARG(p, domainname); /* char * */
1175 1.1 christos iarg[1] = SCARG(p, len); /* int */
1176 1.1 christos *n_args = 2;
1177 1.1 christos break;
1178 1.1 christos }
1179 1.1 christos /* sys_uname */
1180 1.1 christos case 164: {
1181 1.23 christos const struct compat_09_sys_uname_args *p = params;
1182 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* struct outsname * */
1183 1.1 christos *n_args = 1;
1184 1.1 christos break;
1185 1.1 christos }
1186 1.1 christos /* sys_sysarch */
1187 1.1 christos case 165: {
1188 1.23 christos const struct sys_sysarch_args *p = params;
1189 1.1 christos iarg[0] = SCARG(p, op); /* int */
1190 1.1 christos uarg[1] = (intptr_t) SCARG(p, parms); /* void * */
1191 1.1 christos *n_args = 2;
1192 1.1 christos break;
1193 1.1 christos }
1194 1.6 pgoyette #if !defined(_LP64)
1195 1.1 christos /* sys_semsys */
1196 1.1 christos case 169: {
1197 1.23 christos const struct compat_10_sys_semsys_args *p = params;
1198 1.1 christos iarg[0] = SCARG(p, which); /* int */
1199 1.1 christos iarg[1] = SCARG(p, a2); /* int */
1200 1.1 christos iarg[2] = SCARG(p, a3); /* int */
1201 1.1 christos iarg[3] = SCARG(p, a4); /* int */
1202 1.1 christos iarg[4] = SCARG(p, a5); /* int */
1203 1.1 christos *n_args = 5;
1204 1.1 christos break;
1205 1.1 christos }
1206 1.1 christos #else
1207 1.1 christos #endif
1208 1.6 pgoyette #if !defined(_LP64)
1209 1.1 christos /* sys_msgsys */
1210 1.1 christos case 170: {
1211 1.23 christos const struct compat_10_sys_msgsys_args *p = params;
1212 1.1 christos iarg[0] = SCARG(p, which); /* int */
1213 1.1 christos iarg[1] = SCARG(p, a2); /* int */
1214 1.1 christos iarg[2] = SCARG(p, a3); /* int */
1215 1.1 christos iarg[3] = SCARG(p, a4); /* int */
1216 1.1 christos iarg[4] = SCARG(p, a5); /* int */
1217 1.1 christos iarg[5] = SCARG(p, a6); /* int */
1218 1.1 christos *n_args = 6;
1219 1.1 christos break;
1220 1.1 christos }
1221 1.1 christos #else
1222 1.1 christos #endif
1223 1.6 pgoyette #if !defined(_LP64)
1224 1.1 christos /* sys_shmsys */
1225 1.1 christos case 171: {
1226 1.23 christos const struct compat_10_sys_shmsys_args *p = params;
1227 1.1 christos iarg[0] = SCARG(p, which); /* int */
1228 1.1 christos iarg[1] = SCARG(p, a2); /* int */
1229 1.1 christos iarg[2] = SCARG(p, a3); /* int */
1230 1.1 christos iarg[3] = SCARG(p, a4); /* int */
1231 1.1 christos *n_args = 4;
1232 1.1 christos break;
1233 1.1 christos }
1234 1.1 christos #else
1235 1.1 christos #endif
1236 1.1 christos /* sys_pread */
1237 1.1 christos case 173: {
1238 1.23 christos const struct sys_pread_args *p = params;
1239 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1240 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
1241 1.1 christos uarg[2] = SCARG(p, nbyte); /* size_t */
1242 1.1 christos iarg[3] = SCARG(p, PAD); /* int */
1243 1.1 christos iarg[4] = SCARG(p, offset); /* off_t */
1244 1.1 christos *n_args = 5;
1245 1.1 christos break;
1246 1.1 christos }
1247 1.1 christos /* sys_pwrite */
1248 1.1 christos case 174: {
1249 1.23 christos const struct sys_pwrite_args *p = params;
1250 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1251 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* const void * */
1252 1.1 christos uarg[2] = SCARG(p, nbyte); /* size_t */
1253 1.1 christos iarg[3] = SCARG(p, PAD); /* int */
1254 1.1 christos iarg[4] = SCARG(p, offset); /* off_t */
1255 1.1 christos *n_args = 5;
1256 1.1 christos break;
1257 1.1 christos }
1258 1.1 christos /* sys_ntp_gettime */
1259 1.1 christos case 175: {
1260 1.23 christos const struct compat_30_sys_ntp_gettime_args *p = params;
1261 1.1 christos uarg[0] = (intptr_t) SCARG(p, ntvp); /* struct ntptimeval30 * */
1262 1.1 christos *n_args = 1;
1263 1.1 christos break;
1264 1.1 christos }
1265 1.1 christos #if defined(NTP) || !defined(_KERNEL_OPT)
1266 1.1 christos /* sys_ntp_adjtime */
1267 1.1 christos case 176: {
1268 1.23 christos const struct sys_ntp_adjtime_args *p = params;
1269 1.1 christos uarg[0] = (intptr_t) SCARG(p, tp); /* struct timex * */
1270 1.1 christos *n_args = 1;
1271 1.1 christos break;
1272 1.1 christos }
1273 1.1 christos #else
1274 1.1 christos #endif
1275 1.1 christos /* sys_setgid */
1276 1.1 christos case 181: {
1277 1.23 christos const struct sys_setgid_args *p = params;
1278 1.1 christos iarg[0] = SCARG(p, gid); /* gid_t */
1279 1.1 christos *n_args = 1;
1280 1.1 christos break;
1281 1.1 christos }
1282 1.1 christos /* sys_setegid */
1283 1.1 christos case 182: {
1284 1.23 christos const struct sys_setegid_args *p = params;
1285 1.1 christos iarg[0] = SCARG(p, egid); /* gid_t */
1286 1.1 christos *n_args = 1;
1287 1.1 christos break;
1288 1.1 christos }
1289 1.1 christos /* sys_seteuid */
1290 1.1 christos case 183: {
1291 1.23 christos const struct sys_seteuid_args *p = params;
1292 1.1 christos uarg[0] = SCARG(p, euid); /* uid_t */
1293 1.1 christos *n_args = 1;
1294 1.1 christos break;
1295 1.1 christos }
1296 1.1 christos /* sys_lfs_bmapv */
1297 1.1 christos case 184: {
1298 1.23 christos const struct sys_lfs_bmapv_args *p = params;
1299 1.1 christos uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */
1300 1.1 christos uarg[1] = (intptr_t) SCARG(p, blkiov); /* struct block_info * */
1301 1.1 christos iarg[2] = SCARG(p, blkcnt); /* int */
1302 1.1 christos *n_args = 3;
1303 1.1 christos break;
1304 1.1 christos }
1305 1.1 christos /* sys_lfs_markv */
1306 1.1 christos case 185: {
1307 1.23 christos const struct sys_lfs_markv_args *p = params;
1308 1.1 christos uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */
1309 1.1 christos uarg[1] = (intptr_t) SCARG(p, blkiov); /* struct block_info * */
1310 1.1 christos iarg[2] = SCARG(p, blkcnt); /* int */
1311 1.1 christos *n_args = 3;
1312 1.1 christos break;
1313 1.1 christos }
1314 1.1 christos /* sys_lfs_segclean */
1315 1.1 christos case 186: {
1316 1.23 christos const struct sys_lfs_segclean_args *p = params;
1317 1.1 christos uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */
1318 1.1 christos uarg[1] = SCARG(p, segment); /* u_long */
1319 1.1 christos *n_args = 2;
1320 1.1 christos break;
1321 1.1 christos }
1322 1.1 christos /* sys_lfs_segwait */
1323 1.1 christos case 187: {
1324 1.23 christos const struct compat_50_sys_lfs_segwait_args *p = params;
1325 1.1 christos uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */
1326 1.1 christos uarg[1] = (intptr_t) SCARG(p, tv); /* struct timeval50 * */
1327 1.1 christos *n_args = 2;
1328 1.1 christos break;
1329 1.1 christos }
1330 1.1 christos /* sys_stat */
1331 1.1 christos case 188: {
1332 1.23 christos const struct compat_12_sys_stat_args *p = params;
1333 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1334 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat12 * */
1335 1.1 christos *n_args = 2;
1336 1.1 christos break;
1337 1.1 christos }
1338 1.1 christos /* sys_fstat */
1339 1.1 christos case 189: {
1340 1.23 christos const struct compat_12_sys_fstat_args *p = params;
1341 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1342 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat12 * */
1343 1.1 christos *n_args = 2;
1344 1.1 christos break;
1345 1.1 christos }
1346 1.1 christos /* sys_lstat */
1347 1.1 christos case 190: {
1348 1.23 christos const struct compat_12_sys_lstat_args *p = params;
1349 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1350 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat12 * */
1351 1.1 christos *n_args = 2;
1352 1.1 christos break;
1353 1.1 christos }
1354 1.1 christos /* sys_pathconf */
1355 1.1 christos case 191: {
1356 1.23 christos const struct sys_pathconf_args *p = params;
1357 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1358 1.1 christos iarg[1] = SCARG(p, name); /* int */
1359 1.1 christos *n_args = 2;
1360 1.1 christos break;
1361 1.1 christos }
1362 1.1 christos /* sys_fpathconf */
1363 1.1 christos case 192: {
1364 1.23 christos const struct sys_fpathconf_args *p = params;
1365 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1366 1.1 christos iarg[1] = SCARG(p, name); /* int */
1367 1.1 christos *n_args = 2;
1368 1.1 christos break;
1369 1.1 christos }
1370 1.1 christos /* sys_getrlimit */
1371 1.1 christos case 194: {
1372 1.23 christos const struct sys_getrlimit_args *p = params;
1373 1.1 christos iarg[0] = SCARG(p, which); /* int */
1374 1.1 christos uarg[1] = (intptr_t) SCARG(p, rlp); /* struct rlimit * */
1375 1.1 christos *n_args = 2;
1376 1.1 christos break;
1377 1.1 christos }
1378 1.1 christos /* sys_setrlimit */
1379 1.1 christos case 195: {
1380 1.23 christos const struct sys_setrlimit_args *p = params;
1381 1.1 christos iarg[0] = SCARG(p, which); /* int */
1382 1.1 christos uarg[1] = (intptr_t) SCARG(p, rlp); /* const struct rlimit * */
1383 1.1 christos *n_args = 2;
1384 1.1 christos break;
1385 1.1 christos }
1386 1.1 christos /* sys_getdirentries */
1387 1.1 christos case 196: {
1388 1.23 christos const struct compat_12_sys_getdirentries_args *p = params;
1389 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1390 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
1391 1.1 christos uarg[2] = SCARG(p, count); /* u_int */
1392 1.1 christos uarg[3] = (intptr_t) SCARG(p, basep); /* long * */
1393 1.1 christos *n_args = 4;
1394 1.1 christos break;
1395 1.1 christos }
1396 1.1 christos /* sys_mmap */
1397 1.1 christos case 197: {
1398 1.23 christos const struct sys_mmap_args *p = params;
1399 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
1400 1.1 christos uarg[1] = SCARG(p, len); /* size_t */
1401 1.1 christos iarg[2] = SCARG(p, prot); /* int */
1402 1.1 christos iarg[3] = SCARG(p, flags); /* int */
1403 1.1 christos iarg[4] = SCARG(p, fd); /* int */
1404 1.1 christos iarg[5] = SCARG(p, PAD); /* long */
1405 1.1 christos iarg[6] = SCARG(p, pos); /* off_t */
1406 1.1 christos *n_args = 7;
1407 1.1 christos break;
1408 1.1 christos }
1409 1.1 christos /* sys___syscall */
1410 1.1 christos case 198: {
1411 1.23 christos const struct sys___syscall_args *p = params;
1412 1.1 christos iarg[0] = SCARG(p, code); /* quad_t */
1413 1.1 christos iarg[1] = SCARG(p, args[SYS_MAXSYSARGS]); /* register_t */
1414 1.1 christos *n_args = 2;
1415 1.1 christos break;
1416 1.1 christos }
1417 1.1 christos /* sys_lseek */
1418 1.1 christos case 199: {
1419 1.23 christos const struct sys_lseek_args *p = params;
1420 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1421 1.1 christos iarg[1] = SCARG(p, PAD); /* int */
1422 1.1 christos iarg[2] = SCARG(p, offset); /* off_t */
1423 1.1 christos iarg[3] = SCARG(p, whence); /* int */
1424 1.1 christos *n_args = 4;
1425 1.1 christos break;
1426 1.1 christos }
1427 1.1 christos /* sys_truncate */
1428 1.1 christos case 200: {
1429 1.23 christos const struct sys_truncate_args *p = params;
1430 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1431 1.1 christos iarg[1] = SCARG(p, PAD); /* int */
1432 1.1 christos iarg[2] = SCARG(p, length); /* off_t */
1433 1.1 christos *n_args = 3;
1434 1.1 christos break;
1435 1.1 christos }
1436 1.1 christos /* sys_ftruncate */
1437 1.1 christos case 201: {
1438 1.23 christos const struct sys_ftruncate_args *p = params;
1439 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1440 1.1 christos iarg[1] = SCARG(p, PAD); /* int */
1441 1.1 christos iarg[2] = SCARG(p, length); /* off_t */
1442 1.1 christos *n_args = 3;
1443 1.1 christos break;
1444 1.1 christos }
1445 1.1 christos /* sys___sysctl */
1446 1.1 christos case 202: {
1447 1.23 christos const struct sys___sysctl_args *p = params;
1448 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* const int * */
1449 1.1 christos uarg[1] = SCARG(p, namelen); /* u_int */
1450 1.1 christos uarg[2] = (intptr_t) SCARG(p, oldv); /* void * */
1451 1.1 christos uarg[3] = (intptr_t) SCARG(p, oldlenp); /* size_t * */
1452 1.1 christos uarg[4] = (intptr_t) SCARG(p, newv); /* const void * */
1453 1.1 christos uarg[5] = SCARG(p, newlen); /* size_t */
1454 1.1 christos *n_args = 6;
1455 1.1 christos break;
1456 1.1 christos }
1457 1.1 christos /* sys_mlock */
1458 1.1 christos case 203: {
1459 1.23 christos const struct sys_mlock_args *p = params;
1460 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* const void * */
1461 1.1 christos uarg[1] = SCARG(p, len); /* size_t */
1462 1.1 christos *n_args = 2;
1463 1.1 christos break;
1464 1.1 christos }
1465 1.1 christos /* sys_munlock */
1466 1.1 christos case 204: {
1467 1.23 christos const struct sys_munlock_args *p = params;
1468 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* const void * */
1469 1.1 christos uarg[1] = SCARG(p, len); /* size_t */
1470 1.1 christos *n_args = 2;
1471 1.1 christos break;
1472 1.1 christos }
1473 1.1 christos /* sys_undelete */
1474 1.1 christos case 205: {
1475 1.23 christos const struct sys_undelete_args *p = params;
1476 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1477 1.1 christos *n_args = 1;
1478 1.1 christos break;
1479 1.1 christos }
1480 1.1 christos /* sys_futimes */
1481 1.1 christos case 206: {
1482 1.23 christos const struct compat_50_sys_futimes_args *p = params;
1483 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1484 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval50 * */
1485 1.1 christos *n_args = 2;
1486 1.1 christos break;
1487 1.1 christos }
1488 1.1 christos /* sys_getpgid */
1489 1.1 christos case 207: {
1490 1.23 christos const struct sys_getpgid_args *p = params;
1491 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
1492 1.1 christos *n_args = 1;
1493 1.1 christos break;
1494 1.1 christos }
1495 1.1 christos /* sys_reboot */
1496 1.1 christos case 208: {
1497 1.23 christos const struct sys_reboot_args *p = params;
1498 1.1 christos iarg[0] = SCARG(p, opt); /* int */
1499 1.1 christos uarg[1] = (intptr_t) SCARG(p, bootstr); /* char * */
1500 1.1 christos *n_args = 2;
1501 1.1 christos break;
1502 1.1 christos }
1503 1.1 christos /* sys_poll */
1504 1.1 christos case 209: {
1505 1.23 christos const struct sys_poll_args *p = params;
1506 1.1 christos uarg[0] = (intptr_t) SCARG(p, fds); /* struct pollfd * */
1507 1.1 christos uarg[1] = SCARG(p, nfds); /* u_int */
1508 1.1 christos iarg[2] = SCARG(p, timeout); /* int */
1509 1.1 christos *n_args = 3;
1510 1.1 christos break;
1511 1.1 christos }
1512 1.1 christos /* sys_afssys */
1513 1.1 christos case 210: {
1514 1.23 christos const struct sys_afssys_args *p = params;
1515 1.1 christos iarg[0] = SCARG(p, id); /* long */
1516 1.1 christos iarg[1] = SCARG(p, a1); /* long */
1517 1.1 christos iarg[2] = SCARG(p, a2); /* long */
1518 1.1 christos iarg[3] = SCARG(p, a3); /* long */
1519 1.1 christos iarg[4] = SCARG(p, a4); /* long */
1520 1.1 christos iarg[5] = SCARG(p, a5); /* long */
1521 1.1 christos iarg[6] = SCARG(p, a6); /* long */
1522 1.1 christos *n_args = 7;
1523 1.1 christos break;
1524 1.1 christos }
1525 1.1 christos /* sys___semctl */
1526 1.1 christos case 220: {
1527 1.23 christos const struct compat_14_sys___semctl_args *p = params;
1528 1.1 christos iarg[0] = SCARG(p, semid); /* int */
1529 1.1 christos iarg[1] = SCARG(p, semnum); /* int */
1530 1.1 christos iarg[2] = SCARG(p, cmd); /* int */
1531 1.1 christos uarg[3] = (intptr_t) SCARG(p, arg); /* union __semun * */
1532 1.1 christos *n_args = 4;
1533 1.1 christos break;
1534 1.1 christos }
1535 1.1 christos /* sys_semget */
1536 1.1 christos case 221: {
1537 1.23 christos const struct sys_semget_args *p = params;
1538 1.1 christos iarg[0] = SCARG(p, key); /* key_t */
1539 1.1 christos iarg[1] = SCARG(p, nsems); /* int */
1540 1.1 christos iarg[2] = SCARG(p, semflg); /* int */
1541 1.1 christos *n_args = 3;
1542 1.1 christos break;
1543 1.1 christos }
1544 1.1 christos /* sys_semop */
1545 1.1 christos case 222: {
1546 1.23 christos const struct sys_semop_args *p = params;
1547 1.1 christos iarg[0] = SCARG(p, semid); /* int */
1548 1.1 christos uarg[1] = (intptr_t) SCARG(p, sops); /* struct sembuf * */
1549 1.1 christos uarg[2] = SCARG(p, nsops); /* size_t */
1550 1.1 christos *n_args = 3;
1551 1.1 christos break;
1552 1.1 christos }
1553 1.1 christos /* sys_semconfig */
1554 1.1 christos case 223: {
1555 1.23 christos const struct sys_semconfig_args *p = params;
1556 1.1 christos iarg[0] = SCARG(p, flag); /* int */
1557 1.1 christos *n_args = 1;
1558 1.1 christos break;
1559 1.1 christos }
1560 1.1 christos /* sys_msgctl */
1561 1.1 christos case 224: {
1562 1.23 christos const struct compat_14_sys_msgctl_args *p = params;
1563 1.1 christos iarg[0] = SCARG(p, msqid); /* int */
1564 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
1565 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct msqid_ds14 * */
1566 1.1 christos *n_args = 3;
1567 1.1 christos break;
1568 1.1 christos }
1569 1.1 christos /* sys_msgget */
1570 1.1 christos case 225: {
1571 1.23 christos const struct sys_msgget_args *p = params;
1572 1.1 christos iarg[0] = SCARG(p, key); /* key_t */
1573 1.1 christos iarg[1] = SCARG(p, msgflg); /* int */
1574 1.1 christos *n_args = 2;
1575 1.1 christos break;
1576 1.1 christos }
1577 1.1 christos /* sys_msgsnd */
1578 1.1 christos case 226: {
1579 1.23 christos const struct sys_msgsnd_args *p = params;
1580 1.1 christos iarg[0] = SCARG(p, msqid); /* int */
1581 1.1 christos uarg[1] = (intptr_t) SCARG(p, msgp); /* const void * */
1582 1.1 christos uarg[2] = SCARG(p, msgsz); /* size_t */
1583 1.1 christos iarg[3] = SCARG(p, msgflg); /* int */
1584 1.1 christos *n_args = 4;
1585 1.1 christos break;
1586 1.1 christos }
1587 1.1 christos /* sys_msgrcv */
1588 1.1 christos case 227: {
1589 1.23 christos const struct sys_msgrcv_args *p = params;
1590 1.1 christos iarg[0] = SCARG(p, msqid); /* int */
1591 1.1 christos uarg[1] = (intptr_t) SCARG(p, msgp); /* void * */
1592 1.1 christos uarg[2] = SCARG(p, msgsz); /* size_t */
1593 1.1 christos iarg[3] = SCARG(p, msgtyp); /* long */
1594 1.1 christos iarg[4] = SCARG(p, msgflg); /* int */
1595 1.1 christos *n_args = 5;
1596 1.1 christos break;
1597 1.1 christos }
1598 1.1 christos /* sys_shmat */
1599 1.1 christos case 228: {
1600 1.23 christos const struct sys_shmat_args *p = params;
1601 1.1 christos iarg[0] = SCARG(p, shmid); /* int */
1602 1.1 christos uarg[1] = (intptr_t) SCARG(p, shmaddr); /* const void * */
1603 1.1 christos iarg[2] = SCARG(p, shmflg); /* int */
1604 1.1 christos *n_args = 3;
1605 1.1 christos break;
1606 1.1 christos }
1607 1.1 christos /* sys_shmctl */
1608 1.1 christos case 229: {
1609 1.23 christos const struct compat_14_sys_shmctl_args *p = params;
1610 1.1 christos iarg[0] = SCARG(p, shmid); /* int */
1611 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
1612 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct shmid_ds14 * */
1613 1.1 christos *n_args = 3;
1614 1.1 christos break;
1615 1.1 christos }
1616 1.1 christos /* sys_shmdt */
1617 1.1 christos case 230: {
1618 1.23 christos const struct sys_shmdt_args *p = params;
1619 1.1 christos uarg[0] = (intptr_t) SCARG(p, shmaddr); /* const void * */
1620 1.1 christos *n_args = 1;
1621 1.1 christos break;
1622 1.1 christos }
1623 1.1 christos /* sys_shmget */
1624 1.1 christos case 231: {
1625 1.23 christos const struct sys_shmget_args *p = params;
1626 1.1 christos iarg[0] = SCARG(p, key); /* key_t */
1627 1.1 christos uarg[1] = SCARG(p, size); /* size_t */
1628 1.1 christos iarg[2] = SCARG(p, shmflg); /* int */
1629 1.1 christos *n_args = 3;
1630 1.1 christos break;
1631 1.1 christos }
1632 1.1 christos /* sys_clock_gettime */
1633 1.1 christos case 232: {
1634 1.23 christos const struct compat_50_sys_clock_gettime_args *p = params;
1635 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */
1636 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp); /* struct timespec50 * */
1637 1.1 christos *n_args = 2;
1638 1.1 christos break;
1639 1.1 christos }
1640 1.1 christos /* sys_clock_settime */
1641 1.1 christos case 233: {
1642 1.23 christos const struct compat_50_sys_clock_settime_args *p = params;
1643 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */
1644 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp); /* const struct timespec50 * */
1645 1.1 christos *n_args = 2;
1646 1.1 christos break;
1647 1.1 christos }
1648 1.1 christos /* sys_clock_getres */
1649 1.1 christos case 234: {
1650 1.23 christos const struct compat_50_sys_clock_getres_args *p = params;
1651 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */
1652 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp); /* struct timespec50 * */
1653 1.1 christos *n_args = 2;
1654 1.1 christos break;
1655 1.1 christos }
1656 1.1 christos /* sys_timer_create */
1657 1.1 christos case 235: {
1658 1.23 christos const struct sys_timer_create_args *p = params;
1659 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */
1660 1.1 christos uarg[1] = (intptr_t) SCARG(p, evp); /* struct sigevent * */
1661 1.1 christos uarg[2] = (intptr_t) SCARG(p, timerid); /* timer_t * */
1662 1.1 christos *n_args = 3;
1663 1.1 christos break;
1664 1.1 christos }
1665 1.1 christos /* sys_timer_delete */
1666 1.1 christos case 236: {
1667 1.23 christos const struct sys_timer_delete_args *p = params;
1668 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */
1669 1.1 christos *n_args = 1;
1670 1.1 christos break;
1671 1.1 christos }
1672 1.1 christos /* sys_timer_settime */
1673 1.1 christos case 237: {
1674 1.23 christos const struct compat_50_sys_timer_settime_args *p = params;
1675 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */
1676 1.1 christos iarg[1] = SCARG(p, flags); /* int */
1677 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* const struct itimerspec50 * */
1678 1.1 christos uarg[3] = (intptr_t) SCARG(p, ovalue); /* struct itimerspec50 * */
1679 1.1 christos *n_args = 4;
1680 1.1 christos break;
1681 1.1 christos }
1682 1.1 christos /* sys_timer_gettime */
1683 1.1 christos case 238: {
1684 1.23 christos const struct compat_50_sys_timer_gettime_args *p = params;
1685 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */
1686 1.1 christos uarg[1] = (intptr_t) SCARG(p, value); /* struct itimerspec50 * */
1687 1.1 christos *n_args = 2;
1688 1.1 christos break;
1689 1.1 christos }
1690 1.1 christos /* sys_timer_getoverrun */
1691 1.1 christos case 239: {
1692 1.23 christos const struct sys_timer_getoverrun_args *p = params;
1693 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */
1694 1.1 christos *n_args = 1;
1695 1.1 christos break;
1696 1.1 christos }
1697 1.1 christos /* sys_nanosleep */
1698 1.1 christos case 240: {
1699 1.23 christos const struct compat_50_sys_nanosleep_args *p = params;
1700 1.1 christos uarg[0] = (intptr_t) SCARG(p, rqtp); /* const struct timespec50 * */
1701 1.1 christos uarg[1] = (intptr_t) SCARG(p, rmtp); /* struct timespec50 * */
1702 1.1 christos *n_args = 2;
1703 1.1 christos break;
1704 1.1 christos }
1705 1.1 christos /* sys_fdatasync */
1706 1.1 christos case 241: {
1707 1.23 christos const struct sys_fdatasync_args *p = params;
1708 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1709 1.1 christos *n_args = 1;
1710 1.1 christos break;
1711 1.1 christos }
1712 1.1 christos /* sys_mlockall */
1713 1.1 christos case 242: {
1714 1.23 christos const struct sys_mlockall_args *p = params;
1715 1.1 christos iarg[0] = SCARG(p, flags); /* int */
1716 1.1 christos *n_args = 1;
1717 1.1 christos break;
1718 1.1 christos }
1719 1.1 christos /* sys_munlockall */
1720 1.1 christos case 243: {
1721 1.1 christos *n_args = 0;
1722 1.1 christos break;
1723 1.1 christos }
1724 1.1 christos /* sys___sigtimedwait */
1725 1.1 christos case 244: {
1726 1.23 christos const struct compat_50_sys___sigtimedwait_args *p = params;
1727 1.1 christos uarg[0] = (intptr_t) SCARG(p, set); /* const sigset_t * */
1728 1.1 christos uarg[1] = (intptr_t) SCARG(p, info); /* siginfo_t * */
1729 1.1 christos uarg[2] = (intptr_t) SCARG(p, timeout); /* struct timespec50 * */
1730 1.1 christos *n_args = 3;
1731 1.1 christos break;
1732 1.1 christos }
1733 1.1 christos /* sys_sigqueueinfo */
1734 1.1 christos case 245: {
1735 1.23 christos const struct sys_sigqueueinfo_args *p = params;
1736 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
1737 1.1 christos uarg[1] = (intptr_t) SCARG(p, info); /* const siginfo_t * */
1738 1.1 christos *n_args = 2;
1739 1.1 christos break;
1740 1.1 christos }
1741 1.1 christos /* sys_modctl */
1742 1.1 christos case 246: {
1743 1.23 christos const struct sys_modctl_args *p = params;
1744 1.1 christos iarg[0] = SCARG(p, cmd); /* int */
1745 1.1 christos uarg[1] = (intptr_t) SCARG(p, arg); /* void * */
1746 1.1 christos *n_args = 2;
1747 1.1 christos break;
1748 1.1 christos }
1749 1.1 christos /* sys__ksem_init */
1750 1.1 christos case 247: {
1751 1.23 christos const struct sys__ksem_init_args *p = params;
1752 1.1 christos uarg[0] = SCARG(p, value); /* unsigned int */
1753 1.1 christos uarg[1] = (intptr_t) SCARG(p, idp); /* intptr_t * */
1754 1.1 christos *n_args = 2;
1755 1.1 christos break;
1756 1.1 christos }
1757 1.1 christos /* sys__ksem_open */
1758 1.1 christos case 248: {
1759 1.23 christos const struct sys__ksem_open_args *p = params;
1760 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
1761 1.1 christos iarg[1] = SCARG(p, oflag); /* int */
1762 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */
1763 1.1 christos uarg[3] = SCARG(p, value); /* unsigned int */
1764 1.1 christos uarg[4] = (intptr_t) SCARG(p, idp); /* intptr_t * */
1765 1.1 christos *n_args = 5;
1766 1.1 christos break;
1767 1.1 christos }
1768 1.1 christos /* sys__ksem_unlink */
1769 1.1 christos case 249: {
1770 1.23 christos const struct sys__ksem_unlink_args *p = params;
1771 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
1772 1.1 christos *n_args = 1;
1773 1.1 christos break;
1774 1.1 christos }
1775 1.1 christos /* sys__ksem_close */
1776 1.1 christos case 250: {
1777 1.23 christos const struct sys__ksem_close_args *p = params;
1778 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */
1779 1.1 christos *n_args = 1;
1780 1.1 christos break;
1781 1.1 christos }
1782 1.1 christos /* sys__ksem_post */
1783 1.1 christos case 251: {
1784 1.23 christos const struct sys__ksem_post_args *p = params;
1785 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */
1786 1.1 christos *n_args = 1;
1787 1.1 christos break;
1788 1.1 christos }
1789 1.1 christos /* sys__ksem_wait */
1790 1.1 christos case 252: {
1791 1.23 christos const struct sys__ksem_wait_args *p = params;
1792 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */
1793 1.1 christos *n_args = 1;
1794 1.1 christos break;
1795 1.1 christos }
1796 1.1 christos /* sys__ksem_trywait */
1797 1.1 christos case 253: {
1798 1.23 christos const struct sys__ksem_trywait_args *p = params;
1799 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */
1800 1.1 christos *n_args = 1;
1801 1.1 christos break;
1802 1.1 christos }
1803 1.1 christos /* sys__ksem_getvalue */
1804 1.1 christos case 254: {
1805 1.23 christos const struct sys__ksem_getvalue_args *p = params;
1806 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */
1807 1.1 christos uarg[1] = (intptr_t) SCARG(p, value); /* unsigned int * */
1808 1.1 christos *n_args = 2;
1809 1.1 christos break;
1810 1.1 christos }
1811 1.1 christos /* sys__ksem_destroy */
1812 1.1 christos case 255: {
1813 1.23 christos const struct sys__ksem_destroy_args *p = params;
1814 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */
1815 1.1 christos *n_args = 1;
1816 1.1 christos break;
1817 1.1 christos }
1818 1.1 christos /* sys__ksem_timedwait */
1819 1.1 christos case 256: {
1820 1.23 christos const struct sys__ksem_timedwait_args *p = params;
1821 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */
1822 1.1 christos uarg[1] = (intptr_t) SCARG(p, abstime); /* const struct timespec * */
1823 1.1 christos *n_args = 2;
1824 1.1 christos break;
1825 1.1 christos }
1826 1.1 christos /* sys_mq_open */
1827 1.1 christos case 257: {
1828 1.23 christos const struct sys_mq_open_args *p = params;
1829 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
1830 1.1 christos iarg[1] = SCARG(p, oflag); /* int */
1831 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */
1832 1.1 christos uarg[3] = (intptr_t) SCARG(p, attr); /* struct mq_attr * */
1833 1.1 christos *n_args = 4;
1834 1.1 christos break;
1835 1.1 christos }
1836 1.1 christos /* sys_mq_close */
1837 1.1 christos case 258: {
1838 1.23 christos const struct sys_mq_close_args *p = params;
1839 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */
1840 1.1 christos *n_args = 1;
1841 1.1 christos break;
1842 1.1 christos }
1843 1.1 christos /* sys_mq_unlink */
1844 1.1 christos case 259: {
1845 1.23 christos const struct sys_mq_unlink_args *p = params;
1846 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
1847 1.1 christos *n_args = 1;
1848 1.1 christos break;
1849 1.1 christos }
1850 1.1 christos /* sys_mq_getattr */
1851 1.1 christos case 260: {
1852 1.23 christos const struct sys_mq_getattr_args *p = params;
1853 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */
1854 1.1 christos uarg[1] = (intptr_t) SCARG(p, mqstat); /* struct mq_attr * */
1855 1.1 christos *n_args = 2;
1856 1.1 christos break;
1857 1.1 christos }
1858 1.1 christos /* sys_mq_setattr */
1859 1.1 christos case 261: {
1860 1.23 christos const struct sys_mq_setattr_args *p = params;
1861 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */
1862 1.1 christos uarg[1] = (intptr_t) SCARG(p, mqstat); /* const struct mq_attr * */
1863 1.1 christos uarg[2] = (intptr_t) SCARG(p, omqstat); /* struct mq_attr * */
1864 1.1 christos *n_args = 3;
1865 1.1 christos break;
1866 1.1 christos }
1867 1.1 christos /* sys_mq_notify */
1868 1.1 christos case 262: {
1869 1.23 christos const struct sys_mq_notify_args *p = params;
1870 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */
1871 1.1 christos uarg[1] = (intptr_t) SCARG(p, notification); /* const struct sigevent * */
1872 1.1 christos *n_args = 2;
1873 1.1 christos break;
1874 1.1 christos }
1875 1.1 christos /* sys_mq_send */
1876 1.1 christos case 263: {
1877 1.23 christos const struct sys_mq_send_args *p = params;
1878 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */
1879 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* const char * */
1880 1.1 christos uarg[2] = SCARG(p, msg_len); /* size_t */
1881 1.1 christos uarg[3] = SCARG(p, msg_prio); /* unsigned */
1882 1.1 christos *n_args = 4;
1883 1.1 christos break;
1884 1.1 christos }
1885 1.1 christos /* sys_mq_receive */
1886 1.1 christos case 264: {
1887 1.23 christos const struct sys_mq_receive_args *p = params;
1888 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */
1889 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* char * */
1890 1.1 christos uarg[2] = SCARG(p, msg_len); /* size_t */
1891 1.1 christos uarg[3] = (intptr_t) SCARG(p, msg_prio); /* unsigned * */
1892 1.1 christos *n_args = 4;
1893 1.1 christos break;
1894 1.1 christos }
1895 1.1 christos /* sys_mq_timedsend */
1896 1.1 christos case 265: {
1897 1.23 christos const struct compat_50_sys_mq_timedsend_args *p = params;
1898 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */
1899 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* const char * */
1900 1.1 christos uarg[2] = SCARG(p, msg_len); /* size_t */
1901 1.1 christos uarg[3] = SCARG(p, msg_prio); /* unsigned */
1902 1.1 christos uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct timespec50 * */
1903 1.1 christos *n_args = 5;
1904 1.1 christos break;
1905 1.1 christos }
1906 1.1 christos /* sys_mq_timedreceive */
1907 1.1 christos case 266: {
1908 1.23 christos const struct compat_50_sys_mq_timedreceive_args *p = params;
1909 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */
1910 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* char * */
1911 1.1 christos uarg[2] = SCARG(p, msg_len); /* size_t */
1912 1.1 christos uarg[3] = (intptr_t) SCARG(p, msg_prio); /* unsigned * */
1913 1.1 christos uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct timespec50 * */
1914 1.1 christos *n_args = 5;
1915 1.1 christos break;
1916 1.1 christos }
1917 1.1 christos /* sys___posix_rename */
1918 1.1 christos case 270: {
1919 1.23 christos const struct sys___posix_rename_args *p = params;
1920 1.1 christos uarg[0] = (intptr_t) SCARG(p, from); /* const char * */
1921 1.1 christos uarg[1] = (intptr_t) SCARG(p, to); /* const char * */
1922 1.1 christos *n_args = 2;
1923 1.1 christos break;
1924 1.1 christos }
1925 1.1 christos /* sys_swapctl */
1926 1.1 christos case 271: {
1927 1.23 christos const struct sys_swapctl_args *p = params;
1928 1.1 christos iarg[0] = SCARG(p, cmd); /* int */
1929 1.1 christos uarg[1] = (intptr_t) SCARG(p, arg); /* void * */
1930 1.1 christos iarg[2] = SCARG(p, misc); /* int */
1931 1.1 christos *n_args = 3;
1932 1.1 christos break;
1933 1.1 christos }
1934 1.1 christos /* sys_getdents */
1935 1.1 christos case 272: {
1936 1.23 christos const struct compat_30_sys_getdents_args *p = params;
1937 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1938 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
1939 1.1 christos uarg[2] = SCARG(p, count); /* size_t */
1940 1.1 christos *n_args = 3;
1941 1.1 christos break;
1942 1.1 christos }
1943 1.1 christos /* sys_minherit */
1944 1.1 christos case 273: {
1945 1.23 christos const struct sys_minherit_args *p = params;
1946 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
1947 1.1 christos uarg[1] = SCARG(p, len); /* size_t */
1948 1.1 christos iarg[2] = SCARG(p, inherit); /* int */
1949 1.1 christos *n_args = 3;
1950 1.1 christos break;
1951 1.1 christos }
1952 1.1 christos /* sys_lchmod */
1953 1.1 christos case 274: {
1954 1.23 christos const struct sys_lchmod_args *p = params;
1955 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1956 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */
1957 1.1 christos *n_args = 2;
1958 1.1 christos break;
1959 1.1 christos }
1960 1.1 christos /* sys_lchown */
1961 1.1 christos case 275: {
1962 1.23 christos const struct sys_lchown_args *p = params;
1963 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1964 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */
1965 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */
1966 1.1 christos *n_args = 3;
1967 1.1 christos break;
1968 1.1 christos }
1969 1.1 christos /* sys_lutimes */
1970 1.1 christos case 276: {
1971 1.23 christos const struct compat_50_sys_lutimes_args *p = params;
1972 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1973 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval50 * */
1974 1.1 christos *n_args = 2;
1975 1.1 christos break;
1976 1.1 christos }
1977 1.1 christos /* sys___msync13 */
1978 1.1 christos case 277: {
1979 1.23 christos const struct sys___msync13_args *p = params;
1980 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
1981 1.1 christos uarg[1] = SCARG(p, len); /* size_t */
1982 1.1 christos iarg[2] = SCARG(p, flags); /* int */
1983 1.1 christos *n_args = 3;
1984 1.1 christos break;
1985 1.1 christos }
1986 1.1 christos /* sys___stat13 */
1987 1.1 christos case 278: {
1988 1.23 christos const struct compat_30_sys___stat13_args *p = params;
1989 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1990 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat13 * */
1991 1.1 christos *n_args = 2;
1992 1.1 christos break;
1993 1.1 christos }
1994 1.1 christos /* sys___fstat13 */
1995 1.1 christos case 279: {
1996 1.23 christos const struct compat_30_sys___fstat13_args *p = params;
1997 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1998 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat13 * */
1999 1.1 christos *n_args = 2;
2000 1.1 christos break;
2001 1.1 christos }
2002 1.1 christos /* sys___lstat13 */
2003 1.1 christos case 280: {
2004 1.23 christos const struct compat_30_sys___lstat13_args *p = params;
2005 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2006 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat13 * */
2007 1.1 christos *n_args = 2;
2008 1.1 christos break;
2009 1.1 christos }
2010 1.1 christos /* sys___sigaltstack14 */
2011 1.1 christos case 281: {
2012 1.23 christos const struct sys___sigaltstack14_args *p = params;
2013 1.1 christos uarg[0] = (intptr_t) SCARG(p, nss); /* const struct sigaltstack * */
2014 1.1 christos uarg[1] = (intptr_t) SCARG(p, oss); /* struct sigaltstack * */
2015 1.1 christos *n_args = 2;
2016 1.1 christos break;
2017 1.1 christos }
2018 1.1 christos /* sys___vfork14 */
2019 1.1 christos case 282: {
2020 1.1 christos *n_args = 0;
2021 1.1 christos break;
2022 1.1 christos }
2023 1.1 christos /* sys___posix_chown */
2024 1.1 christos case 283: {
2025 1.23 christos const struct sys___posix_chown_args *p = params;
2026 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2027 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */
2028 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */
2029 1.1 christos *n_args = 3;
2030 1.1 christos break;
2031 1.1 christos }
2032 1.1 christos /* sys___posix_fchown */
2033 1.1 christos case 284: {
2034 1.23 christos const struct sys___posix_fchown_args *p = params;
2035 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2036 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */
2037 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */
2038 1.1 christos *n_args = 3;
2039 1.1 christos break;
2040 1.1 christos }
2041 1.1 christos /* sys___posix_lchown */
2042 1.1 christos case 285: {
2043 1.23 christos const struct sys___posix_lchown_args *p = params;
2044 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2045 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */
2046 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */
2047 1.1 christos *n_args = 3;
2048 1.1 christos break;
2049 1.1 christos }
2050 1.1 christos /* sys_getsid */
2051 1.1 christos case 286: {
2052 1.23 christos const struct sys_getsid_args *p = params;
2053 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
2054 1.1 christos *n_args = 1;
2055 1.1 christos break;
2056 1.1 christos }
2057 1.1 christos /* sys___clone */
2058 1.1 christos case 287: {
2059 1.23 christos const struct sys___clone_args *p = params;
2060 1.1 christos iarg[0] = SCARG(p, flags); /* int */
2061 1.1 christos uarg[1] = (intptr_t) SCARG(p, stack); /* void * */
2062 1.1 christos *n_args = 2;
2063 1.1 christos break;
2064 1.1 christos }
2065 1.1 christos /* sys_fktrace */
2066 1.1 christos case 288: {
2067 1.23 christos const struct sys_fktrace_args *p = params;
2068 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2069 1.1 christos iarg[1] = SCARG(p, ops); /* int */
2070 1.1 christos iarg[2] = SCARG(p, facs); /* int */
2071 1.1 christos iarg[3] = SCARG(p, pid); /* pid_t */
2072 1.1 christos *n_args = 4;
2073 1.1 christos break;
2074 1.1 christos }
2075 1.1 christos /* sys_preadv */
2076 1.1 christos case 289: {
2077 1.23 christos const struct sys_preadv_args *p = params;
2078 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2079 1.1 christos uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */
2080 1.1 christos iarg[2] = SCARG(p, iovcnt); /* int */
2081 1.1 christos iarg[3] = SCARG(p, PAD); /* int */
2082 1.1 christos iarg[4] = SCARG(p, offset); /* off_t */
2083 1.1 christos *n_args = 5;
2084 1.1 christos break;
2085 1.1 christos }
2086 1.1 christos /* sys_pwritev */
2087 1.1 christos case 290: {
2088 1.23 christos const struct sys_pwritev_args *p = params;
2089 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2090 1.1 christos uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */
2091 1.1 christos iarg[2] = SCARG(p, iovcnt); /* int */
2092 1.1 christos iarg[3] = SCARG(p, PAD); /* int */
2093 1.1 christos iarg[4] = SCARG(p, offset); /* off_t */
2094 1.1 christos *n_args = 5;
2095 1.1 christos break;
2096 1.1 christos }
2097 1.1 christos /* sys___sigaction14 */
2098 1.1 christos case 291: {
2099 1.23 christos const struct compat_16_sys___sigaction14_args *p = params;
2100 1.1 christos iarg[0] = SCARG(p, signum); /* int */
2101 1.1 christos uarg[1] = (intptr_t) SCARG(p, nsa); /* const struct sigaction * */
2102 1.1 christos uarg[2] = (intptr_t) SCARG(p, osa); /* struct sigaction * */
2103 1.1 christos *n_args = 3;
2104 1.1 christos break;
2105 1.1 christos }
2106 1.1 christos /* sys___sigpending14 */
2107 1.1 christos case 292: {
2108 1.23 christos const struct sys___sigpending14_args *p = params;
2109 1.1 christos uarg[0] = (intptr_t) SCARG(p, set); /* sigset_t * */
2110 1.1 christos *n_args = 1;
2111 1.1 christos break;
2112 1.1 christos }
2113 1.1 christos /* sys___sigprocmask14 */
2114 1.1 christos case 293: {
2115 1.23 christos const struct sys___sigprocmask14_args *p = params;
2116 1.1 christos iarg[0] = SCARG(p, how); /* int */
2117 1.1 christos uarg[1] = (intptr_t) SCARG(p, set); /* const sigset_t * */
2118 1.1 christos uarg[2] = (intptr_t) SCARG(p, oset); /* sigset_t * */
2119 1.1 christos *n_args = 3;
2120 1.1 christos break;
2121 1.1 christos }
2122 1.1 christos /* sys___sigsuspend14 */
2123 1.1 christos case 294: {
2124 1.23 christos const struct sys___sigsuspend14_args *p = params;
2125 1.1 christos uarg[0] = (intptr_t) SCARG(p, set); /* const sigset_t * */
2126 1.1 christos *n_args = 1;
2127 1.1 christos break;
2128 1.1 christos }
2129 1.1 christos /* sys___sigreturn14 */
2130 1.1 christos case 295: {
2131 1.23 christos const struct compat_16_sys___sigreturn14_args *p = params;
2132 1.1 christos uarg[0] = (intptr_t) SCARG(p, sigcntxp); /* struct sigcontext * */
2133 1.1 christos *n_args = 1;
2134 1.1 christos break;
2135 1.1 christos }
2136 1.1 christos /* sys___getcwd */
2137 1.1 christos case 296: {
2138 1.23 christos const struct sys___getcwd_args *p = params;
2139 1.1 christos uarg[0] = (intptr_t) SCARG(p, bufp); /* char * */
2140 1.1 christos uarg[1] = SCARG(p, length); /* size_t */
2141 1.1 christos *n_args = 2;
2142 1.1 christos break;
2143 1.1 christos }
2144 1.1 christos /* sys_fchroot */
2145 1.1 christos case 297: {
2146 1.23 christos const struct sys_fchroot_args *p = params;
2147 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2148 1.1 christos *n_args = 1;
2149 1.1 christos break;
2150 1.1 christos }
2151 1.1 christos /* sys_fhopen */
2152 1.1 christos case 298: {
2153 1.23 christos const struct compat_30_sys_fhopen_args *p = params;
2154 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */
2155 1.1 christos iarg[1] = SCARG(p, flags); /* int */
2156 1.1 christos *n_args = 2;
2157 1.1 christos break;
2158 1.1 christos }
2159 1.1 christos /* sys_fhstat */
2160 1.1 christos case 299: {
2161 1.23 christos const struct compat_30_sys_fhstat_args *p = params;
2162 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */
2163 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat13 * */
2164 1.1 christos *n_args = 2;
2165 1.1 christos break;
2166 1.1 christos }
2167 1.1 christos /* sys_fhstatfs */
2168 1.1 christos case 300: {
2169 1.23 christos const struct compat_20_sys_fhstatfs_args *p = params;
2170 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */
2171 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statfs12 * */
2172 1.1 christos *n_args = 2;
2173 1.1 christos break;
2174 1.1 christos }
2175 1.1 christos /* sys_____semctl13 */
2176 1.1 christos case 301: {
2177 1.23 christos const struct compat_50_sys_____semctl13_args *p = params;
2178 1.1 christos iarg[0] = SCARG(p, semid); /* int */
2179 1.1 christos iarg[1] = SCARG(p, semnum); /* int */
2180 1.1 christos iarg[2] = SCARG(p, cmd); /* int */
2181 1.1 christos uarg[3] = (intptr_t) SCARG(p, arg); /* union __semun * */
2182 1.1 christos *n_args = 4;
2183 1.1 christos break;
2184 1.1 christos }
2185 1.1 christos /* sys___msgctl13 */
2186 1.1 christos case 302: {
2187 1.23 christos const struct compat_50_sys___msgctl13_args *p = params;
2188 1.1 christos iarg[0] = SCARG(p, msqid); /* int */
2189 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
2190 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct msqid_ds * */
2191 1.1 christos *n_args = 3;
2192 1.1 christos break;
2193 1.1 christos }
2194 1.1 christos /* sys___shmctl13 */
2195 1.1 christos case 303: {
2196 1.23 christos const struct compat_50_sys___shmctl13_args *p = params;
2197 1.1 christos iarg[0] = SCARG(p, shmid); /* int */
2198 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
2199 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct shmid_ds13 * */
2200 1.1 christos *n_args = 3;
2201 1.1 christos break;
2202 1.1 christos }
2203 1.1 christos /* sys_lchflags */
2204 1.1 christos case 304: {
2205 1.23 christos const struct sys_lchflags_args *p = params;
2206 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2207 1.1 christos uarg[1] = SCARG(p, flags); /* u_long */
2208 1.1 christos *n_args = 2;
2209 1.1 christos break;
2210 1.1 christos }
2211 1.1 christos /* sys_issetugid */
2212 1.1 christos case 305: {
2213 1.1 christos *n_args = 0;
2214 1.1 christos break;
2215 1.1 christos }
2216 1.1 christos /* sys_utrace */
2217 1.1 christos case 306: {
2218 1.23 christos const struct sys_utrace_args *p = params;
2219 1.1 christos uarg[0] = (intptr_t) SCARG(p, label); /* const char * */
2220 1.1 christos uarg[1] = (intptr_t) SCARG(p, addr); /* void * */
2221 1.1 christos uarg[2] = SCARG(p, len); /* size_t */
2222 1.1 christos *n_args = 3;
2223 1.1 christos break;
2224 1.1 christos }
2225 1.1 christos /* sys_getcontext */
2226 1.1 christos case 307: {
2227 1.23 christos const struct sys_getcontext_args *p = params;
2228 1.1 christos uarg[0] = (intptr_t) SCARG(p, ucp); /* struct __ucontext * */
2229 1.1 christos *n_args = 1;
2230 1.1 christos break;
2231 1.1 christos }
2232 1.1 christos /* sys_setcontext */
2233 1.1 christos case 308: {
2234 1.23 christos const struct sys_setcontext_args *p = params;
2235 1.1 christos uarg[0] = (intptr_t) SCARG(p, ucp); /* const struct __ucontext * */
2236 1.1 christos *n_args = 1;
2237 1.1 christos break;
2238 1.1 christos }
2239 1.1 christos /* sys__lwp_create */
2240 1.1 christos case 309: {
2241 1.23 christos const struct sys__lwp_create_args *p = params;
2242 1.1 christos uarg[0] = (intptr_t) SCARG(p, ucp); /* const struct __ucontext * */
2243 1.1 christos uarg[1] = SCARG(p, flags); /* u_long */
2244 1.1 christos uarg[2] = (intptr_t) SCARG(p, new_lwp); /* lwpid_t * */
2245 1.1 christos *n_args = 3;
2246 1.1 christos break;
2247 1.1 christos }
2248 1.1 christos /* sys__lwp_exit */
2249 1.1 christos case 310: {
2250 1.1 christos *n_args = 0;
2251 1.1 christos break;
2252 1.1 christos }
2253 1.1 christos /* sys__lwp_self */
2254 1.1 christos case 311: {
2255 1.1 christos *n_args = 0;
2256 1.1 christos break;
2257 1.1 christos }
2258 1.1 christos /* sys__lwp_wait */
2259 1.1 christos case 312: {
2260 1.23 christos const struct sys__lwp_wait_args *p = params;
2261 1.1 christos iarg[0] = SCARG(p, wait_for); /* lwpid_t */
2262 1.1 christos uarg[1] = (intptr_t) SCARG(p, departed); /* lwpid_t * */
2263 1.1 christos *n_args = 2;
2264 1.1 christos break;
2265 1.1 christos }
2266 1.1 christos /* sys__lwp_suspend */
2267 1.1 christos case 313: {
2268 1.23 christos const struct sys__lwp_suspend_args *p = params;
2269 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2270 1.1 christos *n_args = 1;
2271 1.1 christos break;
2272 1.1 christos }
2273 1.1 christos /* sys__lwp_continue */
2274 1.1 christos case 314: {
2275 1.23 christos const struct sys__lwp_continue_args *p = params;
2276 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2277 1.1 christos *n_args = 1;
2278 1.1 christos break;
2279 1.1 christos }
2280 1.1 christos /* sys__lwp_wakeup */
2281 1.1 christos case 315: {
2282 1.23 christos const struct sys__lwp_wakeup_args *p = params;
2283 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2284 1.1 christos *n_args = 1;
2285 1.1 christos break;
2286 1.1 christos }
2287 1.1 christos /* sys__lwp_getprivate */
2288 1.1 christos case 316: {
2289 1.1 christos *n_args = 0;
2290 1.1 christos break;
2291 1.1 christos }
2292 1.1 christos /* sys__lwp_setprivate */
2293 1.1 christos case 317: {
2294 1.23 christos const struct sys__lwp_setprivate_args *p = params;
2295 1.1 christos uarg[0] = (intptr_t) SCARG(p, ptr); /* void * */
2296 1.1 christos *n_args = 1;
2297 1.1 christos break;
2298 1.1 christos }
2299 1.1 christos /* sys__lwp_kill */
2300 1.1 christos case 318: {
2301 1.23 christos const struct sys__lwp_kill_args *p = params;
2302 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2303 1.1 christos iarg[1] = SCARG(p, signo); /* int */
2304 1.1 christos *n_args = 2;
2305 1.1 christos break;
2306 1.1 christos }
2307 1.1 christos /* sys__lwp_detach */
2308 1.1 christos case 319: {
2309 1.23 christos const struct sys__lwp_detach_args *p = params;
2310 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2311 1.1 christos *n_args = 1;
2312 1.1 christos break;
2313 1.1 christos }
2314 1.1 christos /* sys__lwp_park */
2315 1.1 christos case 320: {
2316 1.23 christos const struct compat_50_sys__lwp_park_args *p = params;
2317 1.1 christos uarg[0] = (intptr_t) SCARG(p, ts); /* const struct timespec50 * */
2318 1.1 christos iarg[1] = SCARG(p, unpark); /* lwpid_t */
2319 1.1 christos uarg[2] = (intptr_t) SCARG(p, hint); /* const void * */
2320 1.1 christos uarg[3] = (intptr_t) SCARG(p, unparkhint); /* const void * */
2321 1.1 christos *n_args = 4;
2322 1.1 christos break;
2323 1.1 christos }
2324 1.1 christos /* sys__lwp_unpark */
2325 1.1 christos case 321: {
2326 1.23 christos const struct sys__lwp_unpark_args *p = params;
2327 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2328 1.1 christos uarg[1] = (intptr_t) SCARG(p, hint); /* const void * */
2329 1.1 christos *n_args = 2;
2330 1.1 christos break;
2331 1.1 christos }
2332 1.1 christos /* sys__lwp_unpark_all */
2333 1.1 christos case 322: {
2334 1.23 christos const struct sys__lwp_unpark_all_args *p = params;
2335 1.1 christos uarg[0] = (intptr_t) SCARG(p, targets); /* const lwpid_t * */
2336 1.1 christos uarg[1] = SCARG(p, ntargets); /* size_t */
2337 1.1 christos uarg[2] = (intptr_t) SCARG(p, hint); /* const void * */
2338 1.1 christos *n_args = 3;
2339 1.1 christos break;
2340 1.1 christos }
2341 1.1 christos /* sys__lwp_setname */
2342 1.1 christos case 323: {
2343 1.23 christos const struct sys__lwp_setname_args *p = params;
2344 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2345 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2346 1.1 christos *n_args = 2;
2347 1.1 christos break;
2348 1.1 christos }
2349 1.1 christos /* sys__lwp_getname */
2350 1.1 christos case 324: {
2351 1.23 christos const struct sys__lwp_getname_args *p = params;
2352 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2353 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* char * */
2354 1.1 christos uarg[2] = SCARG(p, len); /* size_t */
2355 1.1 christos *n_args = 3;
2356 1.1 christos break;
2357 1.1 christos }
2358 1.1 christos /* sys__lwp_ctl */
2359 1.1 christos case 325: {
2360 1.23 christos const struct sys__lwp_ctl_args *p = params;
2361 1.1 christos iarg[0] = SCARG(p, features); /* int */
2362 1.1 christos uarg[1] = (intptr_t) SCARG(p, address); /* struct lwpctl ** */
2363 1.1 christos *n_args = 2;
2364 1.1 christos break;
2365 1.1 christos }
2366 1.1 christos /* sys_sa_register */
2367 1.1 christos case 330: {
2368 1.23 christos const struct compat_60_sys_sa_register_args *p = params;
2369 1.1 christos uarg[0] = (intptr_t) SCARG(p, newv); /* void * */
2370 1.1 christos uarg[1] = (intptr_t) SCARG(p, oldv); /* void ** */
2371 1.1 christos iarg[2] = SCARG(p, flags); /* int */
2372 1.1 christos iarg[3] = SCARG(p, stackinfo_offset); /* ssize_t */
2373 1.1 christos *n_args = 4;
2374 1.1 christos break;
2375 1.1 christos }
2376 1.1 christos /* sys_sa_stacks */
2377 1.1 christos case 331: {
2378 1.23 christos const struct compat_60_sys_sa_stacks_args *p = params;
2379 1.1 christos iarg[0] = SCARG(p, num); /* int */
2380 1.1 christos uarg[1] = (intptr_t) SCARG(p, stacks); /* stack_t * */
2381 1.1 christos *n_args = 2;
2382 1.1 christos break;
2383 1.1 christos }
2384 1.1 christos /* sys_sa_enable */
2385 1.1 christos case 332: {
2386 1.1 christos *n_args = 0;
2387 1.1 christos break;
2388 1.1 christos }
2389 1.1 christos /* sys_sa_setconcurrency */
2390 1.1 christos case 333: {
2391 1.23 christos const struct compat_60_sys_sa_setconcurrency_args *p = params;
2392 1.1 christos iarg[0] = SCARG(p, concurrency); /* int */
2393 1.1 christos *n_args = 1;
2394 1.1 christos break;
2395 1.1 christos }
2396 1.1 christos /* sys_sa_yield */
2397 1.1 christos case 334: {
2398 1.1 christos *n_args = 0;
2399 1.1 christos break;
2400 1.1 christos }
2401 1.1 christos /* sys_sa_preempt */
2402 1.1 christos case 335: {
2403 1.23 christos const struct compat_60_sys_sa_preempt_args *p = params;
2404 1.1 christos iarg[0] = SCARG(p, sa_id); /* int */
2405 1.1 christos *n_args = 1;
2406 1.1 christos break;
2407 1.1 christos }
2408 1.1 christos /* sys___sigaction_sigtramp */
2409 1.1 christos case 340: {
2410 1.23 christos const struct sys___sigaction_sigtramp_args *p = params;
2411 1.1 christos iarg[0] = SCARG(p, signum); /* int */
2412 1.1 christos uarg[1] = (intptr_t) SCARG(p, nsa); /* const struct sigaction * */
2413 1.1 christos uarg[2] = (intptr_t) SCARG(p, osa); /* struct sigaction * */
2414 1.1 christos uarg[3] = (intptr_t) SCARG(p, tramp); /* const void * */
2415 1.1 christos iarg[4] = SCARG(p, vers); /* int */
2416 1.1 christos *n_args = 5;
2417 1.1 christos break;
2418 1.1 christos }
2419 1.1 christos /* sys_pmc_get_info */
2420 1.1 christos case 341: {
2421 1.23 christos const struct sys_pmc_get_info_args *p = params;
2422 1.1 christos iarg[0] = SCARG(p, ctr); /* int */
2423 1.1 christos iarg[1] = SCARG(p, op); /* int */
2424 1.1 christos uarg[2] = (intptr_t) SCARG(p, args); /* void * */
2425 1.1 christos *n_args = 3;
2426 1.1 christos break;
2427 1.1 christos }
2428 1.1 christos /* sys_pmc_control */
2429 1.1 christos case 342: {
2430 1.23 christos const struct sys_pmc_control_args *p = params;
2431 1.1 christos iarg[0] = SCARG(p, ctr); /* int */
2432 1.1 christos iarg[1] = SCARG(p, op); /* int */
2433 1.1 christos uarg[2] = (intptr_t) SCARG(p, args); /* void * */
2434 1.1 christos *n_args = 3;
2435 1.1 christos break;
2436 1.1 christos }
2437 1.1 christos /* sys_rasctl */
2438 1.1 christos case 343: {
2439 1.23 christos const struct sys_rasctl_args *p = params;
2440 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
2441 1.1 christos uarg[1] = SCARG(p, len); /* size_t */
2442 1.1 christos iarg[2] = SCARG(p, op); /* int */
2443 1.1 christos *n_args = 3;
2444 1.1 christos break;
2445 1.1 christos }
2446 1.1 christos /* sys_kqueue */
2447 1.1 christos case 344: {
2448 1.1 christos *n_args = 0;
2449 1.1 christos break;
2450 1.1 christos }
2451 1.1 christos /* sys_kevent */
2452 1.1 christos case 345: {
2453 1.23 christos const struct compat_50_sys_kevent_args *p = params;
2454 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2455 1.1 christos uarg[1] = (intptr_t) SCARG(p, changelist); /* const struct kevent * */
2456 1.1 christos uarg[2] = SCARG(p, nchanges); /* size_t */
2457 1.1 christos uarg[3] = (intptr_t) SCARG(p, eventlist); /* struct kevent * */
2458 1.1 christos uarg[4] = SCARG(p, nevents); /* size_t */
2459 1.1 christos uarg[5] = (intptr_t) SCARG(p, timeout); /* const struct timespec50 * */
2460 1.1 christos *n_args = 6;
2461 1.1 christos break;
2462 1.1 christos }
2463 1.1 christos /* sys__sched_setparam */
2464 1.1 christos case 346: {
2465 1.23 christos const struct sys__sched_setparam_args *p = params;
2466 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
2467 1.1 christos iarg[1] = SCARG(p, lid); /* lwpid_t */
2468 1.1 christos iarg[2] = SCARG(p, policy); /* int */
2469 1.1 christos uarg[3] = (intptr_t) SCARG(p, params); /* const struct sched_param * */
2470 1.1 christos *n_args = 4;
2471 1.1 christos break;
2472 1.1 christos }
2473 1.1 christos /* sys__sched_getparam */
2474 1.1 christos case 347: {
2475 1.23 christos const struct sys__sched_getparam_args *p = params;
2476 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
2477 1.1 christos iarg[1] = SCARG(p, lid); /* lwpid_t */
2478 1.1 christos uarg[2] = (intptr_t) SCARG(p, policy); /* int * */
2479 1.1 christos uarg[3] = (intptr_t) SCARG(p, params); /* struct sched_param * */
2480 1.1 christos *n_args = 4;
2481 1.1 christos break;
2482 1.1 christos }
2483 1.1 christos /* sys__sched_setaffinity */
2484 1.1 christos case 348: {
2485 1.23 christos const struct sys__sched_setaffinity_args *p = params;
2486 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
2487 1.1 christos iarg[1] = SCARG(p, lid); /* lwpid_t */
2488 1.1 christos uarg[2] = SCARG(p, size); /* size_t */
2489 1.1 christos uarg[3] = (intptr_t) SCARG(p, cpuset); /* const cpuset_t * */
2490 1.1 christos *n_args = 4;
2491 1.1 christos break;
2492 1.1 christos }
2493 1.1 christos /* sys__sched_getaffinity */
2494 1.1 christos case 349: {
2495 1.23 christos const struct sys__sched_getaffinity_args *p = params;
2496 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
2497 1.1 christos iarg[1] = SCARG(p, lid); /* lwpid_t */
2498 1.1 christos uarg[2] = SCARG(p, size); /* size_t */
2499 1.1 christos uarg[3] = (intptr_t) SCARG(p, cpuset); /* cpuset_t * */
2500 1.1 christos *n_args = 4;
2501 1.1 christos break;
2502 1.1 christos }
2503 1.1 christos /* sys_sched_yield */
2504 1.1 christos case 350: {
2505 1.1 christos *n_args = 0;
2506 1.1 christos break;
2507 1.1 christos }
2508 1.21 christos /* sys__sched_protect */
2509 1.21 christos case 351: {
2510 1.23 christos const struct sys__sched_protect_args *p = params;
2511 1.21 christos iarg[0] = SCARG(p, priority); /* int */
2512 1.21 christos *n_args = 1;
2513 1.21 christos break;
2514 1.21 christos }
2515 1.1 christos /* sys_fsync_range */
2516 1.1 christos case 354: {
2517 1.23 christos const struct sys_fsync_range_args *p = params;
2518 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2519 1.1 christos iarg[1] = SCARG(p, flags); /* int */
2520 1.1 christos iarg[2] = SCARG(p, start); /* off_t */
2521 1.1 christos iarg[3] = SCARG(p, length); /* off_t */
2522 1.1 christos *n_args = 4;
2523 1.1 christos break;
2524 1.1 christos }
2525 1.1 christos /* sys_uuidgen */
2526 1.1 christos case 355: {
2527 1.23 christos const struct sys_uuidgen_args *p = params;
2528 1.1 christos uarg[0] = (intptr_t) SCARG(p, store); /* struct uuid * */
2529 1.1 christos iarg[1] = SCARG(p, count); /* int */
2530 1.1 christos *n_args = 2;
2531 1.1 christos break;
2532 1.1 christos }
2533 1.1 christos /* sys_getvfsstat */
2534 1.1 christos case 356: {
2535 1.23 christos const struct sys_getvfsstat_args *p = params;
2536 1.1 christos uarg[0] = (intptr_t) SCARG(p, buf); /* struct statvfs * */
2537 1.1 christos uarg[1] = SCARG(p, bufsize); /* size_t */
2538 1.1 christos iarg[2] = SCARG(p, flags); /* int */
2539 1.1 christos *n_args = 3;
2540 1.1 christos break;
2541 1.1 christos }
2542 1.1 christos /* sys_statvfs1 */
2543 1.1 christos case 357: {
2544 1.23 christos const struct sys_statvfs1_args *p = params;
2545 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2546 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs * */
2547 1.1 christos iarg[2] = SCARG(p, flags); /* int */
2548 1.1 christos *n_args = 3;
2549 1.1 christos break;
2550 1.1 christos }
2551 1.1 christos /* sys_fstatvfs1 */
2552 1.1 christos case 358: {
2553 1.23 christos const struct sys_fstatvfs1_args *p = params;
2554 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2555 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs * */
2556 1.1 christos iarg[2] = SCARG(p, flags); /* int */
2557 1.1 christos *n_args = 3;
2558 1.1 christos break;
2559 1.1 christos }
2560 1.1 christos /* sys_fhstatvfs1 */
2561 1.1 christos case 359: {
2562 1.23 christos const struct compat_30_sys_fhstatvfs1_args *p = params;
2563 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */
2564 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs * */
2565 1.1 christos iarg[2] = SCARG(p, flags); /* int */
2566 1.1 christos *n_args = 3;
2567 1.1 christos break;
2568 1.1 christos }
2569 1.1 christos /* sys_extattrctl */
2570 1.1 christos case 360: {
2571 1.23 christos const struct sys_extattrctl_args *p = params;
2572 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2573 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
2574 1.1 christos uarg[2] = (intptr_t) SCARG(p, filename); /* const char * */
2575 1.1 christos iarg[3] = SCARG(p, attrnamespace); /* int */
2576 1.1 christos uarg[4] = (intptr_t) SCARG(p, attrname); /* const char * */
2577 1.1 christos *n_args = 5;
2578 1.1 christos break;
2579 1.1 christos }
2580 1.1 christos /* sys_extattr_set_file */
2581 1.1 christos case 361: {
2582 1.23 christos const struct sys_extattr_set_file_args *p = params;
2583 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2584 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2585 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2586 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* const void * */
2587 1.1 christos uarg[4] = SCARG(p, nbytes); /* size_t */
2588 1.1 christos *n_args = 5;
2589 1.1 christos break;
2590 1.1 christos }
2591 1.1 christos /* sys_extattr_get_file */
2592 1.1 christos case 362: {
2593 1.23 christos const struct sys_extattr_get_file_args *p = params;
2594 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2595 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2596 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2597 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* void * */
2598 1.1 christos uarg[4] = SCARG(p, nbytes); /* size_t */
2599 1.1 christos *n_args = 5;
2600 1.1 christos break;
2601 1.1 christos }
2602 1.1 christos /* sys_extattr_delete_file */
2603 1.1 christos case 363: {
2604 1.23 christos const struct sys_extattr_delete_file_args *p = params;
2605 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2606 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2607 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2608 1.1 christos *n_args = 3;
2609 1.1 christos break;
2610 1.1 christos }
2611 1.1 christos /* sys_extattr_set_fd */
2612 1.1 christos case 364: {
2613 1.23 christos const struct sys_extattr_set_fd_args *p = params;
2614 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2615 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2616 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2617 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* const void * */
2618 1.1 christos uarg[4] = SCARG(p, nbytes); /* size_t */
2619 1.1 christos *n_args = 5;
2620 1.1 christos break;
2621 1.1 christos }
2622 1.1 christos /* sys_extattr_get_fd */
2623 1.1 christos case 365: {
2624 1.23 christos const struct sys_extattr_get_fd_args *p = params;
2625 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2626 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2627 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2628 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* void * */
2629 1.1 christos uarg[4] = SCARG(p, nbytes); /* size_t */
2630 1.1 christos *n_args = 5;
2631 1.1 christos break;
2632 1.1 christos }
2633 1.1 christos /* sys_extattr_delete_fd */
2634 1.1 christos case 366: {
2635 1.23 christos const struct sys_extattr_delete_fd_args *p = params;
2636 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2637 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2638 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2639 1.1 christos *n_args = 3;
2640 1.1 christos break;
2641 1.1 christos }
2642 1.1 christos /* sys_extattr_set_link */
2643 1.1 christos case 367: {
2644 1.23 christos const struct sys_extattr_set_link_args *p = params;
2645 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2646 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2647 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2648 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* const void * */
2649 1.1 christos uarg[4] = SCARG(p, nbytes); /* size_t */
2650 1.1 christos *n_args = 5;
2651 1.1 christos break;
2652 1.1 christos }
2653 1.1 christos /* sys_extattr_get_link */
2654 1.1 christos case 368: {
2655 1.23 christos const struct sys_extattr_get_link_args *p = params;
2656 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2657 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2658 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2659 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* void * */
2660 1.1 christos uarg[4] = SCARG(p, nbytes); /* size_t */
2661 1.1 christos *n_args = 5;
2662 1.1 christos break;
2663 1.1 christos }
2664 1.1 christos /* sys_extattr_delete_link */
2665 1.1 christos case 369: {
2666 1.23 christos const struct sys_extattr_delete_link_args *p = params;
2667 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2668 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2669 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2670 1.1 christos *n_args = 3;
2671 1.1 christos break;
2672 1.1 christos }
2673 1.1 christos /* sys_extattr_list_fd */
2674 1.1 christos case 370: {
2675 1.23 christos const struct sys_extattr_list_fd_args *p = params;
2676 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2677 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2678 1.1 christos uarg[2] = (intptr_t) SCARG(p, data); /* void * */
2679 1.1 christos uarg[3] = SCARG(p, nbytes); /* size_t */
2680 1.1 christos *n_args = 4;
2681 1.1 christos break;
2682 1.1 christos }
2683 1.1 christos /* sys_extattr_list_file */
2684 1.1 christos case 371: {
2685 1.23 christos const struct sys_extattr_list_file_args *p = params;
2686 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2687 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2688 1.1 christos uarg[2] = (intptr_t) SCARG(p, data); /* void * */
2689 1.1 christos uarg[3] = SCARG(p, nbytes); /* size_t */
2690 1.1 christos *n_args = 4;
2691 1.1 christos break;
2692 1.1 christos }
2693 1.1 christos /* sys_extattr_list_link */
2694 1.1 christos case 372: {
2695 1.23 christos const struct sys_extattr_list_link_args *p = params;
2696 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2697 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2698 1.1 christos uarg[2] = (intptr_t) SCARG(p, data); /* void * */
2699 1.1 christos uarg[3] = SCARG(p, nbytes); /* size_t */
2700 1.1 christos *n_args = 4;
2701 1.1 christos break;
2702 1.1 christos }
2703 1.1 christos /* sys_pselect */
2704 1.1 christos case 373: {
2705 1.23 christos const struct compat_50_sys_pselect_args *p = params;
2706 1.1 christos iarg[0] = SCARG(p, nd); /* int */
2707 1.1 christos uarg[1] = (intptr_t) SCARG(p, in); /* fd_set * */
2708 1.1 christos uarg[2] = (intptr_t) SCARG(p, ou); /* fd_set * */
2709 1.1 christos uarg[3] = (intptr_t) SCARG(p, ex); /* fd_set * */
2710 1.1 christos uarg[4] = (intptr_t) SCARG(p, ts); /* const struct timespec50 * */
2711 1.1 christos uarg[5] = (intptr_t) SCARG(p, mask); /* const sigset_t * */
2712 1.1 christos *n_args = 6;
2713 1.1 christos break;
2714 1.1 christos }
2715 1.1 christos /* sys_pollts */
2716 1.1 christos case 374: {
2717 1.23 christos const struct compat_50_sys_pollts_args *p = params;
2718 1.1 christos uarg[0] = (intptr_t) SCARG(p, fds); /* struct pollfd * */
2719 1.1 christos uarg[1] = SCARG(p, nfds); /* u_int */
2720 1.1 christos uarg[2] = (intptr_t) SCARG(p, ts); /* const struct timespec50 * */
2721 1.1 christos uarg[3] = (intptr_t) SCARG(p, mask); /* const sigset_t * */
2722 1.1 christos *n_args = 4;
2723 1.1 christos break;
2724 1.1 christos }
2725 1.1 christos /* sys_setxattr */
2726 1.1 christos case 375: {
2727 1.23 christos const struct sys_setxattr_args *p = params;
2728 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2729 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2730 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* const void * */
2731 1.1 christos uarg[3] = SCARG(p, size); /* size_t */
2732 1.1 christos iarg[4] = SCARG(p, flags); /* int */
2733 1.1 christos *n_args = 5;
2734 1.1 christos break;
2735 1.1 christos }
2736 1.1 christos /* sys_lsetxattr */
2737 1.1 christos case 376: {
2738 1.23 christos const struct sys_lsetxattr_args *p = params;
2739 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2740 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2741 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* const void * */
2742 1.1 christos uarg[3] = SCARG(p, size); /* size_t */
2743 1.1 christos iarg[4] = SCARG(p, flags); /* int */
2744 1.1 christos *n_args = 5;
2745 1.1 christos break;
2746 1.1 christos }
2747 1.1 christos /* sys_fsetxattr */
2748 1.1 christos case 377: {
2749 1.23 christos const struct sys_fsetxattr_args *p = params;
2750 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2751 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2752 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* const void * */
2753 1.1 christos uarg[3] = SCARG(p, size); /* size_t */
2754 1.1 christos iarg[4] = SCARG(p, flags); /* int */
2755 1.1 christos *n_args = 5;
2756 1.1 christos break;
2757 1.1 christos }
2758 1.1 christos /* sys_getxattr */
2759 1.1 christos case 378: {
2760 1.23 christos const struct sys_getxattr_args *p = params;
2761 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2762 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2763 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* void * */
2764 1.1 christos uarg[3] = SCARG(p, size); /* size_t */
2765 1.1 christos *n_args = 4;
2766 1.1 christos break;
2767 1.1 christos }
2768 1.1 christos /* sys_lgetxattr */
2769 1.1 christos case 379: {
2770 1.23 christos const struct sys_lgetxattr_args *p = params;
2771 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2772 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2773 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* void * */
2774 1.1 christos uarg[3] = SCARG(p, size); /* size_t */
2775 1.1 christos *n_args = 4;
2776 1.1 christos break;
2777 1.1 christos }
2778 1.1 christos /* sys_fgetxattr */
2779 1.1 christos case 380: {
2780 1.23 christos const struct sys_fgetxattr_args *p = params;
2781 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2782 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2783 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* void * */
2784 1.1 christos uarg[3] = SCARG(p, size); /* size_t */
2785 1.1 christos *n_args = 4;
2786 1.1 christos break;
2787 1.1 christos }
2788 1.1 christos /* sys_listxattr */
2789 1.1 christos case 381: {
2790 1.23 christos const struct sys_listxattr_args *p = params;
2791 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2792 1.1 christos uarg[1] = (intptr_t) SCARG(p, list); /* char * */
2793 1.1 christos uarg[2] = SCARG(p, size); /* size_t */
2794 1.1 christos *n_args = 3;
2795 1.1 christos break;
2796 1.1 christos }
2797 1.1 christos /* sys_llistxattr */
2798 1.1 christos case 382: {
2799 1.23 christos const struct sys_llistxattr_args *p = params;
2800 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2801 1.1 christos uarg[1] = (intptr_t) SCARG(p, list); /* char * */
2802 1.1 christos uarg[2] = SCARG(p, size); /* size_t */
2803 1.1 christos *n_args = 3;
2804 1.1 christos break;
2805 1.1 christos }
2806 1.1 christos /* sys_flistxattr */
2807 1.1 christos case 383: {
2808 1.23 christos const struct sys_flistxattr_args *p = params;
2809 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2810 1.1 christos uarg[1] = (intptr_t) SCARG(p, list); /* char * */
2811 1.1 christos uarg[2] = SCARG(p, size); /* size_t */
2812 1.1 christos *n_args = 3;
2813 1.1 christos break;
2814 1.1 christos }
2815 1.1 christos /* sys_removexattr */
2816 1.1 christos case 384: {
2817 1.23 christos const struct sys_removexattr_args *p = params;
2818 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2819 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2820 1.1 christos *n_args = 2;
2821 1.1 christos break;
2822 1.1 christos }
2823 1.1 christos /* sys_lremovexattr */
2824 1.1 christos case 385: {
2825 1.23 christos const struct sys_lremovexattr_args *p = params;
2826 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2827 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2828 1.1 christos *n_args = 2;
2829 1.1 christos break;
2830 1.1 christos }
2831 1.1 christos /* sys_fremovexattr */
2832 1.1 christos case 386: {
2833 1.23 christos const struct sys_fremovexattr_args *p = params;
2834 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2835 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2836 1.1 christos *n_args = 2;
2837 1.1 christos break;
2838 1.1 christos }
2839 1.1 christos /* sys___stat30 */
2840 1.1 christos case 387: {
2841 1.23 christos const struct compat_50_sys___stat30_args *p = params;
2842 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2843 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat30 * */
2844 1.1 christos *n_args = 2;
2845 1.1 christos break;
2846 1.1 christos }
2847 1.1 christos /* sys___fstat30 */
2848 1.1 christos case 388: {
2849 1.23 christos const struct compat_50_sys___fstat30_args *p = params;
2850 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2851 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat30 * */
2852 1.1 christos *n_args = 2;
2853 1.1 christos break;
2854 1.1 christos }
2855 1.1 christos /* sys___lstat30 */
2856 1.1 christos case 389: {
2857 1.23 christos const struct compat_50_sys___lstat30_args *p = params;
2858 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2859 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat30 * */
2860 1.1 christos *n_args = 2;
2861 1.1 christos break;
2862 1.1 christos }
2863 1.1 christos /* sys___getdents30 */
2864 1.1 christos case 390: {
2865 1.23 christos const struct sys___getdents30_args *p = params;
2866 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2867 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
2868 1.1 christos uarg[2] = SCARG(p, count); /* size_t */
2869 1.1 christos *n_args = 3;
2870 1.1 christos break;
2871 1.1 christos }
2872 1.1 christos /* sys___fhstat30 */
2873 1.1 christos case 392: {
2874 1.23 christos const struct compat_30_sys___fhstat30_args *p = params;
2875 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */
2876 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat30 * */
2877 1.1 christos *n_args = 2;
2878 1.1 christos break;
2879 1.1 christos }
2880 1.1 christos /* sys___ntp_gettime30 */
2881 1.1 christos case 393: {
2882 1.23 christos const struct compat_50_sys___ntp_gettime30_args *p = params;
2883 1.1 christos uarg[0] = (intptr_t) SCARG(p, ntvp); /* struct ntptimeval50 * */
2884 1.1 christos *n_args = 1;
2885 1.1 christos break;
2886 1.1 christos }
2887 1.1 christos /* sys___socket30 */
2888 1.1 christos case 394: {
2889 1.23 christos const struct sys___socket30_args *p = params;
2890 1.1 christos iarg[0] = SCARG(p, domain); /* int */
2891 1.1 christos iarg[1] = SCARG(p, type); /* int */
2892 1.1 christos iarg[2] = SCARG(p, protocol); /* int */
2893 1.1 christos *n_args = 3;
2894 1.1 christos break;
2895 1.1 christos }
2896 1.1 christos /* sys___getfh30 */
2897 1.1 christos case 395: {
2898 1.23 christos const struct sys___getfh30_args *p = params;
2899 1.1 christos uarg[0] = (intptr_t) SCARG(p, fname); /* const char * */
2900 1.1 christos uarg[1] = (intptr_t) SCARG(p, fhp); /* void * */
2901 1.1 christos uarg[2] = (intptr_t) SCARG(p, fh_size); /* size_t * */
2902 1.1 christos *n_args = 3;
2903 1.1 christos break;
2904 1.1 christos }
2905 1.1 christos /* sys___fhopen40 */
2906 1.1 christos case 396: {
2907 1.23 christos const struct sys___fhopen40_args *p = params;
2908 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */
2909 1.1 christos uarg[1] = SCARG(p, fh_size); /* size_t */
2910 1.1 christos iarg[2] = SCARG(p, flags); /* int */
2911 1.1 christos *n_args = 3;
2912 1.1 christos break;
2913 1.1 christos }
2914 1.1 christos /* sys___fhstatvfs140 */
2915 1.1 christos case 397: {
2916 1.23 christos const struct sys___fhstatvfs140_args *p = params;
2917 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */
2918 1.1 christos uarg[1] = SCARG(p, fh_size); /* size_t */
2919 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct statvfs * */
2920 1.1 christos iarg[3] = SCARG(p, flags); /* int */
2921 1.1 christos *n_args = 4;
2922 1.1 christos break;
2923 1.1 christos }
2924 1.1 christos /* sys___fhstat40 */
2925 1.1 christos case 398: {
2926 1.23 christos const struct compat_50_sys___fhstat40_args *p = params;
2927 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */
2928 1.1 christos uarg[1] = SCARG(p, fh_size); /* size_t */
2929 1.1 christos uarg[2] = (intptr_t) SCARG(p, sb); /* struct stat30 * */
2930 1.1 christos *n_args = 3;
2931 1.1 christos break;
2932 1.1 christos }
2933 1.1 christos /* sys_aio_cancel */
2934 1.1 christos case 399: {
2935 1.23 christos const struct sys_aio_cancel_args *p = params;
2936 1.1 christos iarg[0] = SCARG(p, fildes); /* int */
2937 1.1 christos uarg[1] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */
2938 1.1 christos *n_args = 2;
2939 1.1 christos break;
2940 1.1 christos }
2941 1.1 christos /* sys_aio_error */
2942 1.1 christos case 400: {
2943 1.23 christos const struct sys_aio_error_args *p = params;
2944 1.1 christos uarg[0] = (intptr_t) SCARG(p, aiocbp); /* const struct aiocb * */
2945 1.1 christos *n_args = 1;
2946 1.1 christos break;
2947 1.1 christos }
2948 1.1 christos /* sys_aio_fsync */
2949 1.1 christos case 401: {
2950 1.23 christos const struct sys_aio_fsync_args *p = params;
2951 1.1 christos iarg[0] = SCARG(p, op); /* int */
2952 1.1 christos uarg[1] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */
2953 1.1 christos *n_args = 2;
2954 1.1 christos break;
2955 1.1 christos }
2956 1.1 christos /* sys_aio_read */
2957 1.1 christos case 402: {
2958 1.23 christos const struct sys_aio_read_args *p = params;
2959 1.1 christos uarg[0] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */
2960 1.1 christos *n_args = 1;
2961 1.1 christos break;
2962 1.1 christos }
2963 1.1 christos /* sys_aio_return */
2964 1.1 christos case 403: {
2965 1.23 christos const struct sys_aio_return_args *p = params;
2966 1.1 christos uarg[0] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */
2967 1.1 christos *n_args = 1;
2968 1.1 christos break;
2969 1.1 christos }
2970 1.1 christos /* sys_aio_suspend */
2971 1.1 christos case 404: {
2972 1.23 christos const struct compat_50_sys_aio_suspend_args *p = params;
2973 1.1 christos uarg[0] = (intptr_t) SCARG(p, list); /* const struct aiocb *const * */
2974 1.1 christos iarg[1] = SCARG(p, nent); /* int */
2975 1.1 christos uarg[2] = (intptr_t) SCARG(p, timeout); /* const struct timespec50 * */
2976 1.1 christos *n_args = 3;
2977 1.1 christos break;
2978 1.1 christos }
2979 1.1 christos /* sys_aio_write */
2980 1.1 christos case 405: {
2981 1.23 christos const struct sys_aio_write_args *p = params;
2982 1.1 christos uarg[0] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */
2983 1.1 christos *n_args = 1;
2984 1.1 christos break;
2985 1.1 christos }
2986 1.1 christos /* sys_lio_listio */
2987 1.1 christos case 406: {
2988 1.23 christos const struct sys_lio_listio_args *p = params;
2989 1.1 christos iarg[0] = SCARG(p, mode); /* int */
2990 1.1 christos uarg[1] = (intptr_t) SCARG(p, list); /* struct aiocb *const * */
2991 1.1 christos iarg[2] = SCARG(p, nent); /* int */
2992 1.1 christos uarg[3] = (intptr_t) SCARG(p, sig); /* struct sigevent * */
2993 1.1 christos *n_args = 4;
2994 1.1 christos break;
2995 1.1 christos }
2996 1.1 christos /* sys___mount50 */
2997 1.1 christos case 410: {
2998 1.23 christos const struct sys___mount50_args *p = params;
2999 1.1 christos uarg[0] = (intptr_t) SCARG(p, type); /* const char * */
3000 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3001 1.1 christos iarg[2] = SCARG(p, flags); /* int */
3002 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* void * */
3003 1.1 christos uarg[4] = SCARG(p, data_len); /* size_t */
3004 1.1 christos *n_args = 5;
3005 1.1 christos break;
3006 1.1 christos }
3007 1.1 christos /* sys_mremap */
3008 1.1 christos case 411: {
3009 1.23 christos const struct sys_mremap_args *p = params;
3010 1.1 christos uarg[0] = (intptr_t) SCARG(p, old_address); /* void * */
3011 1.1 christos uarg[1] = SCARG(p, old_size); /* size_t */
3012 1.1 christos uarg[2] = (intptr_t) SCARG(p, new_address); /* void * */
3013 1.1 christos uarg[3] = SCARG(p, new_size); /* size_t */
3014 1.1 christos iarg[4] = SCARG(p, flags); /* int */
3015 1.1 christos *n_args = 5;
3016 1.1 christos break;
3017 1.1 christos }
3018 1.1 christos /* sys_pset_create */
3019 1.1 christos case 412: {
3020 1.23 christos const struct sys_pset_create_args *p = params;
3021 1.1 christos uarg[0] = (intptr_t) SCARG(p, psid); /* psetid_t * */
3022 1.1 christos *n_args = 1;
3023 1.1 christos break;
3024 1.1 christos }
3025 1.1 christos /* sys_pset_destroy */
3026 1.1 christos case 413: {
3027 1.23 christos const struct sys_pset_destroy_args *p = params;
3028 1.1 christos iarg[0] = SCARG(p, psid); /* psetid_t */
3029 1.1 christos *n_args = 1;
3030 1.1 christos break;
3031 1.1 christos }
3032 1.1 christos /* sys_pset_assign */
3033 1.1 christos case 414: {
3034 1.23 christos const struct sys_pset_assign_args *p = params;
3035 1.1 christos iarg[0] = SCARG(p, psid); /* psetid_t */
3036 1.1 christos iarg[1] = SCARG(p, cpuid); /* cpuid_t */
3037 1.1 christos uarg[2] = (intptr_t) SCARG(p, opsid); /* psetid_t * */
3038 1.1 christos *n_args = 3;
3039 1.1 christos break;
3040 1.1 christos }
3041 1.1 christos /* sys__pset_bind */
3042 1.1 christos case 415: {
3043 1.23 christos const struct sys__pset_bind_args *p = params;
3044 1.1 christos iarg[0] = SCARG(p, idtype); /* idtype_t */
3045 1.1 christos iarg[1] = SCARG(p, first_id); /* id_t */
3046 1.1 christos iarg[2] = SCARG(p, second_id); /* id_t */
3047 1.1 christos iarg[3] = SCARG(p, psid); /* psetid_t */
3048 1.1 christos uarg[4] = (intptr_t) SCARG(p, opsid); /* psetid_t * */
3049 1.1 christos *n_args = 5;
3050 1.1 christos break;
3051 1.1 christos }
3052 1.1 christos /* sys___posix_fadvise50 */
3053 1.1 christos case 416: {
3054 1.23 christos const struct sys___posix_fadvise50_args *p = params;
3055 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3056 1.1 christos iarg[1] = SCARG(p, PAD); /* int */
3057 1.1 christos iarg[2] = SCARG(p, offset); /* off_t */
3058 1.1 christos iarg[3] = SCARG(p, len); /* off_t */
3059 1.1 christos iarg[4] = SCARG(p, advice); /* int */
3060 1.1 christos *n_args = 5;
3061 1.1 christos break;
3062 1.1 christos }
3063 1.1 christos /* sys___select50 */
3064 1.1 christos case 417: {
3065 1.23 christos const struct sys___select50_args *p = params;
3066 1.1 christos iarg[0] = SCARG(p, nd); /* int */
3067 1.1 christos uarg[1] = (intptr_t) SCARG(p, in); /* fd_set * */
3068 1.1 christos uarg[2] = (intptr_t) SCARG(p, ou); /* fd_set * */
3069 1.1 christos uarg[3] = (intptr_t) SCARG(p, ex); /* fd_set * */
3070 1.1 christos uarg[4] = (intptr_t) SCARG(p, tv); /* struct timeval * */
3071 1.1 christos *n_args = 5;
3072 1.1 christos break;
3073 1.1 christos }
3074 1.1 christos /* sys___gettimeofday50 */
3075 1.1 christos case 418: {
3076 1.23 christos const struct sys___gettimeofday50_args *p = params;
3077 1.1 christos uarg[0] = (intptr_t) SCARG(p, tp); /* struct timeval * */
3078 1.1 christos uarg[1] = (intptr_t) SCARG(p, tzp); /* void * */
3079 1.1 christos *n_args = 2;
3080 1.1 christos break;
3081 1.1 christos }
3082 1.1 christos /* sys___settimeofday50 */
3083 1.1 christos case 419: {
3084 1.23 christos const struct sys___settimeofday50_args *p = params;
3085 1.1 christos uarg[0] = (intptr_t) SCARG(p, tv); /* const struct timeval * */
3086 1.1 christos uarg[1] = (intptr_t) SCARG(p, tzp); /* const void * */
3087 1.1 christos *n_args = 2;
3088 1.1 christos break;
3089 1.1 christos }
3090 1.1 christos /* sys___utimes50 */
3091 1.1 christos case 420: {
3092 1.23 christos const struct sys___utimes50_args *p = params;
3093 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3094 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval * */
3095 1.1 christos *n_args = 2;
3096 1.1 christos break;
3097 1.1 christos }
3098 1.1 christos /* sys___adjtime50 */
3099 1.1 christos case 421: {
3100 1.23 christos const struct sys___adjtime50_args *p = params;
3101 1.1 christos uarg[0] = (intptr_t) SCARG(p, delta); /* const struct timeval * */
3102 1.1 christos uarg[1] = (intptr_t) SCARG(p, olddelta); /* struct timeval * */
3103 1.1 christos *n_args = 2;
3104 1.1 christos break;
3105 1.1 christos }
3106 1.1 christos /* sys___lfs_segwait50 */
3107 1.1 christos case 422: {
3108 1.23 christos const struct sys___lfs_segwait50_args *p = params;
3109 1.1 christos uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */
3110 1.1 christos uarg[1] = (intptr_t) SCARG(p, tv); /* struct timeval * */
3111 1.1 christos *n_args = 2;
3112 1.1 christos break;
3113 1.1 christos }
3114 1.1 christos /* sys___futimes50 */
3115 1.1 christos case 423: {
3116 1.23 christos const struct sys___futimes50_args *p = params;
3117 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3118 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval * */
3119 1.1 christos *n_args = 2;
3120 1.1 christos break;
3121 1.1 christos }
3122 1.1 christos /* sys___lutimes50 */
3123 1.1 christos case 424: {
3124 1.23 christos const struct sys___lutimes50_args *p = params;
3125 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3126 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval * */
3127 1.1 christos *n_args = 2;
3128 1.1 christos break;
3129 1.1 christos }
3130 1.1 christos /* sys___setitimer50 */
3131 1.1 christos case 425: {
3132 1.23 christos const struct sys___setitimer50_args *p = params;
3133 1.1 christos iarg[0] = SCARG(p, which); /* int */
3134 1.1 christos uarg[1] = (intptr_t) SCARG(p, itv); /* const struct itimerval * */
3135 1.1 christos uarg[2] = (intptr_t) SCARG(p, oitv); /* struct itimerval * */
3136 1.1 christos *n_args = 3;
3137 1.1 christos break;
3138 1.1 christos }
3139 1.1 christos /* sys___getitimer50 */
3140 1.1 christos case 426: {
3141 1.23 christos const struct sys___getitimer50_args *p = params;
3142 1.1 christos iarg[0] = SCARG(p, which); /* int */
3143 1.1 christos uarg[1] = (intptr_t) SCARG(p, itv); /* struct itimerval * */
3144 1.1 christos *n_args = 2;
3145 1.1 christos break;
3146 1.1 christos }
3147 1.1 christos /* sys___clock_gettime50 */
3148 1.1 christos case 427: {
3149 1.23 christos const struct sys___clock_gettime50_args *p = params;
3150 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */
3151 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp); /* struct timespec * */
3152 1.1 christos *n_args = 2;
3153 1.1 christos break;
3154 1.1 christos }
3155 1.1 christos /* sys___clock_settime50 */
3156 1.1 christos case 428: {
3157 1.23 christos const struct sys___clock_settime50_args *p = params;
3158 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */
3159 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp); /* const struct timespec * */
3160 1.1 christos *n_args = 2;
3161 1.1 christos break;
3162 1.1 christos }
3163 1.1 christos /* sys___clock_getres50 */
3164 1.1 christos case 429: {
3165 1.23 christos const struct sys___clock_getres50_args *p = params;
3166 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */
3167 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp); /* struct timespec * */
3168 1.1 christos *n_args = 2;
3169 1.1 christos break;
3170 1.1 christos }
3171 1.1 christos /* sys___nanosleep50 */
3172 1.1 christos case 430: {
3173 1.23 christos const struct sys___nanosleep50_args *p = params;
3174 1.1 christos uarg[0] = (intptr_t) SCARG(p, rqtp); /* const struct timespec * */
3175 1.1 christos uarg[1] = (intptr_t) SCARG(p, rmtp); /* struct timespec * */
3176 1.1 christos *n_args = 2;
3177 1.1 christos break;
3178 1.1 christos }
3179 1.1 christos /* sys_____sigtimedwait50 */
3180 1.1 christos case 431: {
3181 1.23 christos const struct sys_____sigtimedwait50_args *p = params;
3182 1.1 christos uarg[0] = (intptr_t) SCARG(p, set); /* const sigset_t * */
3183 1.1 christos uarg[1] = (intptr_t) SCARG(p, info); /* siginfo_t * */
3184 1.1 christos uarg[2] = (intptr_t) SCARG(p, timeout); /* struct timespec * */
3185 1.1 christos *n_args = 3;
3186 1.1 christos break;
3187 1.1 christos }
3188 1.1 christos /* sys___mq_timedsend50 */
3189 1.1 christos case 432: {
3190 1.23 christos const struct sys___mq_timedsend50_args *p = params;
3191 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */
3192 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* const char * */
3193 1.1 christos uarg[2] = SCARG(p, msg_len); /* size_t */
3194 1.1 christos uarg[3] = SCARG(p, msg_prio); /* unsigned */
3195 1.1 christos uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct timespec * */
3196 1.1 christos *n_args = 5;
3197 1.1 christos break;
3198 1.1 christos }
3199 1.1 christos /* sys___mq_timedreceive50 */
3200 1.1 christos case 433: {
3201 1.23 christos const struct sys___mq_timedreceive50_args *p = params;
3202 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */
3203 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* char * */
3204 1.1 christos uarg[2] = SCARG(p, msg_len); /* size_t */
3205 1.1 christos uarg[3] = (intptr_t) SCARG(p, msg_prio); /* unsigned * */
3206 1.1 christos uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct timespec * */
3207 1.1 christos *n_args = 5;
3208 1.1 christos break;
3209 1.1 christos }
3210 1.1 christos /* sys__lwp_park */
3211 1.1 christos case 434: {
3212 1.23 christos const struct compat_60_sys__lwp_park_args *p = params;
3213 1.1 christos uarg[0] = (intptr_t) SCARG(p, ts); /* const struct timespec * */
3214 1.1 christos iarg[1] = SCARG(p, unpark); /* lwpid_t */
3215 1.1 christos uarg[2] = (intptr_t) SCARG(p, hint); /* const void * */
3216 1.1 christos uarg[3] = (intptr_t) SCARG(p, unparkhint); /* const void * */
3217 1.1 christos *n_args = 4;
3218 1.1 christos break;
3219 1.1 christos }
3220 1.1 christos /* sys___kevent50 */
3221 1.1 christos case 435: {
3222 1.23 christos const struct sys___kevent50_args *p = params;
3223 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3224 1.1 christos uarg[1] = (intptr_t) SCARG(p, changelist); /* const struct kevent * */
3225 1.1 christos uarg[2] = SCARG(p, nchanges); /* size_t */
3226 1.1 christos uarg[3] = (intptr_t) SCARG(p, eventlist); /* struct kevent * */
3227 1.1 christos uarg[4] = SCARG(p, nevents); /* size_t */
3228 1.1 christos uarg[5] = (intptr_t) SCARG(p, timeout); /* const struct timespec * */
3229 1.1 christos *n_args = 6;
3230 1.1 christos break;
3231 1.1 christos }
3232 1.1 christos /* sys___pselect50 */
3233 1.1 christos case 436: {
3234 1.23 christos const struct sys___pselect50_args *p = params;
3235 1.1 christos iarg[0] = SCARG(p, nd); /* int */
3236 1.1 christos uarg[1] = (intptr_t) SCARG(p, in); /* fd_set * */
3237 1.1 christos uarg[2] = (intptr_t) SCARG(p, ou); /* fd_set * */
3238 1.1 christos uarg[3] = (intptr_t) SCARG(p, ex); /* fd_set * */
3239 1.1 christos uarg[4] = (intptr_t) SCARG(p, ts); /* const struct timespec * */
3240 1.1 christos uarg[5] = (intptr_t) SCARG(p, mask); /* const sigset_t * */
3241 1.1 christos *n_args = 6;
3242 1.1 christos break;
3243 1.1 christos }
3244 1.1 christos /* sys___pollts50 */
3245 1.1 christos case 437: {
3246 1.23 christos const struct sys___pollts50_args *p = params;
3247 1.1 christos uarg[0] = (intptr_t) SCARG(p, fds); /* struct pollfd * */
3248 1.1 christos uarg[1] = SCARG(p, nfds); /* u_int */
3249 1.1 christos uarg[2] = (intptr_t) SCARG(p, ts); /* const struct timespec * */
3250 1.1 christos uarg[3] = (intptr_t) SCARG(p, mask); /* const sigset_t * */
3251 1.1 christos *n_args = 4;
3252 1.1 christos break;
3253 1.1 christos }
3254 1.1 christos /* sys___aio_suspend50 */
3255 1.1 christos case 438: {
3256 1.23 christos const struct sys___aio_suspend50_args *p = params;
3257 1.1 christos uarg[0] = (intptr_t) SCARG(p, list); /* const struct aiocb *const * */
3258 1.1 christos iarg[1] = SCARG(p, nent); /* int */
3259 1.1 christos uarg[2] = (intptr_t) SCARG(p, timeout); /* const struct timespec * */
3260 1.1 christos *n_args = 3;
3261 1.1 christos break;
3262 1.1 christos }
3263 1.1 christos /* sys___stat50 */
3264 1.1 christos case 439: {
3265 1.23 christos const struct sys___stat50_args *p = params;
3266 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3267 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat * */
3268 1.1 christos *n_args = 2;
3269 1.1 christos break;
3270 1.1 christos }
3271 1.1 christos /* sys___fstat50 */
3272 1.1 christos case 440: {
3273 1.23 christos const struct sys___fstat50_args *p = params;
3274 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3275 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat * */
3276 1.1 christos *n_args = 2;
3277 1.1 christos break;
3278 1.1 christos }
3279 1.1 christos /* sys___lstat50 */
3280 1.1 christos case 441: {
3281 1.23 christos const struct sys___lstat50_args *p = params;
3282 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3283 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat * */
3284 1.1 christos *n_args = 2;
3285 1.1 christos break;
3286 1.1 christos }
3287 1.1 christos /* sys_____semctl50 */
3288 1.1 christos case 442: {
3289 1.23 christos const struct sys_____semctl50_args *p = params;
3290 1.1 christos iarg[0] = SCARG(p, semid); /* int */
3291 1.1 christos iarg[1] = SCARG(p, semnum); /* int */
3292 1.1 christos iarg[2] = SCARG(p, cmd); /* int */
3293 1.1 christos uarg[3] = (intptr_t) SCARG(p, arg); /* union __semun * */
3294 1.1 christos *n_args = 4;
3295 1.1 christos break;
3296 1.1 christos }
3297 1.1 christos /* sys___shmctl50 */
3298 1.1 christos case 443: {
3299 1.23 christos const struct sys___shmctl50_args *p = params;
3300 1.1 christos iarg[0] = SCARG(p, shmid); /* int */
3301 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
3302 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct shmid_ds * */
3303 1.1 christos *n_args = 3;
3304 1.1 christos break;
3305 1.1 christos }
3306 1.1 christos /* sys___msgctl50 */
3307 1.1 christos case 444: {
3308 1.23 christos const struct sys___msgctl50_args *p = params;
3309 1.1 christos iarg[0] = SCARG(p, msqid); /* int */
3310 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
3311 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct msqid_ds * */
3312 1.1 christos *n_args = 3;
3313 1.1 christos break;
3314 1.1 christos }
3315 1.1 christos /* sys___getrusage50 */
3316 1.1 christos case 445: {
3317 1.23 christos const struct sys___getrusage50_args *p = params;
3318 1.1 christos iarg[0] = SCARG(p, who); /* int */
3319 1.1 christos uarg[1] = (intptr_t) SCARG(p, rusage); /* struct rusage * */
3320 1.1 christos *n_args = 2;
3321 1.1 christos break;
3322 1.1 christos }
3323 1.1 christos /* sys___timer_settime50 */
3324 1.1 christos case 446: {
3325 1.23 christos const struct sys___timer_settime50_args *p = params;
3326 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */
3327 1.1 christos iarg[1] = SCARG(p, flags); /* int */
3328 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* const struct itimerspec * */
3329 1.1 christos uarg[3] = (intptr_t) SCARG(p, ovalue); /* struct itimerspec * */
3330 1.1 christos *n_args = 4;
3331 1.1 christos break;
3332 1.1 christos }
3333 1.1 christos /* sys___timer_gettime50 */
3334 1.1 christos case 447: {
3335 1.23 christos const struct sys___timer_gettime50_args *p = params;
3336 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */
3337 1.1 christos uarg[1] = (intptr_t) SCARG(p, value); /* struct itimerspec * */
3338 1.1 christos *n_args = 2;
3339 1.1 christos break;
3340 1.1 christos }
3341 1.1 christos #if defined(NTP) || !defined(_KERNEL_OPT)
3342 1.1 christos /* sys___ntp_gettime50 */
3343 1.1 christos case 448: {
3344 1.23 christos const struct sys___ntp_gettime50_args *p = params;
3345 1.1 christos uarg[0] = (intptr_t) SCARG(p, ntvp); /* struct ntptimeval * */
3346 1.1 christos *n_args = 1;
3347 1.1 christos break;
3348 1.1 christos }
3349 1.1 christos #else
3350 1.1 christos #endif
3351 1.1 christos /* sys___wait450 */
3352 1.1 christos case 449: {
3353 1.23 christos const struct sys___wait450_args *p = params;
3354 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
3355 1.1 christos uarg[1] = (intptr_t) SCARG(p, status); /* int * */
3356 1.1 christos iarg[2] = SCARG(p, options); /* int */
3357 1.1 christos uarg[3] = (intptr_t) SCARG(p, rusage); /* struct rusage * */
3358 1.1 christos *n_args = 4;
3359 1.1 christos break;
3360 1.1 christos }
3361 1.1 christos /* sys___mknod50 */
3362 1.1 christos case 450: {
3363 1.23 christos const struct sys___mknod50_args *p = params;
3364 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3365 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */
3366 1.1 christos iarg[2] = SCARG(p, dev); /* dev_t */
3367 1.1 christos *n_args = 3;
3368 1.1 christos break;
3369 1.1 christos }
3370 1.1 christos /* sys___fhstat50 */
3371 1.1 christos case 451: {
3372 1.23 christos const struct sys___fhstat50_args *p = params;
3373 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */
3374 1.1 christos uarg[1] = SCARG(p, fh_size); /* size_t */
3375 1.1 christos uarg[2] = (intptr_t) SCARG(p, sb); /* struct stat * */
3376 1.1 christos *n_args = 3;
3377 1.1 christos break;
3378 1.1 christos }
3379 1.1 christos /* sys_pipe2 */
3380 1.1 christos case 453: {
3381 1.23 christos const struct sys_pipe2_args *p = params;
3382 1.1 christos uarg[0] = (intptr_t) SCARG(p, fildes); /* int * */
3383 1.1 christos iarg[1] = SCARG(p, flags); /* int */
3384 1.1 christos *n_args = 2;
3385 1.1 christos break;
3386 1.1 christos }
3387 1.1 christos /* sys_dup3 */
3388 1.1 christos case 454: {
3389 1.23 christos const struct sys_dup3_args *p = params;
3390 1.1 christos iarg[0] = SCARG(p, from); /* int */
3391 1.1 christos iarg[1] = SCARG(p, to); /* int */
3392 1.1 christos iarg[2] = SCARG(p, flags); /* int */
3393 1.1 christos *n_args = 3;
3394 1.1 christos break;
3395 1.1 christos }
3396 1.1 christos /* sys_kqueue1 */
3397 1.1 christos case 455: {
3398 1.23 christos const struct sys_kqueue1_args *p = params;
3399 1.1 christos iarg[0] = SCARG(p, flags); /* int */
3400 1.1 christos *n_args = 1;
3401 1.1 christos break;
3402 1.1 christos }
3403 1.1 christos /* sys_paccept */
3404 1.1 christos case 456: {
3405 1.23 christos const struct sys_paccept_args *p = params;
3406 1.1 christos iarg[0] = SCARG(p, s); /* int */
3407 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* struct sockaddr * */
3408 1.1 christos uarg[2] = (intptr_t) SCARG(p, anamelen); /* socklen_t * */
3409 1.1 christos uarg[3] = (intptr_t) SCARG(p, mask); /* const sigset_t * */
3410 1.1 christos iarg[4] = SCARG(p, flags); /* int */
3411 1.1 christos *n_args = 5;
3412 1.1 christos break;
3413 1.1 christos }
3414 1.1 christos /* sys_linkat */
3415 1.1 christos case 457: {
3416 1.23 christos const struct sys_linkat_args *p = params;
3417 1.1 christos iarg[0] = SCARG(p, fd1); /* int */
3418 1.1 christos uarg[1] = (intptr_t) SCARG(p, name1); /* const char * */
3419 1.1 christos iarg[2] = SCARG(p, fd2); /* int */
3420 1.1 christos uarg[3] = (intptr_t) SCARG(p, name2); /* const char * */
3421 1.1 christos iarg[4] = SCARG(p, flags); /* int */
3422 1.1 christos *n_args = 5;
3423 1.1 christos break;
3424 1.1 christos }
3425 1.1 christos /* sys_renameat */
3426 1.1 christos case 458: {
3427 1.23 christos const struct sys_renameat_args *p = params;
3428 1.1 christos iarg[0] = SCARG(p, fromfd); /* int */
3429 1.1 christos uarg[1] = (intptr_t) SCARG(p, from); /* const char * */
3430 1.1 christos iarg[2] = SCARG(p, tofd); /* int */
3431 1.1 christos uarg[3] = (intptr_t) SCARG(p, to); /* const char * */
3432 1.1 christos *n_args = 4;
3433 1.1 christos break;
3434 1.1 christos }
3435 1.1 christos /* sys_mkfifoat */
3436 1.1 christos case 459: {
3437 1.23 christos const struct sys_mkfifoat_args *p = params;
3438 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3439 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3440 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */
3441 1.1 christos *n_args = 3;
3442 1.1 christos break;
3443 1.1 christos }
3444 1.1 christos /* sys_mknodat */
3445 1.1 christos case 460: {
3446 1.23 christos const struct sys_mknodat_args *p = params;
3447 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3448 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3449 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */
3450 1.1 christos iarg[3] = SCARG(p, PAD); /* int */
3451 1.1 christos iarg[4] = SCARG(p, dev); /* dev_t */
3452 1.1 christos *n_args = 5;
3453 1.1 christos break;
3454 1.1 christos }
3455 1.1 christos /* sys_mkdirat */
3456 1.1 christos case 461: {
3457 1.23 christos const struct sys_mkdirat_args *p = params;
3458 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3459 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3460 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */
3461 1.1 christos *n_args = 3;
3462 1.1 christos break;
3463 1.1 christos }
3464 1.1 christos /* sys_faccessat */
3465 1.1 christos case 462: {
3466 1.23 christos const struct sys_faccessat_args *p = params;
3467 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3468 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3469 1.1 christos iarg[2] = SCARG(p, amode); /* int */
3470 1.1 christos iarg[3] = SCARG(p, flag); /* int */
3471 1.1 christos *n_args = 4;
3472 1.1 christos break;
3473 1.1 christos }
3474 1.1 christos /* sys_fchmodat */
3475 1.1 christos case 463: {
3476 1.23 christos const struct sys_fchmodat_args *p = params;
3477 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3478 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3479 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */
3480 1.1 christos iarg[3] = SCARG(p, flag); /* int */
3481 1.1 christos *n_args = 4;
3482 1.1 christos break;
3483 1.1 christos }
3484 1.1 christos /* sys_fchownat */
3485 1.1 christos case 464: {
3486 1.23 christos const struct sys_fchownat_args *p = params;
3487 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3488 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3489 1.1 christos uarg[2] = SCARG(p, owner); /* uid_t */
3490 1.1 christos iarg[3] = SCARG(p, group); /* gid_t */
3491 1.1 christos iarg[4] = SCARG(p, flag); /* int */
3492 1.1 christos *n_args = 5;
3493 1.1 christos break;
3494 1.1 christos }
3495 1.1 christos /* sys_fexecve */
3496 1.1 christos case 465: {
3497 1.23 christos const struct sys_fexecve_args *p = params;
3498 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3499 1.1 christos uarg[1] = (intptr_t) SCARG(p, argp); /* char *const * */
3500 1.1 christos uarg[2] = (intptr_t) SCARG(p, envp); /* char *const * */
3501 1.1 christos *n_args = 3;
3502 1.1 christos break;
3503 1.1 christos }
3504 1.1 christos /* sys_fstatat */
3505 1.1 christos case 466: {
3506 1.23 christos const struct sys_fstatat_args *p = params;
3507 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3508 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3509 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct stat * */
3510 1.1 christos iarg[3] = SCARG(p, flag); /* int */
3511 1.1 christos *n_args = 4;
3512 1.1 christos break;
3513 1.1 christos }
3514 1.1 christos /* sys_utimensat */
3515 1.1 christos case 467: {
3516 1.23 christos const struct sys_utimensat_args *p = params;
3517 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3518 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3519 1.1 christos uarg[2] = (intptr_t) SCARG(p, tptr); /* const struct timespec * */
3520 1.1 christos iarg[3] = SCARG(p, flag); /* int */
3521 1.1 christos *n_args = 4;
3522 1.1 christos break;
3523 1.1 christos }
3524 1.1 christos /* sys_openat */
3525 1.1 christos case 468: {
3526 1.23 christos const struct sys_openat_args *p = params;
3527 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3528 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3529 1.1 christos iarg[2] = SCARG(p, oflags); /* int */
3530 1.1 christos iarg[3] = SCARG(p, mode); /* mode_t */
3531 1.1 christos *n_args = 4;
3532 1.1 christos break;
3533 1.1 christos }
3534 1.1 christos /* sys_readlinkat */
3535 1.1 christos case 469: {
3536 1.23 christos const struct sys_readlinkat_args *p = params;
3537 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3538 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3539 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* char * */
3540 1.1 christos uarg[3] = SCARG(p, bufsize); /* size_t */
3541 1.1 christos *n_args = 4;
3542 1.1 christos break;
3543 1.1 christos }
3544 1.1 christos /* sys_symlinkat */
3545 1.1 christos case 470: {
3546 1.23 christos const struct sys_symlinkat_args *p = params;
3547 1.1 christos uarg[0] = (intptr_t) SCARG(p, path1); /* const char * */
3548 1.1 christos iarg[1] = SCARG(p, fd); /* int */
3549 1.1 christos uarg[2] = (intptr_t) SCARG(p, path2); /* const char * */
3550 1.1 christos *n_args = 3;
3551 1.1 christos break;
3552 1.1 christos }
3553 1.1 christos /* sys_unlinkat */
3554 1.1 christos case 471: {
3555 1.23 christos const struct sys_unlinkat_args *p = params;
3556 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3557 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3558 1.1 christos iarg[2] = SCARG(p, flag); /* int */
3559 1.1 christos *n_args = 3;
3560 1.1 christos break;
3561 1.1 christos }
3562 1.1 christos /* sys_futimens */
3563 1.1 christos case 472: {
3564 1.23 christos const struct sys_futimens_args *p = params;
3565 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3566 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timespec * */
3567 1.1 christos *n_args = 2;
3568 1.1 christos break;
3569 1.1 christos }
3570 1.1 christos /* sys___quotactl */
3571 1.1 christos case 473: {
3572 1.23 christos const struct sys___quotactl_args *p = params;
3573 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3574 1.1 christos uarg[1] = (intptr_t) SCARG(p, args); /* struct quotactl_args * */
3575 1.1 christos *n_args = 2;
3576 1.1 christos break;
3577 1.1 christos }
3578 1.1 christos /* sys_posix_spawn */
3579 1.1 christos case 474: {
3580 1.23 christos const struct sys_posix_spawn_args *p = params;
3581 1.1 christos uarg[0] = (intptr_t) SCARG(p, pid); /* pid_t * */
3582 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3583 1.1 christos uarg[2] = (intptr_t) SCARG(p, file_actions); /* const struct posix_spawn_file_actions * */
3584 1.1 christos uarg[3] = (intptr_t) SCARG(p, attrp); /* const struct posix_spawnattr * */
3585 1.1 christos uarg[4] = (intptr_t) SCARG(p, argv); /* char *const * */
3586 1.1 christos uarg[5] = (intptr_t) SCARG(p, envp); /* char *const * */
3587 1.1 christos *n_args = 6;
3588 1.1 christos break;
3589 1.1 christos }
3590 1.1 christos /* sys_recvmmsg */
3591 1.1 christos case 475: {
3592 1.23 christos const struct sys_recvmmsg_args *p = params;
3593 1.1 christos iarg[0] = SCARG(p, s); /* int */
3594 1.1 christos uarg[1] = (intptr_t) SCARG(p, mmsg); /* struct mmsghdr * */
3595 1.1 christos uarg[2] = SCARG(p, vlen); /* unsigned int */
3596 1.1 christos uarg[3] = SCARG(p, flags); /* unsigned int */
3597 1.1 christos uarg[4] = (intptr_t) SCARG(p, timeout); /* struct timespec * */
3598 1.1 christos *n_args = 5;
3599 1.1 christos break;
3600 1.1 christos }
3601 1.1 christos /* sys_sendmmsg */
3602 1.1 christos case 476: {
3603 1.23 christos const struct sys_sendmmsg_args *p = params;
3604 1.1 christos iarg[0] = SCARG(p, s); /* int */
3605 1.1 christos uarg[1] = (intptr_t) SCARG(p, mmsg); /* struct mmsghdr * */
3606 1.1 christos uarg[2] = SCARG(p, vlen); /* unsigned int */
3607 1.1 christos uarg[3] = SCARG(p, flags); /* unsigned int */
3608 1.1 christos *n_args = 4;
3609 1.1 christos break;
3610 1.1 christos }
3611 1.1 christos /* sys_clock_nanosleep */
3612 1.1 christos case 477: {
3613 1.23 christos const struct sys_clock_nanosleep_args *p = params;
3614 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */
3615 1.1 christos iarg[1] = SCARG(p, flags); /* int */
3616 1.1 christos uarg[2] = (intptr_t) SCARG(p, rqtp); /* const struct timespec * */
3617 1.1 christos uarg[3] = (intptr_t) SCARG(p, rmtp); /* struct timespec * */
3618 1.1 christos *n_args = 4;
3619 1.1 christos break;
3620 1.1 christos }
3621 1.1 christos /* sys____lwp_park60 */
3622 1.1 christos case 478: {
3623 1.23 christos const struct sys____lwp_park60_args *p = params;
3624 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */
3625 1.1 christos iarg[1] = SCARG(p, flags); /* int */
3626 1.26 kamil uarg[2] = (intptr_t) SCARG(p, ts); /* struct timespec * */
3627 1.1 christos iarg[3] = SCARG(p, unpark); /* lwpid_t */
3628 1.1 christos uarg[4] = (intptr_t) SCARG(p, hint); /* const void * */
3629 1.1 christos uarg[5] = (intptr_t) SCARG(p, unparkhint); /* const void * */
3630 1.1 christos *n_args = 6;
3631 1.1 christos break;
3632 1.1 christos }
3633 1.1 christos /* sys_posix_fallocate */
3634 1.1 christos case 479: {
3635 1.23 christos const struct sys_posix_fallocate_args *p = params;
3636 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3637 1.1 christos iarg[1] = SCARG(p, PAD); /* int */
3638 1.1 christos iarg[2] = SCARG(p, pos); /* off_t */
3639 1.1 christos iarg[3] = SCARG(p, len); /* off_t */
3640 1.1 christos *n_args = 4;
3641 1.1 christos break;
3642 1.1 christos }
3643 1.1 christos /* sys_fdiscard */
3644 1.1 christos case 480: {
3645 1.23 christos const struct sys_fdiscard_args *p = params;
3646 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3647 1.1 christos iarg[1] = SCARG(p, PAD); /* int */
3648 1.1 christos iarg[2] = SCARG(p, pos); /* off_t */
3649 1.1 christos iarg[3] = SCARG(p, len); /* off_t */
3650 1.1 christos *n_args = 4;
3651 1.1 christos break;
3652 1.1 christos }
3653 1.16 christos /* sys_wait6 */
3654 1.16 christos case 481: {
3655 1.23 christos const struct sys_wait6_args *p = params;
3656 1.16 christos iarg[0] = SCARG(p, idtype); /* idtype_t */
3657 1.16 christos iarg[1] = SCARG(p, id); /* id_t */
3658 1.16 christos uarg[2] = (intptr_t) SCARG(p, status); /* int * */
3659 1.16 christos iarg[3] = SCARG(p, options); /* int */
3660 1.16 christos uarg[4] = (intptr_t) SCARG(p, wru); /* struct wrusage * */
3661 1.16 christos uarg[5] = (intptr_t) SCARG(p, info); /* siginfo_t * */
3662 1.16 christos *n_args = 6;
3663 1.16 christos break;
3664 1.16 christos }
3665 1.19 christos /* sys_clock_getcpuclockid2 */
3666 1.19 christos case 482: {
3667 1.23 christos const struct sys_clock_getcpuclockid2_args *p = params;
3668 1.19 christos iarg[0] = SCARG(p, idtype); /* idtype_t */
3669 1.19 christos iarg[1] = SCARG(p, id); /* id_t */
3670 1.19 christos uarg[2] = (intptr_t) SCARG(p, clock_id); /* clockid_t * */
3671 1.19 christos *n_args = 3;
3672 1.19 christos break;
3673 1.19 christos }
3674 1.1 christos default:
3675 1.1 christos *n_args = 0;
3676 1.1 christos break;
3677 1.1 christos };
3678 1.1 christos }
3679 1.12 pgoyette static void
3680 1.12 pgoyette systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
3681 1.12 pgoyette {
3682 1.12 pgoyette const char *p = NULL;
3683 1.12 pgoyette switch (sysnum) {
3684 1.12 pgoyette /* sys_syscall */
3685 1.12 pgoyette case 0:
3686 1.12 pgoyette switch(ndx) {
3687 1.12 pgoyette case 0:
3688 1.12 pgoyette p = "int";
3689 1.12 pgoyette break;
3690 1.12 pgoyette case 1:
3691 1.12 pgoyette p = "register_t";
3692 1.12 pgoyette break;
3693 1.12 pgoyette default:
3694 1.12 pgoyette break;
3695 1.12 pgoyette };
3696 1.12 pgoyette break;
3697 1.12 pgoyette /* sys_exit */
3698 1.12 pgoyette case 1:
3699 1.12 pgoyette switch(ndx) {
3700 1.12 pgoyette case 0:
3701 1.12 pgoyette p = "int";
3702 1.12 pgoyette break;
3703 1.12 pgoyette default:
3704 1.12 pgoyette break;
3705 1.12 pgoyette };
3706 1.12 pgoyette break;
3707 1.12 pgoyette /* sys_fork */
3708 1.12 pgoyette case 2:
3709 1.12 pgoyette break;
3710 1.12 pgoyette /* sys_read */
3711 1.12 pgoyette case 3:
3712 1.12 pgoyette switch(ndx) {
3713 1.12 pgoyette case 0:
3714 1.12 pgoyette p = "int";
3715 1.12 pgoyette break;
3716 1.12 pgoyette case 1:
3717 1.12 pgoyette p = "void *";
3718 1.12 pgoyette break;
3719 1.12 pgoyette case 2:
3720 1.12 pgoyette p = "size_t";
3721 1.12 pgoyette break;
3722 1.12 pgoyette default:
3723 1.12 pgoyette break;
3724 1.12 pgoyette };
3725 1.12 pgoyette break;
3726 1.12 pgoyette /* sys_write */
3727 1.12 pgoyette case 4:
3728 1.12 pgoyette switch(ndx) {
3729 1.12 pgoyette case 0:
3730 1.12 pgoyette p = "int";
3731 1.12 pgoyette break;
3732 1.12 pgoyette case 1:
3733 1.12 pgoyette p = "const void *";
3734 1.12 pgoyette break;
3735 1.12 pgoyette case 2:
3736 1.12 pgoyette p = "size_t";
3737 1.12 pgoyette break;
3738 1.12 pgoyette default:
3739 1.12 pgoyette break;
3740 1.12 pgoyette };
3741 1.12 pgoyette break;
3742 1.12 pgoyette /* sys_open */
3743 1.12 pgoyette case 5:
3744 1.12 pgoyette switch(ndx) {
3745 1.12 pgoyette case 0:
3746 1.12 pgoyette p = "const char *";
3747 1.12 pgoyette break;
3748 1.12 pgoyette case 1:
3749 1.12 pgoyette p = "int";
3750 1.12 pgoyette break;
3751 1.12 pgoyette case 2:
3752 1.12 pgoyette p = "mode_t";
3753 1.12 pgoyette break;
3754 1.12 pgoyette default:
3755 1.12 pgoyette break;
3756 1.12 pgoyette };
3757 1.12 pgoyette break;
3758 1.12 pgoyette /* sys_close */
3759 1.12 pgoyette case 6:
3760 1.12 pgoyette switch(ndx) {
3761 1.12 pgoyette case 0:
3762 1.12 pgoyette p = "int";
3763 1.12 pgoyette break;
3764 1.12 pgoyette default:
3765 1.12 pgoyette break;
3766 1.12 pgoyette };
3767 1.12 pgoyette break;
3768 1.12 pgoyette /* sys_wait4 */
3769 1.12 pgoyette case 7:
3770 1.12 pgoyette switch(ndx) {
3771 1.12 pgoyette case 0:
3772 1.12 pgoyette p = "pid_t";
3773 1.12 pgoyette break;
3774 1.12 pgoyette case 1:
3775 1.12 pgoyette p = "int *";
3776 1.12 pgoyette break;
3777 1.12 pgoyette case 2:
3778 1.12 pgoyette p = "int";
3779 1.12 pgoyette break;
3780 1.12 pgoyette case 3:
3781 1.12 pgoyette p = "struct rusage50 *";
3782 1.12 pgoyette break;
3783 1.12 pgoyette default:
3784 1.12 pgoyette break;
3785 1.12 pgoyette };
3786 1.12 pgoyette break;
3787 1.12 pgoyette /* sys_creat */
3788 1.12 pgoyette case 8:
3789 1.12 pgoyette switch(ndx) {
3790 1.12 pgoyette case 0:
3791 1.12 pgoyette p = "const char *";
3792 1.12 pgoyette break;
3793 1.12 pgoyette case 1:
3794 1.12 pgoyette p = "mode_t";
3795 1.12 pgoyette break;
3796 1.12 pgoyette default:
3797 1.12 pgoyette break;
3798 1.12 pgoyette };
3799 1.12 pgoyette break;
3800 1.12 pgoyette /* sys_link */
3801 1.12 pgoyette case 9:
3802 1.12 pgoyette switch(ndx) {
3803 1.12 pgoyette case 0:
3804 1.12 pgoyette p = "const char *";
3805 1.12 pgoyette break;
3806 1.12 pgoyette case 1:
3807 1.12 pgoyette p = "const char *";
3808 1.12 pgoyette break;
3809 1.12 pgoyette default:
3810 1.12 pgoyette break;
3811 1.12 pgoyette };
3812 1.12 pgoyette break;
3813 1.12 pgoyette /* sys_unlink */
3814 1.12 pgoyette case 10:
3815 1.12 pgoyette switch(ndx) {
3816 1.12 pgoyette case 0:
3817 1.12 pgoyette p = "const char *";
3818 1.12 pgoyette break;
3819 1.12 pgoyette default:
3820 1.12 pgoyette break;
3821 1.12 pgoyette };
3822 1.12 pgoyette break;
3823 1.12 pgoyette /* sys_chdir */
3824 1.12 pgoyette case 12:
3825 1.12 pgoyette switch(ndx) {
3826 1.12 pgoyette case 0:
3827 1.12 pgoyette p = "const char *";
3828 1.12 pgoyette break;
3829 1.12 pgoyette default:
3830 1.12 pgoyette break;
3831 1.12 pgoyette };
3832 1.12 pgoyette break;
3833 1.12 pgoyette /* sys_fchdir */
3834 1.12 pgoyette case 13:
3835 1.12 pgoyette switch(ndx) {
3836 1.12 pgoyette case 0:
3837 1.12 pgoyette p = "int";
3838 1.12 pgoyette break;
3839 1.12 pgoyette default:
3840 1.12 pgoyette break;
3841 1.12 pgoyette };
3842 1.12 pgoyette break;
3843 1.12 pgoyette /* sys_mknod */
3844 1.12 pgoyette case 14:
3845 1.12 pgoyette switch(ndx) {
3846 1.12 pgoyette case 0:
3847 1.12 pgoyette p = "const char *";
3848 1.12 pgoyette break;
3849 1.12 pgoyette case 1:
3850 1.12 pgoyette p = "mode_t";
3851 1.12 pgoyette break;
3852 1.12 pgoyette case 2:
3853 1.12 pgoyette p = "uint32_t";
3854 1.12 pgoyette break;
3855 1.12 pgoyette default:
3856 1.12 pgoyette break;
3857 1.12 pgoyette };
3858 1.12 pgoyette break;
3859 1.12 pgoyette /* sys_chmod */
3860 1.12 pgoyette case 15:
3861 1.12 pgoyette switch(ndx) {
3862 1.12 pgoyette case 0:
3863 1.12 pgoyette p = "const char *";
3864 1.12 pgoyette break;
3865 1.12 pgoyette case 1:
3866 1.12 pgoyette p = "mode_t";
3867 1.12 pgoyette break;
3868 1.12 pgoyette default:
3869 1.12 pgoyette break;
3870 1.12 pgoyette };
3871 1.12 pgoyette break;
3872 1.12 pgoyette /* sys_chown */
3873 1.12 pgoyette case 16:
3874 1.12 pgoyette switch(ndx) {
3875 1.12 pgoyette case 0:
3876 1.12 pgoyette p = "const char *";
3877 1.12 pgoyette break;
3878 1.12 pgoyette case 1:
3879 1.12 pgoyette p = "uid_t";
3880 1.12 pgoyette break;
3881 1.12 pgoyette case 2:
3882 1.12 pgoyette p = "gid_t";
3883 1.12 pgoyette break;
3884 1.12 pgoyette default:
3885 1.12 pgoyette break;
3886 1.12 pgoyette };
3887 1.12 pgoyette break;
3888 1.12 pgoyette /* sys_obreak */
3889 1.12 pgoyette case 17:
3890 1.12 pgoyette switch(ndx) {
3891 1.12 pgoyette case 0:
3892 1.12 pgoyette p = "char *";
3893 1.12 pgoyette break;
3894 1.12 pgoyette default:
3895 1.12 pgoyette break;
3896 1.12 pgoyette };
3897 1.12 pgoyette break;
3898 1.12 pgoyette /* sys_getfsstat */
3899 1.12 pgoyette case 18:
3900 1.12 pgoyette switch(ndx) {
3901 1.12 pgoyette case 0:
3902 1.12 pgoyette p = "struct statfs12 *";
3903 1.12 pgoyette break;
3904 1.12 pgoyette case 1:
3905 1.12 pgoyette p = "long";
3906 1.12 pgoyette break;
3907 1.12 pgoyette case 2:
3908 1.12 pgoyette p = "int";
3909 1.12 pgoyette break;
3910 1.12 pgoyette default:
3911 1.12 pgoyette break;
3912 1.12 pgoyette };
3913 1.12 pgoyette break;
3914 1.12 pgoyette /* sys_lseek */
3915 1.12 pgoyette case 19:
3916 1.12 pgoyette switch(ndx) {
3917 1.12 pgoyette case 0:
3918 1.12 pgoyette p = "int";
3919 1.12 pgoyette break;
3920 1.12 pgoyette case 1:
3921 1.12 pgoyette p = "long";
3922 1.12 pgoyette break;
3923 1.12 pgoyette case 2:
3924 1.12 pgoyette p = "int";
3925 1.12 pgoyette break;
3926 1.12 pgoyette default:
3927 1.12 pgoyette break;
3928 1.12 pgoyette };
3929 1.12 pgoyette break;
3930 1.12 pgoyette /* sys_getpid_with_ppid */
3931 1.12 pgoyette case 20:
3932 1.12 pgoyette break;
3933 1.12 pgoyette /* sys_mount */
3934 1.12 pgoyette case 21:
3935 1.12 pgoyette switch(ndx) {
3936 1.12 pgoyette case 0:
3937 1.12 pgoyette p = "const char *";
3938 1.12 pgoyette break;
3939 1.12 pgoyette case 1:
3940 1.12 pgoyette p = "const char *";
3941 1.12 pgoyette break;
3942 1.12 pgoyette case 2:
3943 1.12 pgoyette p = "int";
3944 1.12 pgoyette break;
3945 1.12 pgoyette case 3:
3946 1.12 pgoyette p = "void *";
3947 1.12 pgoyette break;
3948 1.12 pgoyette default:
3949 1.12 pgoyette break;
3950 1.12 pgoyette };
3951 1.12 pgoyette break;
3952 1.12 pgoyette /* sys_unmount */
3953 1.12 pgoyette case 22:
3954 1.12 pgoyette switch(ndx) {
3955 1.12 pgoyette case 0:
3956 1.12 pgoyette p = "const char *";
3957 1.12 pgoyette break;
3958 1.12 pgoyette case 1:
3959 1.12 pgoyette p = "int";
3960 1.12 pgoyette break;
3961 1.12 pgoyette default:
3962 1.12 pgoyette break;
3963 1.12 pgoyette };
3964 1.12 pgoyette break;
3965 1.12 pgoyette /* sys_setuid */
3966 1.12 pgoyette case 23:
3967 1.12 pgoyette switch(ndx) {
3968 1.12 pgoyette case 0:
3969 1.12 pgoyette p = "uid_t";
3970 1.12 pgoyette break;
3971 1.12 pgoyette default:
3972 1.12 pgoyette break;
3973 1.12 pgoyette };
3974 1.12 pgoyette break;
3975 1.12 pgoyette /* sys_getuid_with_euid */
3976 1.12 pgoyette case 24:
3977 1.12 pgoyette break;
3978 1.12 pgoyette /* sys_geteuid */
3979 1.12 pgoyette case 25:
3980 1.12 pgoyette break;
3981 1.12 pgoyette /* sys_ptrace */
3982 1.12 pgoyette case 26:
3983 1.12 pgoyette switch(ndx) {
3984 1.12 pgoyette case 0:
3985 1.12 pgoyette p = "int";
3986 1.12 pgoyette break;
3987 1.12 pgoyette case 1:
3988 1.12 pgoyette p = "pid_t";
3989 1.12 pgoyette break;
3990 1.12 pgoyette case 2:
3991 1.12 pgoyette p = "void *";
3992 1.12 pgoyette break;
3993 1.12 pgoyette case 3:
3994 1.12 pgoyette p = "int";
3995 1.12 pgoyette break;
3996 1.12 pgoyette default:
3997 1.12 pgoyette break;
3998 1.12 pgoyette };
3999 1.12 pgoyette break;
4000 1.12 pgoyette /* sys_recvmsg */
4001 1.12 pgoyette case 27:
4002 1.12 pgoyette switch(ndx) {
4003 1.12 pgoyette case 0:
4004 1.12 pgoyette p = "int";
4005 1.12 pgoyette break;
4006 1.12 pgoyette case 1:
4007 1.12 pgoyette p = "struct msghdr *";
4008 1.12 pgoyette break;
4009 1.12 pgoyette case 2:
4010 1.12 pgoyette p = "int";
4011 1.12 pgoyette break;
4012 1.12 pgoyette default:
4013 1.12 pgoyette break;
4014 1.12 pgoyette };
4015 1.12 pgoyette break;
4016 1.12 pgoyette /* sys_sendmsg */
4017 1.12 pgoyette case 28:
4018 1.12 pgoyette switch(ndx) {
4019 1.12 pgoyette case 0:
4020 1.12 pgoyette p = "int";
4021 1.12 pgoyette break;
4022 1.12 pgoyette case 1:
4023 1.12 pgoyette p = "const struct msghdr *";
4024 1.12 pgoyette break;
4025 1.12 pgoyette case 2:
4026 1.12 pgoyette p = "int";
4027 1.12 pgoyette break;
4028 1.12 pgoyette default:
4029 1.12 pgoyette break;
4030 1.12 pgoyette };
4031 1.12 pgoyette break;
4032 1.12 pgoyette /* sys_recvfrom */
4033 1.12 pgoyette case 29:
4034 1.12 pgoyette switch(ndx) {
4035 1.12 pgoyette case 0:
4036 1.12 pgoyette p = "int";
4037 1.12 pgoyette break;
4038 1.12 pgoyette case 1:
4039 1.12 pgoyette p = "void *";
4040 1.12 pgoyette break;
4041 1.12 pgoyette case 2:
4042 1.12 pgoyette p = "size_t";
4043 1.12 pgoyette break;
4044 1.12 pgoyette case 3:
4045 1.12 pgoyette p = "int";
4046 1.12 pgoyette break;
4047 1.12 pgoyette case 4:
4048 1.12 pgoyette p = "struct sockaddr *";
4049 1.12 pgoyette break;
4050 1.12 pgoyette case 5:
4051 1.12 pgoyette p = "socklen_t *";
4052 1.12 pgoyette break;
4053 1.12 pgoyette default:
4054 1.12 pgoyette break;
4055 1.12 pgoyette };
4056 1.12 pgoyette break;
4057 1.12 pgoyette /* sys_accept */
4058 1.12 pgoyette case 30:
4059 1.12 pgoyette switch(ndx) {
4060 1.12 pgoyette case 0:
4061 1.12 pgoyette p = "int";
4062 1.12 pgoyette break;
4063 1.12 pgoyette case 1:
4064 1.12 pgoyette p = "struct sockaddr *";
4065 1.12 pgoyette break;
4066 1.12 pgoyette case 2:
4067 1.12 pgoyette p = "socklen_t *";
4068 1.12 pgoyette break;
4069 1.12 pgoyette default:
4070 1.12 pgoyette break;
4071 1.12 pgoyette };
4072 1.12 pgoyette break;
4073 1.12 pgoyette /* sys_getpeername */
4074 1.12 pgoyette case 31:
4075 1.12 pgoyette switch(ndx) {
4076 1.12 pgoyette case 0:
4077 1.12 pgoyette p = "int";
4078 1.12 pgoyette break;
4079 1.12 pgoyette case 1:
4080 1.12 pgoyette p = "struct sockaddr *";
4081 1.12 pgoyette break;
4082 1.12 pgoyette case 2:
4083 1.12 pgoyette p = "socklen_t *";
4084 1.12 pgoyette break;
4085 1.12 pgoyette default:
4086 1.12 pgoyette break;
4087 1.12 pgoyette };
4088 1.12 pgoyette break;
4089 1.12 pgoyette /* sys_getsockname */
4090 1.12 pgoyette case 32:
4091 1.12 pgoyette switch(ndx) {
4092 1.12 pgoyette case 0:
4093 1.12 pgoyette p = "int";
4094 1.12 pgoyette break;
4095 1.12 pgoyette case 1:
4096 1.12 pgoyette p = "struct sockaddr *";
4097 1.12 pgoyette break;
4098 1.12 pgoyette case 2:
4099 1.12 pgoyette p = "socklen_t *";
4100 1.12 pgoyette break;
4101 1.12 pgoyette default:
4102 1.12 pgoyette break;
4103 1.12 pgoyette };
4104 1.12 pgoyette break;
4105 1.12 pgoyette /* sys_access */
4106 1.12 pgoyette case 33:
4107 1.12 pgoyette switch(ndx) {
4108 1.12 pgoyette case 0:
4109 1.12 pgoyette p = "const char *";
4110 1.12 pgoyette break;
4111 1.12 pgoyette case 1:
4112 1.12 pgoyette p = "int";
4113 1.12 pgoyette break;
4114 1.12 pgoyette default:
4115 1.12 pgoyette break;
4116 1.12 pgoyette };
4117 1.12 pgoyette break;
4118 1.12 pgoyette /* sys_chflags */
4119 1.12 pgoyette case 34:
4120 1.12 pgoyette switch(ndx) {
4121 1.12 pgoyette case 0:
4122 1.12 pgoyette p = "const char *";
4123 1.12 pgoyette break;
4124 1.12 pgoyette case 1:
4125 1.12 pgoyette p = "u_long";
4126 1.12 pgoyette break;
4127 1.12 pgoyette default:
4128 1.12 pgoyette break;
4129 1.12 pgoyette };
4130 1.12 pgoyette break;
4131 1.12 pgoyette /* sys_fchflags */
4132 1.12 pgoyette case 35:
4133 1.12 pgoyette switch(ndx) {
4134 1.12 pgoyette case 0:
4135 1.12 pgoyette p = "int";
4136 1.12 pgoyette break;
4137 1.12 pgoyette case 1:
4138 1.12 pgoyette p = "u_long";
4139 1.12 pgoyette break;
4140 1.12 pgoyette default:
4141 1.12 pgoyette break;
4142 1.12 pgoyette };
4143 1.12 pgoyette break;
4144 1.12 pgoyette /* sys_sync */
4145 1.12 pgoyette case 36:
4146 1.12 pgoyette break;
4147 1.12 pgoyette /* sys_kill */
4148 1.12 pgoyette case 37:
4149 1.12 pgoyette switch(ndx) {
4150 1.12 pgoyette case 0:
4151 1.12 pgoyette p = "pid_t";
4152 1.12 pgoyette break;
4153 1.12 pgoyette case 1:
4154 1.12 pgoyette p = "int";
4155 1.12 pgoyette break;
4156 1.12 pgoyette default:
4157 1.12 pgoyette break;
4158 1.12 pgoyette };
4159 1.12 pgoyette break;
4160 1.12 pgoyette /* sys_stat */
4161 1.12 pgoyette case 38:
4162 1.12 pgoyette switch(ndx) {
4163 1.12 pgoyette case 0:
4164 1.12 pgoyette p = "const char *";
4165 1.12 pgoyette break;
4166 1.12 pgoyette case 1:
4167 1.12 pgoyette p = "struct stat43 *";
4168 1.12 pgoyette break;
4169 1.12 pgoyette default:
4170 1.12 pgoyette break;
4171 1.12 pgoyette };
4172 1.12 pgoyette break;
4173 1.12 pgoyette /* sys_getppid */
4174 1.12 pgoyette case 39:
4175 1.12 pgoyette break;
4176 1.12 pgoyette /* sys_lstat */
4177 1.12 pgoyette case 40:
4178 1.12 pgoyette switch(ndx) {
4179 1.12 pgoyette case 0:
4180 1.12 pgoyette p = "const char *";
4181 1.12 pgoyette break;
4182 1.12 pgoyette case 1:
4183 1.12 pgoyette p = "struct stat43 *";
4184 1.12 pgoyette break;
4185 1.12 pgoyette default:
4186 1.12 pgoyette break;
4187 1.12 pgoyette };
4188 1.12 pgoyette break;
4189 1.12 pgoyette /* sys_dup */
4190 1.12 pgoyette case 41:
4191 1.12 pgoyette switch(ndx) {
4192 1.12 pgoyette case 0:
4193 1.12 pgoyette p = "int";
4194 1.12 pgoyette break;
4195 1.12 pgoyette default:
4196 1.12 pgoyette break;
4197 1.12 pgoyette };
4198 1.12 pgoyette break;
4199 1.12 pgoyette /* sys_pipe */
4200 1.12 pgoyette case 42:
4201 1.12 pgoyette break;
4202 1.12 pgoyette /* sys_getegid */
4203 1.12 pgoyette case 43:
4204 1.12 pgoyette break;
4205 1.12 pgoyette /* sys_profil */
4206 1.12 pgoyette case 44:
4207 1.12 pgoyette switch(ndx) {
4208 1.12 pgoyette case 0:
4209 1.12 pgoyette p = "char *";
4210 1.12 pgoyette break;
4211 1.12 pgoyette case 1:
4212 1.12 pgoyette p = "size_t";
4213 1.12 pgoyette break;
4214 1.12 pgoyette case 2:
4215 1.12 pgoyette p = "u_long";
4216 1.12 pgoyette break;
4217 1.12 pgoyette case 3:
4218 1.12 pgoyette p = "u_int";
4219 1.12 pgoyette break;
4220 1.12 pgoyette default:
4221 1.12 pgoyette break;
4222 1.12 pgoyette };
4223 1.12 pgoyette break;
4224 1.12 pgoyette /* sys_ktrace */
4225 1.12 pgoyette case 45:
4226 1.12 pgoyette switch(ndx) {
4227 1.12 pgoyette case 0:
4228 1.12 pgoyette p = "const char *";
4229 1.12 pgoyette break;
4230 1.12 pgoyette case 1:
4231 1.12 pgoyette p = "int";
4232 1.12 pgoyette break;
4233 1.12 pgoyette case 2:
4234 1.12 pgoyette p = "int";
4235 1.12 pgoyette break;
4236 1.12 pgoyette case 3:
4237 1.12 pgoyette p = "pid_t";
4238 1.12 pgoyette break;
4239 1.12 pgoyette default:
4240 1.12 pgoyette break;
4241 1.12 pgoyette };
4242 1.12 pgoyette break;
4243 1.12 pgoyette /* sys_sigaction */
4244 1.12 pgoyette case 46:
4245 1.12 pgoyette switch(ndx) {
4246 1.12 pgoyette case 0:
4247 1.12 pgoyette p = "int";
4248 1.12 pgoyette break;
4249 1.12 pgoyette case 1:
4250 1.12 pgoyette p = "const struct sigaction13 *";
4251 1.12 pgoyette break;
4252 1.12 pgoyette case 2:
4253 1.12 pgoyette p = "struct sigaction13 *";
4254 1.12 pgoyette break;
4255 1.12 pgoyette default:
4256 1.12 pgoyette break;
4257 1.12 pgoyette };
4258 1.12 pgoyette break;
4259 1.12 pgoyette /* sys_getgid_with_egid */
4260 1.12 pgoyette case 47:
4261 1.12 pgoyette break;
4262 1.12 pgoyette /* sys_sigprocmask */
4263 1.12 pgoyette case 48:
4264 1.12 pgoyette switch(ndx) {
4265 1.12 pgoyette case 0:
4266 1.12 pgoyette p = "int";
4267 1.12 pgoyette break;
4268 1.12 pgoyette case 1:
4269 1.12 pgoyette p = "int";
4270 1.12 pgoyette break;
4271 1.12 pgoyette default:
4272 1.12 pgoyette break;
4273 1.12 pgoyette };
4274 1.12 pgoyette break;
4275 1.12 pgoyette /* sys___getlogin */
4276 1.12 pgoyette case 49:
4277 1.12 pgoyette switch(ndx) {
4278 1.12 pgoyette case 0:
4279 1.12 pgoyette p = "char *";
4280 1.12 pgoyette break;
4281 1.12 pgoyette case 1:
4282 1.12 pgoyette p = "size_t";
4283 1.12 pgoyette break;
4284 1.12 pgoyette default:
4285 1.12 pgoyette break;
4286 1.12 pgoyette };
4287 1.12 pgoyette break;
4288 1.12 pgoyette /* sys___setlogin */
4289 1.12 pgoyette case 50:
4290 1.12 pgoyette switch(ndx) {
4291 1.12 pgoyette case 0:
4292 1.12 pgoyette p = "const char *";
4293 1.12 pgoyette break;
4294 1.12 pgoyette default:
4295 1.12 pgoyette break;
4296 1.12 pgoyette };
4297 1.12 pgoyette break;
4298 1.12 pgoyette /* sys_acct */
4299 1.12 pgoyette case 51:
4300 1.12 pgoyette switch(ndx) {
4301 1.12 pgoyette case 0:
4302 1.12 pgoyette p = "const char *";
4303 1.12 pgoyette break;
4304 1.12 pgoyette default:
4305 1.12 pgoyette break;
4306 1.12 pgoyette };
4307 1.12 pgoyette break;
4308 1.12 pgoyette /* sys_sigpending */
4309 1.12 pgoyette case 52:
4310 1.12 pgoyette break;
4311 1.12 pgoyette /* sys_sigaltstack */
4312 1.12 pgoyette case 53:
4313 1.12 pgoyette switch(ndx) {
4314 1.12 pgoyette case 0:
4315 1.12 pgoyette p = "const struct sigaltstack13 *";
4316 1.12 pgoyette break;
4317 1.12 pgoyette case 1:
4318 1.12 pgoyette p = "struct sigaltstack13 *";
4319 1.12 pgoyette break;
4320 1.12 pgoyette default:
4321 1.12 pgoyette break;
4322 1.12 pgoyette };
4323 1.12 pgoyette break;
4324 1.12 pgoyette /* sys_ioctl */
4325 1.12 pgoyette case 54:
4326 1.12 pgoyette switch(ndx) {
4327 1.12 pgoyette case 0:
4328 1.12 pgoyette p = "int";
4329 1.12 pgoyette break;
4330 1.12 pgoyette case 1:
4331 1.12 pgoyette p = "u_long";
4332 1.12 pgoyette break;
4333 1.12 pgoyette case 2:
4334 1.12 pgoyette p = "void *";
4335 1.12 pgoyette break;
4336 1.12 pgoyette default:
4337 1.12 pgoyette break;
4338 1.12 pgoyette };
4339 1.12 pgoyette break;
4340 1.12 pgoyette /* sys_reboot */
4341 1.12 pgoyette case 55:
4342 1.12 pgoyette switch(ndx) {
4343 1.12 pgoyette case 0:
4344 1.12 pgoyette p = "int";
4345 1.12 pgoyette break;
4346 1.12 pgoyette default:
4347 1.12 pgoyette break;
4348 1.12 pgoyette };
4349 1.12 pgoyette break;
4350 1.12 pgoyette /* sys_revoke */
4351 1.12 pgoyette case 56:
4352 1.12 pgoyette switch(ndx) {
4353 1.12 pgoyette case 0:
4354 1.12 pgoyette p = "const char *";
4355 1.12 pgoyette break;
4356 1.12 pgoyette default:
4357 1.12 pgoyette break;
4358 1.12 pgoyette };
4359 1.12 pgoyette break;
4360 1.12 pgoyette /* sys_symlink */
4361 1.12 pgoyette case 57:
4362 1.12 pgoyette switch(ndx) {
4363 1.12 pgoyette case 0:
4364 1.12 pgoyette p = "const char *";
4365 1.12 pgoyette break;
4366 1.12 pgoyette case 1:
4367 1.12 pgoyette p = "const char *";
4368 1.12 pgoyette break;
4369 1.12 pgoyette default:
4370 1.12 pgoyette break;
4371 1.12 pgoyette };
4372 1.12 pgoyette break;
4373 1.12 pgoyette /* sys_readlink */
4374 1.12 pgoyette case 58:
4375 1.12 pgoyette switch(ndx) {
4376 1.12 pgoyette case 0:
4377 1.12 pgoyette p = "const char *";
4378 1.12 pgoyette break;
4379 1.12 pgoyette case 1:
4380 1.12 pgoyette p = "char *";
4381 1.12 pgoyette break;
4382 1.12 pgoyette case 2:
4383 1.12 pgoyette p = "size_t";
4384 1.12 pgoyette break;
4385 1.12 pgoyette default:
4386 1.12 pgoyette break;
4387 1.12 pgoyette };
4388 1.12 pgoyette break;
4389 1.12 pgoyette /* sys_execve */
4390 1.12 pgoyette case 59:
4391 1.12 pgoyette switch(ndx) {
4392 1.12 pgoyette case 0:
4393 1.12 pgoyette p = "const char *";
4394 1.12 pgoyette break;
4395 1.12 pgoyette case 1:
4396 1.12 pgoyette p = "char *const *";
4397 1.12 pgoyette break;
4398 1.12 pgoyette case 2:
4399 1.12 pgoyette p = "char *const *";
4400 1.12 pgoyette break;
4401 1.12 pgoyette default:
4402 1.12 pgoyette break;
4403 1.12 pgoyette };
4404 1.12 pgoyette break;
4405 1.12 pgoyette /* sys_umask */
4406 1.12 pgoyette case 60:
4407 1.12 pgoyette switch(ndx) {
4408 1.12 pgoyette case 0:
4409 1.12 pgoyette p = "mode_t";
4410 1.12 pgoyette break;
4411 1.12 pgoyette default:
4412 1.12 pgoyette break;
4413 1.12 pgoyette };
4414 1.12 pgoyette break;
4415 1.12 pgoyette /* sys_chroot */
4416 1.12 pgoyette case 61:
4417 1.12 pgoyette switch(ndx) {
4418 1.12 pgoyette case 0:
4419 1.12 pgoyette p = "const char *";
4420 1.12 pgoyette break;
4421 1.12 pgoyette default:
4422 1.12 pgoyette break;
4423 1.12 pgoyette };
4424 1.12 pgoyette break;
4425 1.12 pgoyette /* sys_fstat */
4426 1.12 pgoyette case 62:
4427 1.12 pgoyette switch(ndx) {
4428 1.12 pgoyette case 0:
4429 1.12 pgoyette p = "int";
4430 1.12 pgoyette break;
4431 1.12 pgoyette case 1:
4432 1.12 pgoyette p = "struct stat43 *";
4433 1.12 pgoyette break;
4434 1.12 pgoyette default:
4435 1.12 pgoyette break;
4436 1.12 pgoyette };
4437 1.12 pgoyette break;
4438 1.12 pgoyette /* sys_getkerninfo */
4439 1.12 pgoyette case 63:
4440 1.12 pgoyette switch(ndx) {
4441 1.12 pgoyette case 0:
4442 1.12 pgoyette p = "int";
4443 1.12 pgoyette break;
4444 1.12 pgoyette case 1:
4445 1.12 pgoyette p = "char *";
4446 1.12 pgoyette break;
4447 1.12 pgoyette case 2:
4448 1.12 pgoyette p = "int *";
4449 1.12 pgoyette break;
4450 1.12 pgoyette case 3:
4451 1.12 pgoyette p = "int";
4452 1.12 pgoyette break;
4453 1.12 pgoyette default:
4454 1.12 pgoyette break;
4455 1.12 pgoyette };
4456 1.12 pgoyette break;
4457 1.12 pgoyette /* sys_getpagesize */
4458 1.12 pgoyette case 64:
4459 1.12 pgoyette break;
4460 1.12 pgoyette /* sys_msync */
4461 1.12 pgoyette case 65:
4462 1.12 pgoyette switch(ndx) {
4463 1.12 pgoyette case 0:
4464 1.12 pgoyette p = "void *";
4465 1.12 pgoyette break;
4466 1.12 pgoyette case 1:
4467 1.12 pgoyette p = "size_t";
4468 1.12 pgoyette break;
4469 1.12 pgoyette default:
4470 1.12 pgoyette break;
4471 1.12 pgoyette };
4472 1.12 pgoyette break;
4473 1.12 pgoyette /* sys_vfork */
4474 1.12 pgoyette case 66:
4475 1.12 pgoyette break;
4476 1.12 pgoyette /* sys_mmap */
4477 1.12 pgoyette case 71:
4478 1.12 pgoyette switch(ndx) {
4479 1.12 pgoyette case 0:
4480 1.12 pgoyette p = "void *";
4481 1.12 pgoyette break;
4482 1.12 pgoyette case 1:
4483 1.12 pgoyette p = "size_t";
4484 1.12 pgoyette break;
4485 1.12 pgoyette case 2:
4486 1.12 pgoyette p = "int";
4487 1.12 pgoyette break;
4488 1.12 pgoyette case 3:
4489 1.12 pgoyette p = "int";
4490 1.12 pgoyette break;
4491 1.12 pgoyette case 4:
4492 1.12 pgoyette p = "int";
4493 1.12 pgoyette break;
4494 1.12 pgoyette case 5:
4495 1.12 pgoyette p = "long";
4496 1.12 pgoyette break;
4497 1.12 pgoyette default:
4498 1.12 pgoyette break;
4499 1.12 pgoyette };
4500 1.12 pgoyette break;
4501 1.29 kamil /* sys_ovadvise */
4502 1.29 kamil case 72:
4503 1.29 kamil switch(ndx) {
4504 1.29 kamil case 0:
4505 1.29 kamil p = "int";
4506 1.29 kamil break;
4507 1.29 kamil default:
4508 1.29 kamil break;
4509 1.29 kamil };
4510 1.29 kamil break;
4511 1.12 pgoyette /* sys_munmap */
4512 1.12 pgoyette case 73:
4513 1.12 pgoyette switch(ndx) {
4514 1.12 pgoyette case 0:
4515 1.12 pgoyette p = "void *";
4516 1.12 pgoyette break;
4517 1.12 pgoyette case 1:
4518 1.12 pgoyette p = "size_t";
4519 1.12 pgoyette break;
4520 1.12 pgoyette default:
4521 1.12 pgoyette break;
4522 1.12 pgoyette };
4523 1.12 pgoyette break;
4524 1.12 pgoyette /* sys_mprotect */
4525 1.12 pgoyette case 74:
4526 1.12 pgoyette switch(ndx) {
4527 1.12 pgoyette case 0:
4528 1.12 pgoyette p = "void *";
4529 1.12 pgoyette break;
4530 1.12 pgoyette case 1:
4531 1.12 pgoyette p = "size_t";
4532 1.12 pgoyette break;
4533 1.12 pgoyette case 2:
4534 1.12 pgoyette p = "int";
4535 1.12 pgoyette break;
4536 1.12 pgoyette default:
4537 1.12 pgoyette break;
4538 1.12 pgoyette };
4539 1.12 pgoyette break;
4540 1.12 pgoyette /* sys_madvise */
4541 1.12 pgoyette case 75:
4542 1.12 pgoyette switch(ndx) {
4543 1.12 pgoyette case 0:
4544 1.12 pgoyette p = "void *";
4545 1.12 pgoyette break;
4546 1.12 pgoyette case 1:
4547 1.12 pgoyette p = "size_t";
4548 1.12 pgoyette break;
4549 1.12 pgoyette case 2:
4550 1.12 pgoyette p = "int";
4551 1.12 pgoyette break;
4552 1.12 pgoyette default:
4553 1.12 pgoyette break;
4554 1.12 pgoyette };
4555 1.12 pgoyette break;
4556 1.12 pgoyette /* sys_mincore */
4557 1.12 pgoyette case 78:
4558 1.12 pgoyette switch(ndx) {
4559 1.12 pgoyette case 0:
4560 1.12 pgoyette p = "void *";
4561 1.12 pgoyette break;
4562 1.12 pgoyette case 1:
4563 1.12 pgoyette p = "size_t";
4564 1.12 pgoyette break;
4565 1.12 pgoyette case 2:
4566 1.12 pgoyette p = "char *";
4567 1.12 pgoyette break;
4568 1.12 pgoyette default:
4569 1.12 pgoyette break;
4570 1.12 pgoyette };
4571 1.12 pgoyette break;
4572 1.12 pgoyette /* sys_getgroups */
4573 1.12 pgoyette case 79:
4574 1.12 pgoyette switch(ndx) {
4575 1.12 pgoyette case 0:
4576 1.12 pgoyette p = "int";
4577 1.12 pgoyette break;
4578 1.12 pgoyette case 1:
4579 1.12 pgoyette p = "gid_t *";
4580 1.12 pgoyette break;
4581 1.12 pgoyette default:
4582 1.12 pgoyette break;
4583 1.12 pgoyette };
4584 1.12 pgoyette break;
4585 1.12 pgoyette /* sys_setgroups */
4586 1.12 pgoyette case 80:
4587 1.12 pgoyette switch(ndx) {
4588 1.12 pgoyette case 0:
4589 1.12 pgoyette p = "int";
4590 1.12 pgoyette break;
4591 1.12 pgoyette case 1:
4592 1.12 pgoyette p = "const gid_t *";
4593 1.12 pgoyette break;
4594 1.12 pgoyette default:
4595 1.12 pgoyette break;
4596 1.12 pgoyette };
4597 1.12 pgoyette break;
4598 1.12 pgoyette /* sys_getpgrp */
4599 1.12 pgoyette case 81:
4600 1.12 pgoyette break;
4601 1.12 pgoyette /* sys_setpgid */
4602 1.12 pgoyette case 82:
4603 1.12 pgoyette switch(ndx) {
4604 1.12 pgoyette case 0:
4605 1.12 pgoyette p = "pid_t";
4606 1.12 pgoyette break;
4607 1.12 pgoyette case 1:
4608 1.12 pgoyette p = "pid_t";
4609 1.12 pgoyette break;
4610 1.12 pgoyette default:
4611 1.12 pgoyette break;
4612 1.12 pgoyette };
4613 1.12 pgoyette break;
4614 1.12 pgoyette /* sys_setitimer */
4615 1.12 pgoyette case 83:
4616 1.12 pgoyette switch(ndx) {
4617 1.12 pgoyette case 0:
4618 1.12 pgoyette p = "int";
4619 1.12 pgoyette break;
4620 1.12 pgoyette case 1:
4621 1.12 pgoyette p = "const struct itimerval50 *";
4622 1.12 pgoyette break;
4623 1.12 pgoyette case 2:
4624 1.12 pgoyette p = "struct itimerval50 *";
4625 1.12 pgoyette break;
4626 1.12 pgoyette default:
4627 1.12 pgoyette break;
4628 1.12 pgoyette };
4629 1.12 pgoyette break;
4630 1.12 pgoyette /* sys_wait */
4631 1.12 pgoyette case 84:
4632 1.12 pgoyette break;
4633 1.12 pgoyette /* sys_swapon */
4634 1.12 pgoyette case 85:
4635 1.12 pgoyette switch(ndx) {
4636 1.12 pgoyette case 0:
4637 1.12 pgoyette p = "const char *";
4638 1.12 pgoyette break;
4639 1.12 pgoyette default:
4640 1.12 pgoyette break;
4641 1.12 pgoyette };
4642 1.12 pgoyette break;
4643 1.12 pgoyette /* sys_getitimer */
4644 1.12 pgoyette case 86:
4645 1.12 pgoyette switch(ndx) {
4646 1.12 pgoyette case 0:
4647 1.12 pgoyette p = "int";
4648 1.12 pgoyette break;
4649 1.12 pgoyette case 1:
4650 1.12 pgoyette p = "struct itimerval50 *";
4651 1.12 pgoyette break;
4652 1.12 pgoyette default:
4653 1.12 pgoyette break;
4654 1.12 pgoyette };
4655 1.12 pgoyette break;
4656 1.12 pgoyette /* sys_gethostname */
4657 1.12 pgoyette case 87:
4658 1.12 pgoyette switch(ndx) {
4659 1.12 pgoyette case 0:
4660 1.12 pgoyette p = "char *";
4661 1.12 pgoyette break;
4662 1.12 pgoyette case 1:
4663 1.12 pgoyette p = "u_int";
4664 1.12 pgoyette break;
4665 1.12 pgoyette default:
4666 1.12 pgoyette break;
4667 1.12 pgoyette };
4668 1.12 pgoyette break;
4669 1.12 pgoyette /* sys_sethostname */
4670 1.12 pgoyette case 88:
4671 1.12 pgoyette switch(ndx) {
4672 1.12 pgoyette case 0:
4673 1.12 pgoyette p = "char *";
4674 1.12 pgoyette break;
4675 1.12 pgoyette case 1:
4676 1.12 pgoyette p = "u_int";
4677 1.12 pgoyette break;
4678 1.12 pgoyette default:
4679 1.12 pgoyette break;
4680 1.12 pgoyette };
4681 1.12 pgoyette break;
4682 1.12 pgoyette /* sys_getdtablesize */
4683 1.12 pgoyette case 89:
4684 1.12 pgoyette break;
4685 1.12 pgoyette /* sys_dup2 */
4686 1.12 pgoyette case 90:
4687 1.12 pgoyette switch(ndx) {
4688 1.12 pgoyette case 0:
4689 1.12 pgoyette p = "int";
4690 1.12 pgoyette break;
4691 1.12 pgoyette case 1:
4692 1.12 pgoyette p = "int";
4693 1.12 pgoyette break;
4694 1.12 pgoyette default:
4695 1.12 pgoyette break;
4696 1.12 pgoyette };
4697 1.12 pgoyette break;
4698 1.12 pgoyette /* sys_fcntl */
4699 1.12 pgoyette case 92:
4700 1.12 pgoyette switch(ndx) {
4701 1.12 pgoyette case 0:
4702 1.12 pgoyette p = "int";
4703 1.12 pgoyette break;
4704 1.12 pgoyette case 1:
4705 1.12 pgoyette p = "int";
4706 1.12 pgoyette break;
4707 1.12 pgoyette case 2:
4708 1.12 pgoyette p = "void *";
4709 1.12 pgoyette break;
4710 1.12 pgoyette default:
4711 1.12 pgoyette break;
4712 1.12 pgoyette };
4713 1.12 pgoyette break;
4714 1.12 pgoyette /* sys_select */
4715 1.12 pgoyette case 93:
4716 1.12 pgoyette switch(ndx) {
4717 1.12 pgoyette case 0:
4718 1.12 pgoyette p = "int";
4719 1.12 pgoyette break;
4720 1.12 pgoyette case 1:
4721 1.12 pgoyette p = "fd_set *";
4722 1.12 pgoyette break;
4723 1.12 pgoyette case 2:
4724 1.12 pgoyette p = "fd_set *";
4725 1.12 pgoyette break;
4726 1.12 pgoyette case 3:
4727 1.12 pgoyette p = "fd_set *";
4728 1.12 pgoyette break;
4729 1.12 pgoyette case 4:
4730 1.12 pgoyette p = "struct timeval50 *";
4731 1.12 pgoyette break;
4732 1.12 pgoyette default:
4733 1.12 pgoyette break;
4734 1.12 pgoyette };
4735 1.12 pgoyette break;
4736 1.12 pgoyette /* sys_fsync */
4737 1.12 pgoyette case 95:
4738 1.12 pgoyette switch(ndx) {
4739 1.12 pgoyette case 0:
4740 1.12 pgoyette p = "int";
4741 1.12 pgoyette break;
4742 1.12 pgoyette default:
4743 1.12 pgoyette break;
4744 1.12 pgoyette };
4745 1.12 pgoyette break;
4746 1.12 pgoyette /* sys_setpriority */
4747 1.12 pgoyette case 96:
4748 1.12 pgoyette switch(ndx) {
4749 1.12 pgoyette case 0:
4750 1.12 pgoyette p = "int";
4751 1.12 pgoyette break;
4752 1.12 pgoyette case 1:
4753 1.12 pgoyette p = "id_t";
4754 1.12 pgoyette break;
4755 1.12 pgoyette case 2:
4756 1.12 pgoyette p = "int";
4757 1.12 pgoyette break;
4758 1.12 pgoyette default:
4759 1.12 pgoyette break;
4760 1.12 pgoyette };
4761 1.12 pgoyette break;
4762 1.12 pgoyette /* sys_socket */
4763 1.12 pgoyette case 97:
4764 1.12 pgoyette switch(ndx) {
4765 1.12 pgoyette case 0:
4766 1.12 pgoyette p = "int";
4767 1.12 pgoyette break;
4768 1.12 pgoyette case 1:
4769 1.12 pgoyette p = "int";
4770 1.12 pgoyette break;
4771 1.12 pgoyette case 2:
4772 1.12 pgoyette p = "int";
4773 1.12 pgoyette break;
4774 1.12 pgoyette default:
4775 1.12 pgoyette break;
4776 1.12 pgoyette };
4777 1.12 pgoyette break;
4778 1.12 pgoyette /* sys_connect */
4779 1.12 pgoyette case 98:
4780 1.12 pgoyette switch(ndx) {
4781 1.12 pgoyette case 0:
4782 1.12 pgoyette p = "int";
4783 1.12 pgoyette break;
4784 1.12 pgoyette case 1:
4785 1.12 pgoyette p = "const struct sockaddr *";
4786 1.12 pgoyette break;
4787 1.12 pgoyette case 2:
4788 1.12 pgoyette p = "socklen_t";
4789 1.12 pgoyette break;
4790 1.12 pgoyette default:
4791 1.12 pgoyette break;
4792 1.12 pgoyette };
4793 1.12 pgoyette break;
4794 1.12 pgoyette /* sys_accept */
4795 1.12 pgoyette case 99:
4796 1.12 pgoyette switch(ndx) {
4797 1.12 pgoyette case 0:
4798 1.12 pgoyette p = "int";
4799 1.12 pgoyette break;
4800 1.12 pgoyette case 1:
4801 1.12 pgoyette p = "void *";
4802 1.12 pgoyette break;
4803 1.12 pgoyette case 2:
4804 1.12 pgoyette p = "socklen_t *";
4805 1.12 pgoyette break;
4806 1.12 pgoyette default:
4807 1.12 pgoyette break;
4808 1.12 pgoyette };
4809 1.12 pgoyette break;
4810 1.12 pgoyette /* sys_getpriority */
4811 1.12 pgoyette case 100:
4812 1.12 pgoyette switch(ndx) {
4813 1.12 pgoyette case 0:
4814 1.12 pgoyette p = "int";
4815 1.12 pgoyette break;
4816 1.12 pgoyette case 1:
4817 1.12 pgoyette p = "id_t";
4818 1.12 pgoyette break;
4819 1.12 pgoyette default:
4820 1.12 pgoyette break;
4821 1.12 pgoyette };
4822 1.12 pgoyette break;
4823 1.12 pgoyette /* sys_send */
4824 1.12 pgoyette case 101:
4825 1.12 pgoyette switch(ndx) {
4826 1.12 pgoyette case 0:
4827 1.12 pgoyette p = "int";
4828 1.12 pgoyette break;
4829 1.12 pgoyette case 1:
4830 1.12 pgoyette p = "void *";
4831 1.12 pgoyette break;
4832 1.12 pgoyette case 2:
4833 1.12 pgoyette p = "int";
4834 1.12 pgoyette break;
4835 1.12 pgoyette case 3:
4836 1.12 pgoyette p = "int";
4837 1.12 pgoyette break;
4838 1.12 pgoyette default:
4839 1.12 pgoyette break;
4840 1.12 pgoyette };
4841 1.12 pgoyette break;
4842 1.12 pgoyette /* sys_recv */
4843 1.12 pgoyette case 102:
4844 1.12 pgoyette switch(ndx) {
4845 1.12 pgoyette case 0:
4846 1.12 pgoyette p = "int";
4847 1.12 pgoyette break;
4848 1.12 pgoyette case 1:
4849 1.12 pgoyette p = "void *";
4850 1.12 pgoyette break;
4851 1.12 pgoyette case 2:
4852 1.12 pgoyette p = "int";
4853 1.12 pgoyette break;
4854 1.12 pgoyette case 3:
4855 1.12 pgoyette p = "int";
4856 1.12 pgoyette break;
4857 1.12 pgoyette default:
4858 1.12 pgoyette break;
4859 1.12 pgoyette };
4860 1.12 pgoyette break;
4861 1.12 pgoyette /* sys_sigreturn */
4862 1.12 pgoyette case 103:
4863 1.12 pgoyette switch(ndx) {
4864 1.12 pgoyette case 0:
4865 1.12 pgoyette p = "struct sigcontext13 *";
4866 1.12 pgoyette break;
4867 1.12 pgoyette default:
4868 1.12 pgoyette break;
4869 1.12 pgoyette };
4870 1.12 pgoyette break;
4871 1.12 pgoyette /* sys_bind */
4872 1.12 pgoyette case 104:
4873 1.12 pgoyette switch(ndx) {
4874 1.12 pgoyette case 0:
4875 1.12 pgoyette p = "int";
4876 1.12 pgoyette break;
4877 1.12 pgoyette case 1:
4878 1.12 pgoyette p = "const struct sockaddr *";
4879 1.12 pgoyette break;
4880 1.12 pgoyette case 2:
4881 1.12 pgoyette p = "socklen_t";
4882 1.12 pgoyette break;
4883 1.12 pgoyette default:
4884 1.12 pgoyette break;
4885 1.12 pgoyette };
4886 1.12 pgoyette break;
4887 1.12 pgoyette /* sys_setsockopt */
4888 1.12 pgoyette case 105:
4889 1.12 pgoyette switch(ndx) {
4890 1.12 pgoyette case 0:
4891 1.12 pgoyette p = "int";
4892 1.12 pgoyette break;
4893 1.12 pgoyette case 1:
4894 1.12 pgoyette p = "int";
4895 1.12 pgoyette break;
4896 1.12 pgoyette case 2:
4897 1.12 pgoyette p = "int";
4898 1.12 pgoyette break;
4899 1.12 pgoyette case 3:
4900 1.12 pgoyette p = "const void *";
4901 1.12 pgoyette break;
4902 1.12 pgoyette case 4:
4903 1.12 pgoyette p = "socklen_t";
4904 1.12 pgoyette break;
4905 1.12 pgoyette default:
4906 1.12 pgoyette break;
4907 1.12 pgoyette };
4908 1.12 pgoyette break;
4909 1.12 pgoyette /* sys_listen */
4910 1.12 pgoyette case 106:
4911 1.12 pgoyette switch(ndx) {
4912 1.12 pgoyette case 0:
4913 1.12 pgoyette p = "int";
4914 1.12 pgoyette break;
4915 1.12 pgoyette case 1:
4916 1.12 pgoyette p = "int";
4917 1.12 pgoyette break;
4918 1.12 pgoyette default:
4919 1.12 pgoyette break;
4920 1.12 pgoyette };
4921 1.12 pgoyette break;
4922 1.12 pgoyette /* sys_sigvec */
4923 1.12 pgoyette case 108:
4924 1.12 pgoyette switch(ndx) {
4925 1.12 pgoyette case 0:
4926 1.12 pgoyette p = "int";
4927 1.12 pgoyette break;
4928 1.12 pgoyette case 1:
4929 1.12 pgoyette p = "struct sigvec *";
4930 1.12 pgoyette break;
4931 1.12 pgoyette case 2:
4932 1.12 pgoyette p = "struct sigvec *";
4933 1.12 pgoyette break;
4934 1.12 pgoyette default:
4935 1.12 pgoyette break;
4936 1.12 pgoyette };
4937 1.12 pgoyette break;
4938 1.12 pgoyette /* sys_sigblock */
4939 1.12 pgoyette case 109:
4940 1.12 pgoyette switch(ndx) {
4941 1.12 pgoyette case 0:
4942 1.12 pgoyette p = "int";
4943 1.12 pgoyette break;
4944 1.12 pgoyette default:
4945 1.12 pgoyette break;
4946 1.12 pgoyette };
4947 1.12 pgoyette break;
4948 1.12 pgoyette /* sys_sigsetmask */
4949 1.12 pgoyette case 110:
4950 1.12 pgoyette switch(ndx) {
4951 1.12 pgoyette case 0:
4952 1.12 pgoyette p = "int";
4953 1.12 pgoyette break;
4954 1.12 pgoyette default:
4955 1.12 pgoyette break;
4956 1.12 pgoyette };
4957 1.12 pgoyette break;
4958 1.12 pgoyette /* sys_sigsuspend */
4959 1.12 pgoyette case 111:
4960 1.12 pgoyette switch(ndx) {
4961 1.12 pgoyette case 0:
4962 1.12 pgoyette p = "int";
4963 1.12 pgoyette break;
4964 1.12 pgoyette default:
4965 1.12 pgoyette break;
4966 1.12 pgoyette };
4967 1.12 pgoyette break;
4968 1.12 pgoyette /* sys_sigstack */
4969 1.12 pgoyette case 112:
4970 1.12 pgoyette switch(ndx) {
4971 1.12 pgoyette case 0:
4972 1.12 pgoyette p = "struct sigstack *";
4973 1.12 pgoyette break;
4974 1.12 pgoyette case 1:
4975 1.12 pgoyette p = "struct sigstack *";
4976 1.12 pgoyette break;
4977 1.12 pgoyette default:
4978 1.12 pgoyette break;
4979 1.12 pgoyette };
4980 1.12 pgoyette break;
4981 1.12 pgoyette /* sys_recvmsg */
4982 1.12 pgoyette case 113:
4983 1.12 pgoyette switch(ndx) {
4984 1.12 pgoyette case 0:
4985 1.12 pgoyette p = "int";
4986 1.12 pgoyette break;
4987 1.12 pgoyette case 1:
4988 1.12 pgoyette p = "struct omsghdr *";
4989 1.12 pgoyette break;
4990 1.12 pgoyette case 2:
4991 1.12 pgoyette p = "int";
4992 1.12 pgoyette break;
4993 1.12 pgoyette default:
4994 1.12 pgoyette break;
4995 1.12 pgoyette };
4996 1.12 pgoyette break;
4997 1.12 pgoyette /* sys_sendmsg */
4998 1.12 pgoyette case 114:
4999 1.12 pgoyette switch(ndx) {
5000 1.12 pgoyette case 0:
5001 1.12 pgoyette p = "int";
5002 1.12 pgoyette break;
5003 1.12 pgoyette case 1:
5004 1.12 pgoyette p = "void *";
5005 1.12 pgoyette break;
5006 1.12 pgoyette case 2:
5007 1.12 pgoyette p = "int";
5008 1.12 pgoyette break;
5009 1.12 pgoyette default:
5010 1.12 pgoyette break;
5011 1.12 pgoyette };
5012 1.12 pgoyette break;
5013 1.12 pgoyette /* sys_gettimeofday */
5014 1.12 pgoyette case 116:
5015 1.12 pgoyette switch(ndx) {
5016 1.12 pgoyette case 0:
5017 1.12 pgoyette p = "struct timeval50 *";
5018 1.12 pgoyette break;
5019 1.12 pgoyette case 1:
5020 1.12 pgoyette p = "void *";
5021 1.12 pgoyette break;
5022 1.12 pgoyette default:
5023 1.12 pgoyette break;
5024 1.12 pgoyette };
5025 1.12 pgoyette break;
5026 1.12 pgoyette /* sys_getrusage */
5027 1.12 pgoyette case 117:
5028 1.12 pgoyette switch(ndx) {
5029 1.12 pgoyette case 0:
5030 1.12 pgoyette p = "int";
5031 1.12 pgoyette break;
5032 1.12 pgoyette case 1:
5033 1.12 pgoyette p = "struct rusage50 *";
5034 1.12 pgoyette break;
5035 1.12 pgoyette default:
5036 1.12 pgoyette break;
5037 1.12 pgoyette };
5038 1.12 pgoyette break;
5039 1.12 pgoyette /* sys_getsockopt */
5040 1.12 pgoyette case 118:
5041 1.12 pgoyette switch(ndx) {
5042 1.12 pgoyette case 0:
5043 1.12 pgoyette p = "int";
5044 1.12 pgoyette break;
5045 1.12 pgoyette case 1:
5046 1.12 pgoyette p = "int";
5047 1.12 pgoyette break;
5048 1.12 pgoyette case 2:
5049 1.12 pgoyette p = "int";
5050 1.12 pgoyette break;
5051 1.12 pgoyette case 3:
5052 1.12 pgoyette p = "void *";
5053 1.12 pgoyette break;
5054 1.12 pgoyette case 4:
5055 1.12 pgoyette p = "socklen_t *";
5056 1.12 pgoyette break;
5057 1.12 pgoyette default:
5058 1.12 pgoyette break;
5059 1.12 pgoyette };
5060 1.12 pgoyette break;
5061 1.12 pgoyette /* sys_readv */
5062 1.12 pgoyette case 120:
5063 1.12 pgoyette switch(ndx) {
5064 1.12 pgoyette case 0:
5065 1.12 pgoyette p = "int";
5066 1.12 pgoyette break;
5067 1.12 pgoyette case 1:
5068 1.12 pgoyette p = "const struct iovec *";
5069 1.12 pgoyette break;
5070 1.12 pgoyette case 2:
5071 1.12 pgoyette p = "int";
5072 1.12 pgoyette break;
5073 1.12 pgoyette default:
5074 1.12 pgoyette break;
5075 1.12 pgoyette };
5076 1.12 pgoyette break;
5077 1.12 pgoyette /* sys_writev */
5078 1.12 pgoyette case 121:
5079 1.12 pgoyette switch(ndx) {
5080 1.12 pgoyette case 0:
5081 1.12 pgoyette p = "int";
5082 1.12 pgoyette break;
5083 1.12 pgoyette case 1:
5084 1.12 pgoyette p = "const struct iovec *";
5085 1.12 pgoyette break;
5086 1.12 pgoyette case 2:
5087 1.12 pgoyette p = "int";
5088 1.12 pgoyette break;
5089 1.12 pgoyette default:
5090 1.12 pgoyette break;
5091 1.12 pgoyette };
5092 1.12 pgoyette break;
5093 1.12 pgoyette /* sys_settimeofday */
5094 1.12 pgoyette case 122:
5095 1.12 pgoyette switch(ndx) {
5096 1.12 pgoyette case 0:
5097 1.12 pgoyette p = "const struct timeval50 *";
5098 1.12 pgoyette break;
5099 1.12 pgoyette case 1:
5100 1.12 pgoyette p = "const void *";
5101 1.12 pgoyette break;
5102 1.12 pgoyette default:
5103 1.12 pgoyette break;
5104 1.12 pgoyette };
5105 1.12 pgoyette break;
5106 1.12 pgoyette /* sys_fchown */
5107 1.12 pgoyette case 123:
5108 1.12 pgoyette switch(ndx) {
5109 1.12 pgoyette case 0:
5110 1.12 pgoyette p = "int";
5111 1.12 pgoyette break;
5112 1.12 pgoyette case 1:
5113 1.12 pgoyette p = "uid_t";
5114 1.12 pgoyette break;
5115 1.12 pgoyette case 2:
5116 1.12 pgoyette p = "gid_t";
5117 1.12 pgoyette break;
5118 1.12 pgoyette default:
5119 1.12 pgoyette break;
5120 1.12 pgoyette };
5121 1.12 pgoyette break;
5122 1.12 pgoyette /* sys_fchmod */
5123 1.12 pgoyette case 124:
5124 1.12 pgoyette switch(ndx) {
5125 1.12 pgoyette case 0:
5126 1.12 pgoyette p = "int";
5127 1.12 pgoyette break;
5128 1.12 pgoyette case 1:
5129 1.12 pgoyette p = "mode_t";
5130 1.12 pgoyette break;
5131 1.12 pgoyette default:
5132 1.12 pgoyette break;
5133 1.12 pgoyette };
5134 1.12 pgoyette break;
5135 1.12 pgoyette /* sys_recvfrom */
5136 1.12 pgoyette case 125:
5137 1.12 pgoyette switch(ndx) {
5138 1.12 pgoyette case 0:
5139 1.12 pgoyette p = "int";
5140 1.12 pgoyette break;
5141 1.12 pgoyette case 1:
5142 1.12 pgoyette p = "void *";
5143 1.12 pgoyette break;
5144 1.12 pgoyette case 2:
5145 1.12 pgoyette p = "size_t";
5146 1.12 pgoyette break;
5147 1.12 pgoyette case 3:
5148 1.12 pgoyette p = "int";
5149 1.12 pgoyette break;
5150 1.12 pgoyette case 4:
5151 1.12 pgoyette p = "void *";
5152 1.12 pgoyette break;
5153 1.12 pgoyette case 5:
5154 1.12 pgoyette p = "socklen_t *";
5155 1.12 pgoyette break;
5156 1.12 pgoyette default:
5157 1.12 pgoyette break;
5158 1.12 pgoyette };
5159 1.12 pgoyette break;
5160 1.12 pgoyette /* sys_setreuid */
5161 1.12 pgoyette case 126:
5162 1.12 pgoyette switch(ndx) {
5163 1.12 pgoyette case 0:
5164 1.12 pgoyette p = "uid_t";
5165 1.12 pgoyette break;
5166 1.12 pgoyette case 1:
5167 1.12 pgoyette p = "uid_t";
5168 1.12 pgoyette break;
5169 1.12 pgoyette default:
5170 1.12 pgoyette break;
5171 1.12 pgoyette };
5172 1.12 pgoyette break;
5173 1.12 pgoyette /* sys_setregid */
5174 1.12 pgoyette case 127:
5175 1.12 pgoyette switch(ndx) {
5176 1.12 pgoyette case 0:
5177 1.12 pgoyette p = "gid_t";
5178 1.12 pgoyette break;
5179 1.12 pgoyette case 1:
5180 1.12 pgoyette p = "gid_t";
5181 1.12 pgoyette break;
5182 1.12 pgoyette default:
5183 1.12 pgoyette break;
5184 1.12 pgoyette };
5185 1.12 pgoyette break;
5186 1.12 pgoyette /* sys_rename */
5187 1.12 pgoyette case 128:
5188 1.12 pgoyette switch(ndx) {
5189 1.12 pgoyette case 0:
5190 1.12 pgoyette p = "const char *";
5191 1.12 pgoyette break;
5192 1.12 pgoyette case 1:
5193 1.12 pgoyette p = "const char *";
5194 1.12 pgoyette break;
5195 1.12 pgoyette default:
5196 1.12 pgoyette break;
5197 1.12 pgoyette };
5198 1.12 pgoyette break;
5199 1.12 pgoyette /* sys_truncate */
5200 1.12 pgoyette case 129:
5201 1.12 pgoyette switch(ndx) {
5202 1.12 pgoyette case 0:
5203 1.12 pgoyette p = "const char *";
5204 1.12 pgoyette break;
5205 1.12 pgoyette case 1:
5206 1.12 pgoyette p = "long";
5207 1.12 pgoyette break;
5208 1.12 pgoyette default:
5209 1.12 pgoyette break;
5210 1.12 pgoyette };
5211 1.12 pgoyette break;
5212 1.12 pgoyette /* sys_ftruncate */
5213 1.12 pgoyette case 130:
5214 1.12 pgoyette switch(ndx) {
5215 1.12 pgoyette case 0:
5216 1.12 pgoyette p = "int";
5217 1.12 pgoyette break;
5218 1.12 pgoyette case 1:
5219 1.12 pgoyette p = "long";
5220 1.12 pgoyette break;
5221 1.12 pgoyette default:
5222 1.12 pgoyette break;
5223 1.12 pgoyette };
5224 1.12 pgoyette break;
5225 1.12 pgoyette /* sys_flock */
5226 1.12 pgoyette case 131:
5227 1.12 pgoyette switch(ndx) {
5228 1.12 pgoyette case 0:
5229 1.12 pgoyette p = "int";
5230 1.12 pgoyette break;
5231 1.12 pgoyette case 1:
5232 1.12 pgoyette p = "int";
5233 1.12 pgoyette break;
5234 1.12 pgoyette default:
5235 1.12 pgoyette break;
5236 1.12 pgoyette };
5237 1.12 pgoyette break;
5238 1.12 pgoyette /* sys_mkfifo */
5239 1.12 pgoyette case 132:
5240 1.12 pgoyette switch(ndx) {
5241 1.12 pgoyette case 0:
5242 1.12 pgoyette p = "const char *";
5243 1.12 pgoyette break;
5244 1.12 pgoyette case 1:
5245 1.12 pgoyette p = "mode_t";
5246 1.12 pgoyette break;
5247 1.12 pgoyette default:
5248 1.12 pgoyette break;
5249 1.12 pgoyette };
5250 1.12 pgoyette break;
5251 1.12 pgoyette /* sys_sendto */
5252 1.12 pgoyette case 133:
5253 1.12 pgoyette switch(ndx) {
5254 1.12 pgoyette case 0:
5255 1.12 pgoyette p = "int";
5256 1.12 pgoyette break;
5257 1.12 pgoyette case 1:
5258 1.12 pgoyette p = "const void *";
5259 1.12 pgoyette break;
5260 1.12 pgoyette case 2:
5261 1.12 pgoyette p = "size_t";
5262 1.12 pgoyette break;
5263 1.12 pgoyette case 3:
5264 1.12 pgoyette p = "int";
5265 1.12 pgoyette break;
5266 1.12 pgoyette case 4:
5267 1.12 pgoyette p = "const struct sockaddr *";
5268 1.12 pgoyette break;
5269 1.12 pgoyette case 5:
5270 1.12 pgoyette p = "socklen_t";
5271 1.12 pgoyette break;
5272 1.12 pgoyette default:
5273 1.12 pgoyette break;
5274 1.12 pgoyette };
5275 1.12 pgoyette break;
5276 1.12 pgoyette /* sys_shutdown */
5277 1.12 pgoyette case 134:
5278 1.12 pgoyette switch(ndx) {
5279 1.12 pgoyette case 0:
5280 1.12 pgoyette p = "int";
5281 1.12 pgoyette break;
5282 1.12 pgoyette case 1:
5283 1.12 pgoyette p = "int";
5284 1.12 pgoyette break;
5285 1.12 pgoyette default:
5286 1.12 pgoyette break;
5287 1.12 pgoyette };
5288 1.12 pgoyette break;
5289 1.12 pgoyette /* sys_socketpair */
5290 1.12 pgoyette case 135:
5291 1.12 pgoyette switch(ndx) {
5292 1.12 pgoyette case 0:
5293 1.12 pgoyette p = "int";
5294 1.12 pgoyette break;
5295 1.12 pgoyette case 1:
5296 1.12 pgoyette p = "int";
5297 1.12 pgoyette break;
5298 1.12 pgoyette case 2:
5299 1.12 pgoyette p = "int";
5300 1.12 pgoyette break;
5301 1.12 pgoyette case 3:
5302 1.12 pgoyette p = "int *";
5303 1.12 pgoyette break;
5304 1.12 pgoyette default:
5305 1.12 pgoyette break;
5306 1.12 pgoyette };
5307 1.12 pgoyette break;
5308 1.12 pgoyette /* sys_mkdir */
5309 1.12 pgoyette case 136:
5310 1.12 pgoyette switch(ndx) {
5311 1.12 pgoyette case 0:
5312 1.12 pgoyette p = "const char *";
5313 1.12 pgoyette break;
5314 1.12 pgoyette case 1:
5315 1.12 pgoyette p = "mode_t";
5316 1.12 pgoyette break;
5317 1.12 pgoyette default:
5318 1.12 pgoyette break;
5319 1.12 pgoyette };
5320 1.12 pgoyette break;
5321 1.12 pgoyette /* sys_rmdir */
5322 1.12 pgoyette case 137:
5323 1.12 pgoyette switch(ndx) {
5324 1.12 pgoyette case 0:
5325 1.12 pgoyette p = "const char *";
5326 1.12 pgoyette break;
5327 1.12 pgoyette default:
5328 1.12 pgoyette break;
5329 1.12 pgoyette };
5330 1.12 pgoyette break;
5331 1.12 pgoyette /* sys_utimes */
5332 1.12 pgoyette case 138:
5333 1.12 pgoyette switch(ndx) {
5334 1.12 pgoyette case 0:
5335 1.12 pgoyette p = "const char *";
5336 1.12 pgoyette break;
5337 1.12 pgoyette case 1:
5338 1.12 pgoyette p = "const struct timeval50 *";
5339 1.12 pgoyette break;
5340 1.12 pgoyette default:
5341 1.12 pgoyette break;
5342 1.12 pgoyette };
5343 1.12 pgoyette break;
5344 1.12 pgoyette /* sys_adjtime */
5345 1.12 pgoyette case 140:
5346 1.12 pgoyette switch(ndx) {
5347 1.12 pgoyette case 0:
5348 1.12 pgoyette p = "const struct timeval50 *";
5349 1.12 pgoyette break;
5350 1.12 pgoyette case 1:
5351 1.12 pgoyette p = "struct timeval50 *";
5352 1.12 pgoyette break;
5353 1.12 pgoyette default:
5354 1.12 pgoyette break;
5355 1.12 pgoyette };
5356 1.12 pgoyette break;
5357 1.12 pgoyette /* sys_getpeername */
5358 1.12 pgoyette case 141:
5359 1.12 pgoyette switch(ndx) {
5360 1.12 pgoyette case 0:
5361 1.12 pgoyette p = "int";
5362 1.12 pgoyette break;
5363 1.12 pgoyette case 1:
5364 1.12 pgoyette p = "void *";
5365 1.12 pgoyette break;
5366 1.12 pgoyette case 2:
5367 1.12 pgoyette p = "socklen_t *";
5368 1.12 pgoyette break;
5369 1.12 pgoyette default:
5370 1.12 pgoyette break;
5371 1.12 pgoyette };
5372 1.12 pgoyette break;
5373 1.12 pgoyette /* sys_gethostid */
5374 1.12 pgoyette case 142:
5375 1.12 pgoyette break;
5376 1.12 pgoyette /* sys_sethostid */
5377 1.12 pgoyette case 143:
5378 1.12 pgoyette switch(ndx) {
5379 1.12 pgoyette case 0:
5380 1.12 pgoyette p = "int32_t";
5381 1.12 pgoyette break;
5382 1.12 pgoyette default:
5383 1.12 pgoyette break;
5384 1.12 pgoyette };
5385 1.12 pgoyette break;
5386 1.12 pgoyette /* sys_getrlimit */
5387 1.12 pgoyette case 144:
5388 1.12 pgoyette switch(ndx) {
5389 1.12 pgoyette case 0:
5390 1.12 pgoyette p = "int";
5391 1.12 pgoyette break;
5392 1.12 pgoyette case 1:
5393 1.12 pgoyette p = "struct orlimit *";
5394 1.12 pgoyette break;
5395 1.12 pgoyette default:
5396 1.12 pgoyette break;
5397 1.12 pgoyette };
5398 1.12 pgoyette break;
5399 1.12 pgoyette /* sys_setrlimit */
5400 1.12 pgoyette case 145:
5401 1.12 pgoyette switch(ndx) {
5402 1.12 pgoyette case 0:
5403 1.12 pgoyette p = "int";
5404 1.12 pgoyette break;
5405 1.12 pgoyette case 1:
5406 1.12 pgoyette p = "const struct orlimit *";
5407 1.12 pgoyette break;
5408 1.12 pgoyette default:
5409 1.12 pgoyette break;
5410 1.12 pgoyette };
5411 1.12 pgoyette break;
5412 1.12 pgoyette /* sys_killpg */
5413 1.12 pgoyette case 146:
5414 1.12 pgoyette switch(ndx) {
5415 1.12 pgoyette case 0:
5416 1.12 pgoyette p = "int";
5417 1.12 pgoyette break;
5418 1.12 pgoyette case 1:
5419 1.12 pgoyette p = "int";
5420 1.12 pgoyette break;
5421 1.12 pgoyette default:
5422 1.12 pgoyette break;
5423 1.12 pgoyette };
5424 1.12 pgoyette break;
5425 1.12 pgoyette /* sys_setsid */
5426 1.12 pgoyette case 147:
5427 1.12 pgoyette break;
5428 1.12 pgoyette /* sys_quotactl */
5429 1.12 pgoyette case 148:
5430 1.12 pgoyette switch(ndx) {
5431 1.12 pgoyette case 0:
5432 1.12 pgoyette p = "const char *";
5433 1.12 pgoyette break;
5434 1.12 pgoyette case 1:
5435 1.12 pgoyette p = "int";
5436 1.12 pgoyette break;
5437 1.12 pgoyette case 2:
5438 1.12 pgoyette p = "int";
5439 1.12 pgoyette break;
5440 1.12 pgoyette case 3:
5441 1.12 pgoyette p = "void *";
5442 1.12 pgoyette break;
5443 1.12 pgoyette default:
5444 1.12 pgoyette break;
5445 1.12 pgoyette };
5446 1.12 pgoyette break;
5447 1.12 pgoyette /* sys_quota */
5448 1.12 pgoyette case 149:
5449 1.12 pgoyette break;
5450 1.12 pgoyette /* sys_getsockname */
5451 1.12 pgoyette case 150:
5452 1.12 pgoyette switch(ndx) {
5453 1.12 pgoyette case 0:
5454 1.12 pgoyette p = "int";
5455 1.12 pgoyette break;
5456 1.12 pgoyette case 1:
5457 1.12 pgoyette p = "void *";
5458 1.12 pgoyette break;
5459 1.12 pgoyette case 2:
5460 1.12 pgoyette p = "socklen_t *";
5461 1.12 pgoyette break;
5462 1.12 pgoyette default:
5463 1.12 pgoyette break;
5464 1.12 pgoyette };
5465 1.12 pgoyette break;
5466 1.12 pgoyette /* sys_nfssvc */
5467 1.12 pgoyette case 155:
5468 1.12 pgoyette switch(ndx) {
5469 1.12 pgoyette case 0:
5470 1.12 pgoyette p = "int";
5471 1.12 pgoyette break;
5472 1.12 pgoyette case 1:
5473 1.12 pgoyette p = "void *";
5474 1.12 pgoyette break;
5475 1.12 pgoyette default:
5476 1.12 pgoyette break;
5477 1.12 pgoyette };
5478 1.12 pgoyette break;
5479 1.12 pgoyette /* sys_getdirentries */
5480 1.12 pgoyette case 156:
5481 1.12 pgoyette switch(ndx) {
5482 1.12 pgoyette case 0:
5483 1.12 pgoyette p = "int";
5484 1.12 pgoyette break;
5485 1.12 pgoyette case 1:
5486 1.12 pgoyette p = "char *";
5487 1.12 pgoyette break;
5488 1.12 pgoyette case 2:
5489 1.12 pgoyette p = "u_int";
5490 1.12 pgoyette break;
5491 1.12 pgoyette case 3:
5492 1.12 pgoyette p = "long *";
5493 1.12 pgoyette break;
5494 1.12 pgoyette default:
5495 1.12 pgoyette break;
5496 1.12 pgoyette };
5497 1.12 pgoyette break;
5498 1.12 pgoyette /* sys_statfs */
5499 1.12 pgoyette case 157:
5500 1.12 pgoyette switch(ndx) {
5501 1.12 pgoyette case 0:
5502 1.12 pgoyette p = "const char *";
5503 1.12 pgoyette break;
5504 1.12 pgoyette case 1:
5505 1.12 pgoyette p = "struct statfs12 *";
5506 1.12 pgoyette break;
5507 1.12 pgoyette default:
5508 1.12 pgoyette break;
5509 1.12 pgoyette };
5510 1.12 pgoyette break;
5511 1.12 pgoyette /* sys_fstatfs */
5512 1.12 pgoyette case 158:
5513 1.12 pgoyette switch(ndx) {
5514 1.12 pgoyette case 0:
5515 1.12 pgoyette p = "int";
5516 1.12 pgoyette break;
5517 1.12 pgoyette case 1:
5518 1.12 pgoyette p = "struct statfs12 *";
5519 1.12 pgoyette break;
5520 1.12 pgoyette default:
5521 1.12 pgoyette break;
5522 1.12 pgoyette };
5523 1.12 pgoyette break;
5524 1.12 pgoyette /* sys_getfh */
5525 1.12 pgoyette case 161:
5526 1.12 pgoyette switch(ndx) {
5527 1.12 pgoyette case 0:
5528 1.12 pgoyette p = "const char *";
5529 1.12 pgoyette break;
5530 1.12 pgoyette case 1:
5531 1.12 pgoyette p = "struct compat_30_fhandle *";
5532 1.12 pgoyette break;
5533 1.12 pgoyette default:
5534 1.12 pgoyette break;
5535 1.12 pgoyette };
5536 1.12 pgoyette break;
5537 1.12 pgoyette /* sys_getdomainname */
5538 1.12 pgoyette case 162:
5539 1.12 pgoyette switch(ndx) {
5540 1.12 pgoyette case 0:
5541 1.12 pgoyette p = "char *";
5542 1.12 pgoyette break;
5543 1.12 pgoyette case 1:
5544 1.12 pgoyette p = "int";
5545 1.12 pgoyette break;
5546 1.12 pgoyette default:
5547 1.12 pgoyette break;
5548 1.12 pgoyette };
5549 1.12 pgoyette break;
5550 1.12 pgoyette /* sys_setdomainname */
5551 1.12 pgoyette case 163:
5552 1.12 pgoyette switch(ndx) {
5553 1.12 pgoyette case 0:
5554 1.12 pgoyette p = "char *";
5555 1.12 pgoyette break;
5556 1.12 pgoyette case 1:
5557 1.12 pgoyette p = "int";
5558 1.12 pgoyette break;
5559 1.12 pgoyette default:
5560 1.12 pgoyette break;
5561 1.12 pgoyette };
5562 1.12 pgoyette break;
5563 1.12 pgoyette /* sys_uname */
5564 1.12 pgoyette case 164:
5565 1.12 pgoyette switch(ndx) {
5566 1.12 pgoyette case 0:
5567 1.12 pgoyette p = "struct outsname *";
5568 1.12 pgoyette break;
5569 1.12 pgoyette default:
5570 1.12 pgoyette break;
5571 1.12 pgoyette };
5572 1.12 pgoyette break;
5573 1.12 pgoyette /* sys_sysarch */
5574 1.12 pgoyette case 165:
5575 1.12 pgoyette switch(ndx) {
5576 1.12 pgoyette case 0:
5577 1.12 pgoyette p = "int";
5578 1.12 pgoyette break;
5579 1.12 pgoyette case 1:
5580 1.12 pgoyette p = "void *";
5581 1.12 pgoyette break;
5582 1.12 pgoyette default:
5583 1.12 pgoyette break;
5584 1.12 pgoyette };
5585 1.12 pgoyette break;
5586 1.12 pgoyette #if !defined(_LP64)
5587 1.12 pgoyette /* sys_semsys */
5588 1.12 pgoyette case 169:
5589 1.12 pgoyette switch(ndx) {
5590 1.12 pgoyette case 0:
5591 1.12 pgoyette p = "int";
5592 1.12 pgoyette break;
5593 1.12 pgoyette case 1:
5594 1.12 pgoyette p = "int";
5595 1.12 pgoyette break;
5596 1.12 pgoyette case 2:
5597 1.12 pgoyette p = "int";
5598 1.12 pgoyette break;
5599 1.12 pgoyette case 3:
5600 1.12 pgoyette p = "int";
5601 1.12 pgoyette break;
5602 1.12 pgoyette case 4:
5603 1.12 pgoyette p = "int";
5604 1.12 pgoyette break;
5605 1.12 pgoyette default:
5606 1.12 pgoyette break;
5607 1.12 pgoyette };
5608 1.12 pgoyette break;
5609 1.12 pgoyette #else
5610 1.12 pgoyette #endif
5611 1.12 pgoyette #if !defined(_LP64)
5612 1.12 pgoyette /* sys_msgsys */
5613 1.12 pgoyette case 170:
5614 1.12 pgoyette switch(ndx) {
5615 1.12 pgoyette case 0:
5616 1.12 pgoyette p = "int";
5617 1.12 pgoyette break;
5618 1.12 pgoyette case 1:
5619 1.12 pgoyette p = "int";
5620 1.12 pgoyette break;
5621 1.12 pgoyette case 2:
5622 1.12 pgoyette p = "int";
5623 1.12 pgoyette break;
5624 1.12 pgoyette case 3:
5625 1.12 pgoyette p = "int";
5626 1.12 pgoyette break;
5627 1.12 pgoyette case 4:
5628 1.12 pgoyette p = "int";
5629 1.12 pgoyette break;
5630 1.12 pgoyette case 5:
5631 1.12 pgoyette p = "int";
5632 1.12 pgoyette break;
5633 1.12 pgoyette default:
5634 1.12 pgoyette break;
5635 1.12 pgoyette };
5636 1.12 pgoyette break;
5637 1.12 pgoyette #else
5638 1.12 pgoyette #endif
5639 1.12 pgoyette #if !defined(_LP64)
5640 1.12 pgoyette /* sys_shmsys */
5641 1.12 pgoyette case 171:
5642 1.12 pgoyette switch(ndx) {
5643 1.12 pgoyette case 0:
5644 1.12 pgoyette p = "int";
5645 1.12 pgoyette break;
5646 1.12 pgoyette case 1:
5647 1.12 pgoyette p = "int";
5648 1.12 pgoyette break;
5649 1.12 pgoyette case 2:
5650 1.12 pgoyette p = "int";
5651 1.12 pgoyette break;
5652 1.12 pgoyette case 3:
5653 1.12 pgoyette p = "int";
5654 1.12 pgoyette break;
5655 1.12 pgoyette default:
5656 1.12 pgoyette break;
5657 1.12 pgoyette };
5658 1.12 pgoyette break;
5659 1.12 pgoyette #else
5660 1.12 pgoyette #endif
5661 1.12 pgoyette /* sys_pread */
5662 1.12 pgoyette case 173:
5663 1.12 pgoyette switch(ndx) {
5664 1.12 pgoyette case 0:
5665 1.12 pgoyette p = "int";
5666 1.12 pgoyette break;
5667 1.12 pgoyette case 1:
5668 1.12 pgoyette p = "void *";
5669 1.12 pgoyette break;
5670 1.12 pgoyette case 2:
5671 1.12 pgoyette p = "size_t";
5672 1.12 pgoyette break;
5673 1.12 pgoyette case 3:
5674 1.12 pgoyette p = "int";
5675 1.12 pgoyette break;
5676 1.12 pgoyette case 4:
5677 1.12 pgoyette p = "off_t";
5678 1.12 pgoyette break;
5679 1.12 pgoyette default:
5680 1.12 pgoyette break;
5681 1.12 pgoyette };
5682 1.12 pgoyette break;
5683 1.12 pgoyette /* sys_pwrite */
5684 1.12 pgoyette case 174:
5685 1.12 pgoyette switch(ndx) {
5686 1.12 pgoyette case 0:
5687 1.12 pgoyette p = "int";
5688 1.12 pgoyette break;
5689 1.12 pgoyette case 1:
5690 1.12 pgoyette p = "const void *";
5691 1.12 pgoyette break;
5692 1.12 pgoyette case 2:
5693 1.12 pgoyette p = "size_t";
5694 1.12 pgoyette break;
5695 1.12 pgoyette case 3:
5696 1.12 pgoyette p = "int";
5697 1.12 pgoyette break;
5698 1.12 pgoyette case 4:
5699 1.12 pgoyette p = "off_t";
5700 1.12 pgoyette break;
5701 1.12 pgoyette default:
5702 1.12 pgoyette break;
5703 1.12 pgoyette };
5704 1.12 pgoyette break;
5705 1.12 pgoyette /* sys_ntp_gettime */
5706 1.12 pgoyette case 175:
5707 1.12 pgoyette switch(ndx) {
5708 1.12 pgoyette case 0:
5709 1.12 pgoyette p = "struct ntptimeval30 *";
5710 1.12 pgoyette break;
5711 1.12 pgoyette default:
5712 1.12 pgoyette break;
5713 1.12 pgoyette };
5714 1.12 pgoyette break;
5715 1.12 pgoyette #if defined(NTP) || !defined(_KERNEL_OPT)
5716 1.12 pgoyette /* sys_ntp_adjtime */
5717 1.12 pgoyette case 176:
5718 1.12 pgoyette switch(ndx) {
5719 1.12 pgoyette case 0:
5720 1.12 pgoyette p = "struct timex *";
5721 1.12 pgoyette break;
5722 1.12 pgoyette default:
5723 1.12 pgoyette break;
5724 1.12 pgoyette };
5725 1.12 pgoyette break;
5726 1.12 pgoyette #else
5727 1.12 pgoyette #endif
5728 1.12 pgoyette /* sys_setgid */
5729 1.12 pgoyette case 181:
5730 1.12 pgoyette switch(ndx) {
5731 1.12 pgoyette case 0:
5732 1.12 pgoyette p = "gid_t";
5733 1.12 pgoyette break;
5734 1.12 pgoyette default:
5735 1.12 pgoyette break;
5736 1.12 pgoyette };
5737 1.12 pgoyette break;
5738 1.12 pgoyette /* sys_setegid */
5739 1.12 pgoyette case 182:
5740 1.12 pgoyette switch(ndx) {
5741 1.12 pgoyette case 0:
5742 1.12 pgoyette p = "gid_t";
5743 1.12 pgoyette break;
5744 1.12 pgoyette default:
5745 1.12 pgoyette break;
5746 1.12 pgoyette };
5747 1.12 pgoyette break;
5748 1.12 pgoyette /* sys_seteuid */
5749 1.12 pgoyette case 183:
5750 1.12 pgoyette switch(ndx) {
5751 1.12 pgoyette case 0:
5752 1.12 pgoyette p = "uid_t";
5753 1.12 pgoyette break;
5754 1.12 pgoyette default:
5755 1.12 pgoyette break;
5756 1.12 pgoyette };
5757 1.12 pgoyette break;
5758 1.12 pgoyette /* sys_lfs_bmapv */
5759 1.12 pgoyette case 184:
5760 1.12 pgoyette switch(ndx) {
5761 1.12 pgoyette case 0:
5762 1.12 pgoyette p = "fsid_t *";
5763 1.12 pgoyette break;
5764 1.12 pgoyette case 1:
5765 1.12 pgoyette p = "struct block_info *";
5766 1.12 pgoyette break;
5767 1.12 pgoyette case 2:
5768 1.12 pgoyette p = "int";
5769 1.12 pgoyette break;
5770 1.12 pgoyette default:
5771 1.12 pgoyette break;
5772 1.12 pgoyette };
5773 1.12 pgoyette break;
5774 1.12 pgoyette /* sys_lfs_markv */
5775 1.12 pgoyette case 185:
5776 1.12 pgoyette switch(ndx) {
5777 1.12 pgoyette case 0:
5778 1.12 pgoyette p = "fsid_t *";
5779 1.12 pgoyette break;
5780 1.12 pgoyette case 1:
5781 1.12 pgoyette p = "struct block_info *";
5782 1.12 pgoyette break;
5783 1.12 pgoyette case 2:
5784 1.12 pgoyette p = "int";
5785 1.12 pgoyette break;
5786 1.12 pgoyette default:
5787 1.12 pgoyette break;
5788 1.12 pgoyette };
5789 1.12 pgoyette break;
5790 1.12 pgoyette /* sys_lfs_segclean */
5791 1.12 pgoyette case 186:
5792 1.12 pgoyette switch(ndx) {
5793 1.12 pgoyette case 0:
5794 1.12 pgoyette p = "fsid_t *";
5795 1.12 pgoyette break;
5796 1.12 pgoyette case 1:
5797 1.12 pgoyette p = "u_long";
5798 1.12 pgoyette break;
5799 1.12 pgoyette default:
5800 1.12 pgoyette break;
5801 1.12 pgoyette };
5802 1.12 pgoyette break;
5803 1.12 pgoyette /* sys_lfs_segwait */
5804 1.12 pgoyette case 187:
5805 1.12 pgoyette switch(ndx) {
5806 1.12 pgoyette case 0:
5807 1.12 pgoyette p = "fsid_t *";
5808 1.12 pgoyette break;
5809 1.12 pgoyette case 1:
5810 1.12 pgoyette p = "struct timeval50 *";
5811 1.12 pgoyette break;
5812 1.12 pgoyette default:
5813 1.12 pgoyette break;
5814 1.12 pgoyette };
5815 1.12 pgoyette break;
5816 1.12 pgoyette /* sys_stat */
5817 1.12 pgoyette case 188:
5818 1.12 pgoyette switch(ndx) {
5819 1.12 pgoyette case 0:
5820 1.12 pgoyette p = "const char *";
5821 1.12 pgoyette break;
5822 1.12 pgoyette case 1:
5823 1.12 pgoyette p = "struct stat12 *";
5824 1.12 pgoyette break;
5825 1.12 pgoyette default:
5826 1.12 pgoyette break;
5827 1.12 pgoyette };
5828 1.12 pgoyette break;
5829 1.12 pgoyette /* sys_fstat */
5830 1.12 pgoyette case 189:
5831 1.12 pgoyette switch(ndx) {
5832 1.12 pgoyette case 0:
5833 1.12 pgoyette p = "int";
5834 1.12 pgoyette break;
5835 1.12 pgoyette case 1:
5836 1.12 pgoyette p = "struct stat12 *";
5837 1.12 pgoyette break;
5838 1.12 pgoyette default:
5839 1.12 pgoyette break;
5840 1.12 pgoyette };
5841 1.12 pgoyette break;
5842 1.12 pgoyette /* sys_lstat */
5843 1.12 pgoyette case 190:
5844 1.12 pgoyette switch(ndx) {
5845 1.12 pgoyette case 0:
5846 1.12 pgoyette p = "const char *";
5847 1.12 pgoyette break;
5848 1.12 pgoyette case 1:
5849 1.12 pgoyette p = "struct stat12 *";
5850 1.12 pgoyette break;
5851 1.12 pgoyette default:
5852 1.12 pgoyette break;
5853 1.12 pgoyette };
5854 1.12 pgoyette break;
5855 1.12 pgoyette /* sys_pathconf */
5856 1.12 pgoyette case 191:
5857 1.12 pgoyette switch(ndx) {
5858 1.12 pgoyette case 0:
5859 1.12 pgoyette p = "const char *";
5860 1.12 pgoyette break;
5861 1.12 pgoyette case 1:
5862 1.12 pgoyette p = "int";
5863 1.12 pgoyette break;
5864 1.12 pgoyette default:
5865 1.12 pgoyette break;
5866 1.12 pgoyette };
5867 1.12 pgoyette break;
5868 1.12 pgoyette /* sys_fpathconf */
5869 1.12 pgoyette case 192:
5870 1.12 pgoyette switch(ndx) {
5871 1.12 pgoyette case 0:
5872 1.12 pgoyette p = "int";
5873 1.12 pgoyette break;
5874 1.12 pgoyette case 1:
5875 1.12 pgoyette p = "int";
5876 1.12 pgoyette break;
5877 1.12 pgoyette default:
5878 1.12 pgoyette break;
5879 1.12 pgoyette };
5880 1.12 pgoyette break;
5881 1.12 pgoyette /* sys_getrlimit */
5882 1.12 pgoyette case 194:
5883 1.12 pgoyette switch(ndx) {
5884 1.12 pgoyette case 0:
5885 1.12 pgoyette p = "int";
5886 1.12 pgoyette break;
5887 1.12 pgoyette case 1:
5888 1.12 pgoyette p = "struct rlimit *";
5889 1.12 pgoyette break;
5890 1.12 pgoyette default:
5891 1.12 pgoyette break;
5892 1.12 pgoyette };
5893 1.12 pgoyette break;
5894 1.12 pgoyette /* sys_setrlimit */
5895 1.12 pgoyette case 195:
5896 1.12 pgoyette switch(ndx) {
5897 1.12 pgoyette case 0:
5898 1.12 pgoyette p = "int";
5899 1.12 pgoyette break;
5900 1.12 pgoyette case 1:
5901 1.12 pgoyette p = "const struct rlimit *";
5902 1.12 pgoyette break;
5903 1.12 pgoyette default:
5904 1.12 pgoyette break;
5905 1.12 pgoyette };
5906 1.12 pgoyette break;
5907 1.12 pgoyette /* sys_getdirentries */
5908 1.12 pgoyette case 196:
5909 1.12 pgoyette switch(ndx) {
5910 1.12 pgoyette case 0:
5911 1.12 pgoyette p = "int";
5912 1.12 pgoyette break;
5913 1.12 pgoyette case 1:
5914 1.12 pgoyette p = "char *";
5915 1.12 pgoyette break;
5916 1.12 pgoyette case 2:
5917 1.12 pgoyette p = "u_int";
5918 1.12 pgoyette break;
5919 1.12 pgoyette case 3:
5920 1.12 pgoyette p = "long *";
5921 1.12 pgoyette break;
5922 1.12 pgoyette default:
5923 1.12 pgoyette break;
5924 1.12 pgoyette };
5925 1.12 pgoyette break;
5926 1.12 pgoyette /* sys_mmap */
5927 1.12 pgoyette case 197:
5928 1.12 pgoyette switch(ndx) {
5929 1.12 pgoyette case 0:
5930 1.12 pgoyette p = "void *";
5931 1.12 pgoyette break;
5932 1.12 pgoyette case 1:
5933 1.12 pgoyette p = "size_t";
5934 1.12 pgoyette break;
5935 1.12 pgoyette case 2:
5936 1.12 pgoyette p = "int";
5937 1.12 pgoyette break;
5938 1.12 pgoyette case 3:
5939 1.12 pgoyette p = "int";
5940 1.12 pgoyette break;
5941 1.12 pgoyette case 4:
5942 1.12 pgoyette p = "int";
5943 1.12 pgoyette break;
5944 1.12 pgoyette case 5:
5945 1.12 pgoyette p = "long";
5946 1.12 pgoyette break;
5947 1.12 pgoyette case 6:
5948 1.12 pgoyette p = "off_t";
5949 1.12 pgoyette break;
5950 1.12 pgoyette default:
5951 1.12 pgoyette break;
5952 1.12 pgoyette };
5953 1.12 pgoyette break;
5954 1.12 pgoyette /* sys___syscall */
5955 1.12 pgoyette case 198:
5956 1.12 pgoyette switch(ndx) {
5957 1.12 pgoyette case 0:
5958 1.12 pgoyette p = "quad_t";
5959 1.12 pgoyette break;
5960 1.12 pgoyette case 1:
5961 1.12 pgoyette p = "register_t";
5962 1.12 pgoyette break;
5963 1.12 pgoyette default:
5964 1.12 pgoyette break;
5965 1.12 pgoyette };
5966 1.12 pgoyette break;
5967 1.12 pgoyette /* sys_lseek */
5968 1.12 pgoyette case 199:
5969 1.12 pgoyette switch(ndx) {
5970 1.12 pgoyette case 0:
5971 1.12 pgoyette p = "int";
5972 1.12 pgoyette break;
5973 1.12 pgoyette case 1:
5974 1.12 pgoyette p = "int";
5975 1.12 pgoyette break;
5976 1.12 pgoyette case 2:
5977 1.12 pgoyette p = "off_t";
5978 1.12 pgoyette break;
5979 1.12 pgoyette case 3:
5980 1.12 pgoyette p = "int";
5981 1.12 pgoyette break;
5982 1.12 pgoyette default:
5983 1.12 pgoyette break;
5984 1.12 pgoyette };
5985 1.12 pgoyette break;
5986 1.12 pgoyette /* sys_truncate */
5987 1.12 pgoyette case 200:
5988 1.12 pgoyette switch(ndx) {
5989 1.12 pgoyette case 0:
5990 1.12 pgoyette p = "const char *";
5991 1.12 pgoyette break;
5992 1.12 pgoyette case 1:
5993 1.12 pgoyette p = "int";
5994 1.12 pgoyette break;
5995 1.12 pgoyette case 2:
5996 1.12 pgoyette p = "off_t";
5997 1.12 pgoyette break;
5998 1.12 pgoyette default:
5999 1.12 pgoyette break;
6000 1.12 pgoyette };
6001 1.12 pgoyette break;
6002 1.12 pgoyette /* sys_ftruncate */
6003 1.12 pgoyette case 201:
6004 1.12 pgoyette switch(ndx) {
6005 1.12 pgoyette case 0:
6006 1.12 pgoyette p = "int";
6007 1.12 pgoyette break;
6008 1.12 pgoyette case 1:
6009 1.12 pgoyette p = "int";
6010 1.12 pgoyette break;
6011 1.12 pgoyette case 2:
6012 1.12 pgoyette p = "off_t";
6013 1.12 pgoyette break;
6014 1.12 pgoyette default:
6015 1.12 pgoyette break;
6016 1.12 pgoyette };
6017 1.12 pgoyette break;
6018 1.12 pgoyette /* sys___sysctl */
6019 1.12 pgoyette case 202:
6020 1.12 pgoyette switch(ndx) {
6021 1.12 pgoyette case 0:
6022 1.12 pgoyette p = "const int *";
6023 1.12 pgoyette break;
6024 1.12 pgoyette case 1:
6025 1.12 pgoyette p = "u_int";
6026 1.12 pgoyette break;
6027 1.12 pgoyette case 2:
6028 1.12 pgoyette p = "void *";
6029 1.12 pgoyette break;
6030 1.12 pgoyette case 3:
6031 1.12 pgoyette p = "size_t *";
6032 1.12 pgoyette break;
6033 1.12 pgoyette case 4:
6034 1.12 pgoyette p = "const void *";
6035 1.12 pgoyette break;
6036 1.12 pgoyette case 5:
6037 1.12 pgoyette p = "size_t";
6038 1.12 pgoyette break;
6039 1.12 pgoyette default:
6040 1.12 pgoyette break;
6041 1.12 pgoyette };
6042 1.12 pgoyette break;
6043 1.12 pgoyette /* sys_mlock */
6044 1.12 pgoyette case 203:
6045 1.12 pgoyette switch(ndx) {
6046 1.12 pgoyette case 0:
6047 1.12 pgoyette p = "const void *";
6048 1.12 pgoyette break;
6049 1.12 pgoyette case 1:
6050 1.12 pgoyette p = "size_t";
6051 1.12 pgoyette break;
6052 1.12 pgoyette default:
6053 1.12 pgoyette break;
6054 1.12 pgoyette };
6055 1.12 pgoyette break;
6056 1.12 pgoyette /* sys_munlock */
6057 1.12 pgoyette case 204:
6058 1.12 pgoyette switch(ndx) {
6059 1.12 pgoyette case 0:
6060 1.12 pgoyette p = "const void *";
6061 1.12 pgoyette break;
6062 1.12 pgoyette case 1:
6063 1.12 pgoyette p = "size_t";
6064 1.12 pgoyette break;
6065 1.12 pgoyette default:
6066 1.12 pgoyette break;
6067 1.12 pgoyette };
6068 1.12 pgoyette break;
6069 1.12 pgoyette /* sys_undelete */
6070 1.12 pgoyette case 205:
6071 1.12 pgoyette switch(ndx) {
6072 1.12 pgoyette case 0:
6073 1.12 pgoyette p = "const char *";
6074 1.12 pgoyette break;
6075 1.12 pgoyette default:
6076 1.12 pgoyette break;
6077 1.12 pgoyette };
6078 1.12 pgoyette break;
6079 1.12 pgoyette /* sys_futimes */
6080 1.12 pgoyette case 206:
6081 1.12 pgoyette switch(ndx) {
6082 1.12 pgoyette case 0:
6083 1.12 pgoyette p = "int";
6084 1.12 pgoyette break;
6085 1.12 pgoyette case 1:
6086 1.12 pgoyette p = "const struct timeval50 *";
6087 1.12 pgoyette break;
6088 1.12 pgoyette default:
6089 1.12 pgoyette break;
6090 1.12 pgoyette };
6091 1.12 pgoyette break;
6092 1.12 pgoyette /* sys_getpgid */
6093 1.12 pgoyette case 207:
6094 1.12 pgoyette switch(ndx) {
6095 1.12 pgoyette case 0:
6096 1.12 pgoyette p = "pid_t";
6097 1.12 pgoyette break;
6098 1.12 pgoyette default:
6099 1.12 pgoyette break;
6100 1.12 pgoyette };
6101 1.12 pgoyette break;
6102 1.12 pgoyette /* sys_reboot */
6103 1.12 pgoyette case 208:
6104 1.12 pgoyette switch(ndx) {
6105 1.12 pgoyette case 0:
6106 1.12 pgoyette p = "int";
6107 1.12 pgoyette break;
6108 1.12 pgoyette case 1:
6109 1.12 pgoyette p = "char *";
6110 1.12 pgoyette break;
6111 1.12 pgoyette default:
6112 1.12 pgoyette break;
6113 1.12 pgoyette };
6114 1.12 pgoyette break;
6115 1.12 pgoyette /* sys_poll */
6116 1.12 pgoyette case 209:
6117 1.12 pgoyette switch(ndx) {
6118 1.12 pgoyette case 0:
6119 1.12 pgoyette p = "struct pollfd *";
6120 1.12 pgoyette break;
6121 1.12 pgoyette case 1:
6122 1.12 pgoyette p = "u_int";
6123 1.12 pgoyette break;
6124 1.12 pgoyette case 2:
6125 1.12 pgoyette p = "int";
6126 1.12 pgoyette break;
6127 1.12 pgoyette default:
6128 1.12 pgoyette break;
6129 1.12 pgoyette };
6130 1.12 pgoyette break;
6131 1.12 pgoyette /* sys_afssys */
6132 1.12 pgoyette case 210:
6133 1.12 pgoyette switch(ndx) {
6134 1.12 pgoyette case 0:
6135 1.12 pgoyette p = "long";
6136 1.12 pgoyette break;
6137 1.12 pgoyette case 1:
6138 1.12 pgoyette p = "long";
6139 1.12 pgoyette break;
6140 1.12 pgoyette case 2:
6141 1.12 pgoyette p = "long";
6142 1.12 pgoyette break;
6143 1.12 pgoyette case 3:
6144 1.12 pgoyette p = "long";
6145 1.12 pgoyette break;
6146 1.12 pgoyette case 4:
6147 1.12 pgoyette p = "long";
6148 1.12 pgoyette break;
6149 1.12 pgoyette case 5:
6150 1.12 pgoyette p = "long";
6151 1.12 pgoyette break;
6152 1.12 pgoyette case 6:
6153 1.12 pgoyette p = "long";
6154 1.12 pgoyette break;
6155 1.12 pgoyette default:
6156 1.12 pgoyette break;
6157 1.12 pgoyette };
6158 1.12 pgoyette break;
6159 1.12 pgoyette /* sys___semctl */
6160 1.12 pgoyette case 220:
6161 1.12 pgoyette switch(ndx) {
6162 1.12 pgoyette case 0:
6163 1.12 pgoyette p = "int";
6164 1.12 pgoyette break;
6165 1.12 pgoyette case 1:
6166 1.12 pgoyette p = "int";
6167 1.12 pgoyette break;
6168 1.12 pgoyette case 2:
6169 1.12 pgoyette p = "int";
6170 1.12 pgoyette break;
6171 1.12 pgoyette case 3:
6172 1.12 pgoyette p = "union __semun *";
6173 1.12 pgoyette break;
6174 1.12 pgoyette default:
6175 1.12 pgoyette break;
6176 1.12 pgoyette };
6177 1.12 pgoyette break;
6178 1.12 pgoyette /* sys_semget */
6179 1.12 pgoyette case 221:
6180 1.12 pgoyette switch(ndx) {
6181 1.12 pgoyette case 0:
6182 1.12 pgoyette p = "key_t";
6183 1.12 pgoyette break;
6184 1.12 pgoyette case 1:
6185 1.12 pgoyette p = "int";
6186 1.12 pgoyette break;
6187 1.12 pgoyette case 2:
6188 1.12 pgoyette p = "int";
6189 1.12 pgoyette break;
6190 1.12 pgoyette default:
6191 1.12 pgoyette break;
6192 1.12 pgoyette };
6193 1.12 pgoyette break;
6194 1.12 pgoyette /* sys_semop */
6195 1.12 pgoyette case 222:
6196 1.12 pgoyette switch(ndx) {
6197 1.12 pgoyette case 0:
6198 1.12 pgoyette p = "int";
6199 1.12 pgoyette break;
6200 1.12 pgoyette case 1:
6201 1.12 pgoyette p = "struct sembuf *";
6202 1.12 pgoyette break;
6203 1.12 pgoyette case 2:
6204 1.12 pgoyette p = "size_t";
6205 1.12 pgoyette break;
6206 1.12 pgoyette default:
6207 1.12 pgoyette break;
6208 1.12 pgoyette };
6209 1.12 pgoyette break;
6210 1.12 pgoyette /* sys_semconfig */
6211 1.12 pgoyette case 223:
6212 1.12 pgoyette switch(ndx) {
6213 1.12 pgoyette case 0:
6214 1.12 pgoyette p = "int";
6215 1.12 pgoyette break;
6216 1.12 pgoyette default:
6217 1.12 pgoyette break;
6218 1.12 pgoyette };
6219 1.12 pgoyette break;
6220 1.12 pgoyette /* sys_msgctl */
6221 1.12 pgoyette case 224:
6222 1.12 pgoyette switch(ndx) {
6223 1.12 pgoyette case 0:
6224 1.12 pgoyette p = "int";
6225 1.12 pgoyette break;
6226 1.12 pgoyette case 1:
6227 1.12 pgoyette p = "int";
6228 1.12 pgoyette break;
6229 1.12 pgoyette case 2:
6230 1.12 pgoyette p = "struct msqid_ds14 *";
6231 1.12 pgoyette break;
6232 1.12 pgoyette default:
6233 1.12 pgoyette break;
6234 1.12 pgoyette };
6235 1.12 pgoyette break;
6236 1.12 pgoyette /* sys_msgget */
6237 1.12 pgoyette case 225:
6238 1.12 pgoyette switch(ndx) {
6239 1.12 pgoyette case 0:
6240 1.12 pgoyette p = "key_t";
6241 1.12 pgoyette break;
6242 1.12 pgoyette case 1:
6243 1.12 pgoyette p = "int";
6244 1.12 pgoyette break;
6245 1.12 pgoyette default:
6246 1.12 pgoyette break;
6247 1.12 pgoyette };
6248 1.12 pgoyette break;
6249 1.12 pgoyette /* sys_msgsnd */
6250 1.12 pgoyette case 226:
6251 1.12 pgoyette switch(ndx) {
6252 1.12 pgoyette case 0:
6253 1.12 pgoyette p = "int";
6254 1.12 pgoyette break;
6255 1.12 pgoyette case 1:
6256 1.12 pgoyette p = "const void *";
6257 1.12 pgoyette break;
6258 1.12 pgoyette case 2:
6259 1.12 pgoyette p = "size_t";
6260 1.12 pgoyette break;
6261 1.12 pgoyette case 3:
6262 1.12 pgoyette p = "int";
6263 1.12 pgoyette break;
6264 1.12 pgoyette default:
6265 1.12 pgoyette break;
6266 1.12 pgoyette };
6267 1.12 pgoyette break;
6268 1.12 pgoyette /* sys_msgrcv */
6269 1.12 pgoyette case 227:
6270 1.12 pgoyette switch(ndx) {
6271 1.12 pgoyette case 0:
6272 1.12 pgoyette p = "int";
6273 1.12 pgoyette break;
6274 1.12 pgoyette case 1:
6275 1.12 pgoyette p = "void *";
6276 1.12 pgoyette break;
6277 1.12 pgoyette case 2:
6278 1.12 pgoyette p = "size_t";
6279 1.12 pgoyette break;
6280 1.12 pgoyette case 3:
6281 1.12 pgoyette p = "long";
6282 1.12 pgoyette break;
6283 1.12 pgoyette case 4:
6284 1.12 pgoyette p = "int";
6285 1.12 pgoyette break;
6286 1.12 pgoyette default:
6287 1.12 pgoyette break;
6288 1.12 pgoyette };
6289 1.12 pgoyette break;
6290 1.12 pgoyette /* sys_shmat */
6291 1.12 pgoyette case 228:
6292 1.12 pgoyette switch(ndx) {
6293 1.12 pgoyette case 0:
6294 1.12 pgoyette p = "int";
6295 1.12 pgoyette break;
6296 1.12 pgoyette case 1:
6297 1.12 pgoyette p = "const void *";
6298 1.12 pgoyette break;
6299 1.12 pgoyette case 2:
6300 1.12 pgoyette p = "int";
6301 1.12 pgoyette break;
6302 1.12 pgoyette default:
6303 1.12 pgoyette break;
6304 1.12 pgoyette };
6305 1.12 pgoyette break;
6306 1.12 pgoyette /* sys_shmctl */
6307 1.12 pgoyette case 229:
6308 1.12 pgoyette switch(ndx) {
6309 1.12 pgoyette case 0:
6310 1.12 pgoyette p = "int";
6311 1.12 pgoyette break;
6312 1.12 pgoyette case 1:
6313 1.12 pgoyette p = "int";
6314 1.12 pgoyette break;
6315 1.12 pgoyette case 2:
6316 1.12 pgoyette p = "struct shmid_ds14 *";
6317 1.12 pgoyette break;
6318 1.12 pgoyette default:
6319 1.12 pgoyette break;
6320 1.12 pgoyette };
6321 1.12 pgoyette break;
6322 1.12 pgoyette /* sys_shmdt */
6323 1.12 pgoyette case 230:
6324 1.12 pgoyette switch(ndx) {
6325 1.12 pgoyette case 0:
6326 1.12 pgoyette p = "const void *";
6327 1.12 pgoyette break;
6328 1.12 pgoyette default:
6329 1.12 pgoyette break;
6330 1.12 pgoyette };
6331 1.12 pgoyette break;
6332 1.12 pgoyette /* sys_shmget */
6333 1.12 pgoyette case 231:
6334 1.12 pgoyette switch(ndx) {
6335 1.12 pgoyette case 0:
6336 1.12 pgoyette p = "key_t";
6337 1.12 pgoyette break;
6338 1.12 pgoyette case 1:
6339 1.12 pgoyette p = "size_t";
6340 1.12 pgoyette break;
6341 1.12 pgoyette case 2:
6342 1.12 pgoyette p = "int";
6343 1.12 pgoyette break;
6344 1.12 pgoyette default:
6345 1.12 pgoyette break;
6346 1.12 pgoyette };
6347 1.12 pgoyette break;
6348 1.12 pgoyette /* sys_clock_gettime */
6349 1.12 pgoyette case 232:
6350 1.12 pgoyette switch(ndx) {
6351 1.12 pgoyette case 0:
6352 1.12 pgoyette p = "clockid_t";
6353 1.12 pgoyette break;
6354 1.12 pgoyette case 1:
6355 1.12 pgoyette p = "struct timespec50 *";
6356 1.12 pgoyette break;
6357 1.12 pgoyette default:
6358 1.12 pgoyette break;
6359 1.12 pgoyette };
6360 1.12 pgoyette break;
6361 1.12 pgoyette /* sys_clock_settime */
6362 1.12 pgoyette case 233:
6363 1.12 pgoyette switch(ndx) {
6364 1.12 pgoyette case 0:
6365 1.12 pgoyette p = "clockid_t";
6366 1.12 pgoyette break;
6367 1.12 pgoyette case 1:
6368 1.12 pgoyette p = "const struct timespec50 *";
6369 1.12 pgoyette break;
6370 1.12 pgoyette default:
6371 1.12 pgoyette break;
6372 1.12 pgoyette };
6373 1.12 pgoyette break;
6374 1.12 pgoyette /* sys_clock_getres */
6375 1.12 pgoyette case 234:
6376 1.12 pgoyette switch(ndx) {
6377 1.12 pgoyette case 0:
6378 1.12 pgoyette p = "clockid_t";
6379 1.12 pgoyette break;
6380 1.12 pgoyette case 1:
6381 1.12 pgoyette p = "struct timespec50 *";
6382 1.12 pgoyette break;
6383 1.12 pgoyette default:
6384 1.12 pgoyette break;
6385 1.12 pgoyette };
6386 1.12 pgoyette break;
6387 1.12 pgoyette /* sys_timer_create */
6388 1.12 pgoyette case 235:
6389 1.12 pgoyette switch(ndx) {
6390 1.12 pgoyette case 0:
6391 1.12 pgoyette p = "clockid_t";
6392 1.12 pgoyette break;
6393 1.12 pgoyette case 1:
6394 1.12 pgoyette p = "struct sigevent *";
6395 1.12 pgoyette break;
6396 1.12 pgoyette case 2:
6397 1.12 pgoyette p = "timer_t *";
6398 1.12 pgoyette break;
6399 1.12 pgoyette default:
6400 1.12 pgoyette break;
6401 1.12 pgoyette };
6402 1.12 pgoyette break;
6403 1.12 pgoyette /* sys_timer_delete */
6404 1.12 pgoyette case 236:
6405 1.12 pgoyette switch(ndx) {
6406 1.12 pgoyette case 0:
6407 1.12 pgoyette p = "timer_t";
6408 1.12 pgoyette break;
6409 1.12 pgoyette default:
6410 1.12 pgoyette break;
6411 1.12 pgoyette };
6412 1.12 pgoyette break;
6413 1.12 pgoyette /* sys_timer_settime */
6414 1.12 pgoyette case 237:
6415 1.12 pgoyette switch(ndx) {
6416 1.12 pgoyette case 0:
6417 1.12 pgoyette p = "timer_t";
6418 1.12 pgoyette break;
6419 1.12 pgoyette case 1:
6420 1.12 pgoyette p = "int";
6421 1.12 pgoyette break;
6422 1.12 pgoyette case 2:
6423 1.12 pgoyette p = "const struct itimerspec50 *";
6424 1.12 pgoyette break;
6425 1.12 pgoyette case 3:
6426 1.12 pgoyette p = "struct itimerspec50 *";
6427 1.12 pgoyette break;
6428 1.12 pgoyette default:
6429 1.12 pgoyette break;
6430 1.12 pgoyette };
6431 1.12 pgoyette break;
6432 1.12 pgoyette /* sys_timer_gettime */
6433 1.12 pgoyette case 238:
6434 1.12 pgoyette switch(ndx) {
6435 1.12 pgoyette case 0:
6436 1.12 pgoyette p = "timer_t";
6437 1.12 pgoyette break;
6438 1.12 pgoyette case 1:
6439 1.12 pgoyette p = "struct itimerspec50 *";
6440 1.12 pgoyette break;
6441 1.12 pgoyette default:
6442 1.12 pgoyette break;
6443 1.12 pgoyette };
6444 1.12 pgoyette break;
6445 1.12 pgoyette /* sys_timer_getoverrun */
6446 1.12 pgoyette case 239:
6447 1.12 pgoyette switch(ndx) {
6448 1.12 pgoyette case 0:
6449 1.12 pgoyette p = "timer_t";
6450 1.12 pgoyette break;
6451 1.12 pgoyette default:
6452 1.12 pgoyette break;
6453 1.12 pgoyette };
6454 1.12 pgoyette break;
6455 1.12 pgoyette /* sys_nanosleep */
6456 1.12 pgoyette case 240:
6457 1.12 pgoyette switch(ndx) {
6458 1.12 pgoyette case 0:
6459 1.12 pgoyette p = "const struct timespec50 *";
6460 1.12 pgoyette break;
6461 1.12 pgoyette case 1:
6462 1.12 pgoyette p = "struct timespec50 *";
6463 1.12 pgoyette break;
6464 1.12 pgoyette default:
6465 1.12 pgoyette break;
6466 1.12 pgoyette };
6467 1.12 pgoyette break;
6468 1.12 pgoyette /* sys_fdatasync */
6469 1.12 pgoyette case 241:
6470 1.12 pgoyette switch(ndx) {
6471 1.12 pgoyette case 0:
6472 1.12 pgoyette p = "int";
6473 1.12 pgoyette break;
6474 1.12 pgoyette default:
6475 1.12 pgoyette break;
6476 1.12 pgoyette };
6477 1.12 pgoyette break;
6478 1.12 pgoyette /* sys_mlockall */
6479 1.12 pgoyette case 242:
6480 1.12 pgoyette switch(ndx) {
6481 1.12 pgoyette case 0:
6482 1.12 pgoyette p = "int";
6483 1.12 pgoyette break;
6484 1.12 pgoyette default:
6485 1.12 pgoyette break;
6486 1.12 pgoyette };
6487 1.12 pgoyette break;
6488 1.12 pgoyette /* sys_munlockall */
6489 1.12 pgoyette case 243:
6490 1.12 pgoyette break;
6491 1.12 pgoyette /* sys___sigtimedwait */
6492 1.12 pgoyette case 244:
6493 1.12 pgoyette switch(ndx) {
6494 1.12 pgoyette case 0:
6495 1.12 pgoyette p = "const sigset_t *";
6496 1.12 pgoyette break;
6497 1.12 pgoyette case 1:
6498 1.12 pgoyette p = "siginfo_t *";
6499 1.12 pgoyette break;
6500 1.12 pgoyette case 2:
6501 1.12 pgoyette p = "struct timespec50 *";
6502 1.12 pgoyette break;
6503 1.12 pgoyette default:
6504 1.12 pgoyette break;
6505 1.12 pgoyette };
6506 1.12 pgoyette break;
6507 1.12 pgoyette /* sys_sigqueueinfo */
6508 1.12 pgoyette case 245:
6509 1.12 pgoyette switch(ndx) {
6510 1.12 pgoyette case 0:
6511 1.12 pgoyette p = "pid_t";
6512 1.12 pgoyette break;
6513 1.12 pgoyette case 1:
6514 1.12 pgoyette p = "const siginfo_t *";
6515 1.12 pgoyette break;
6516 1.12 pgoyette default:
6517 1.12 pgoyette break;
6518 1.12 pgoyette };
6519 1.12 pgoyette break;
6520 1.12 pgoyette /* sys_modctl */
6521 1.12 pgoyette case 246:
6522 1.12 pgoyette switch(ndx) {
6523 1.12 pgoyette case 0:
6524 1.12 pgoyette p = "int";
6525 1.12 pgoyette break;
6526 1.12 pgoyette case 1:
6527 1.12 pgoyette p = "void *";
6528 1.12 pgoyette break;
6529 1.12 pgoyette default:
6530 1.12 pgoyette break;
6531 1.12 pgoyette };
6532 1.12 pgoyette break;
6533 1.12 pgoyette /* sys__ksem_init */
6534 1.12 pgoyette case 247:
6535 1.12 pgoyette switch(ndx) {
6536 1.12 pgoyette case 0:
6537 1.12 pgoyette p = "unsigned int";
6538 1.12 pgoyette break;
6539 1.12 pgoyette case 1:
6540 1.12 pgoyette p = "intptr_t *";
6541 1.12 pgoyette break;
6542 1.12 pgoyette default:
6543 1.12 pgoyette break;
6544 1.12 pgoyette };
6545 1.12 pgoyette break;
6546 1.12 pgoyette /* sys__ksem_open */
6547 1.12 pgoyette case 248:
6548 1.12 pgoyette switch(ndx) {
6549 1.12 pgoyette case 0:
6550 1.12 pgoyette p = "const char *";
6551 1.12 pgoyette break;
6552 1.12 pgoyette case 1:
6553 1.12 pgoyette p = "int";
6554 1.12 pgoyette break;
6555 1.12 pgoyette case 2:
6556 1.12 pgoyette p = "mode_t";
6557 1.12 pgoyette break;
6558 1.12 pgoyette case 3:
6559 1.12 pgoyette p = "unsigned int";
6560 1.12 pgoyette break;
6561 1.12 pgoyette case 4:
6562 1.12 pgoyette p = "intptr_t *";
6563 1.12 pgoyette break;
6564 1.12 pgoyette default:
6565 1.12 pgoyette break;
6566 1.12 pgoyette };
6567 1.12 pgoyette break;
6568 1.12 pgoyette /* sys__ksem_unlink */
6569 1.12 pgoyette case 249:
6570 1.12 pgoyette switch(ndx) {
6571 1.12 pgoyette case 0:
6572 1.12 pgoyette p = "const char *";
6573 1.12 pgoyette break;
6574 1.12 pgoyette default:
6575 1.12 pgoyette break;
6576 1.12 pgoyette };
6577 1.12 pgoyette break;
6578 1.12 pgoyette /* sys__ksem_close */
6579 1.12 pgoyette case 250:
6580 1.12 pgoyette switch(ndx) {
6581 1.12 pgoyette case 0:
6582 1.12 pgoyette p = "intptr_t";
6583 1.12 pgoyette break;
6584 1.12 pgoyette default:
6585 1.12 pgoyette break;
6586 1.12 pgoyette };
6587 1.12 pgoyette break;
6588 1.12 pgoyette /* sys__ksem_post */
6589 1.12 pgoyette case 251:
6590 1.12 pgoyette switch(ndx) {
6591 1.12 pgoyette case 0:
6592 1.12 pgoyette p = "intptr_t";
6593 1.12 pgoyette break;
6594 1.12 pgoyette default:
6595 1.12 pgoyette break;
6596 1.12 pgoyette };
6597 1.12 pgoyette break;
6598 1.12 pgoyette /* sys__ksem_wait */
6599 1.12 pgoyette case 252:
6600 1.12 pgoyette switch(ndx) {
6601 1.12 pgoyette case 0:
6602 1.12 pgoyette p = "intptr_t";
6603 1.12 pgoyette break;
6604 1.12 pgoyette default:
6605 1.12 pgoyette break;
6606 1.12 pgoyette };
6607 1.12 pgoyette break;
6608 1.12 pgoyette /* sys__ksem_trywait */
6609 1.12 pgoyette case 253:
6610 1.12 pgoyette switch(ndx) {
6611 1.12 pgoyette case 0:
6612 1.12 pgoyette p = "intptr_t";
6613 1.12 pgoyette break;
6614 1.12 pgoyette default:
6615 1.12 pgoyette break;
6616 1.12 pgoyette };
6617 1.12 pgoyette break;
6618 1.12 pgoyette /* sys__ksem_getvalue */
6619 1.12 pgoyette case 254:
6620 1.12 pgoyette switch(ndx) {
6621 1.12 pgoyette case 0:
6622 1.12 pgoyette p = "intptr_t";
6623 1.12 pgoyette break;
6624 1.12 pgoyette case 1:
6625 1.12 pgoyette p = "unsigned int *";
6626 1.12 pgoyette break;
6627 1.12 pgoyette default:
6628 1.12 pgoyette break;
6629 1.12 pgoyette };
6630 1.12 pgoyette break;
6631 1.12 pgoyette /* sys__ksem_destroy */
6632 1.12 pgoyette case 255:
6633 1.12 pgoyette switch(ndx) {
6634 1.12 pgoyette case 0:
6635 1.12 pgoyette p = "intptr_t";
6636 1.12 pgoyette break;
6637 1.12 pgoyette default:
6638 1.12 pgoyette break;
6639 1.12 pgoyette };
6640 1.12 pgoyette break;
6641 1.12 pgoyette /* sys__ksem_timedwait */
6642 1.12 pgoyette case 256:
6643 1.12 pgoyette switch(ndx) {
6644 1.12 pgoyette case 0:
6645 1.12 pgoyette p = "intptr_t";
6646 1.12 pgoyette break;
6647 1.12 pgoyette case 1:
6648 1.12 pgoyette p = "const struct timespec *";
6649 1.12 pgoyette break;
6650 1.12 pgoyette default:
6651 1.12 pgoyette break;
6652 1.12 pgoyette };
6653 1.12 pgoyette break;
6654 1.12 pgoyette /* sys_mq_open */
6655 1.12 pgoyette case 257:
6656 1.12 pgoyette switch(ndx) {
6657 1.12 pgoyette case 0:
6658 1.12 pgoyette p = "const char *";
6659 1.12 pgoyette break;
6660 1.12 pgoyette case 1:
6661 1.12 pgoyette p = "int";
6662 1.12 pgoyette break;
6663 1.12 pgoyette case 2:
6664 1.12 pgoyette p = "mode_t";
6665 1.12 pgoyette break;
6666 1.12 pgoyette case 3:
6667 1.12 pgoyette p = "struct mq_attr *";
6668 1.12 pgoyette break;
6669 1.12 pgoyette default:
6670 1.12 pgoyette break;
6671 1.12 pgoyette };
6672 1.12 pgoyette break;
6673 1.12 pgoyette /* sys_mq_close */
6674 1.12 pgoyette case 258:
6675 1.12 pgoyette switch(ndx) {
6676 1.12 pgoyette case 0:
6677 1.12 pgoyette p = "mqd_t";
6678 1.12 pgoyette break;
6679 1.12 pgoyette default:
6680 1.12 pgoyette break;
6681 1.12 pgoyette };
6682 1.12 pgoyette break;
6683 1.12 pgoyette /* sys_mq_unlink */
6684 1.12 pgoyette case 259:
6685 1.12 pgoyette switch(ndx) {
6686 1.12 pgoyette case 0:
6687 1.12 pgoyette p = "const char *";
6688 1.12 pgoyette break;
6689 1.12 pgoyette default:
6690 1.12 pgoyette break;
6691 1.12 pgoyette };
6692 1.12 pgoyette break;
6693 1.12 pgoyette /* sys_mq_getattr */
6694 1.12 pgoyette case 260:
6695 1.12 pgoyette switch(ndx) {
6696 1.12 pgoyette case 0:
6697 1.12 pgoyette p = "mqd_t";
6698 1.12 pgoyette break;
6699 1.12 pgoyette case 1:
6700 1.12 pgoyette p = "struct mq_attr *";
6701 1.12 pgoyette break;
6702 1.12 pgoyette default:
6703 1.12 pgoyette break;
6704 1.12 pgoyette };
6705 1.12 pgoyette break;
6706 1.12 pgoyette /* sys_mq_setattr */
6707 1.12 pgoyette case 261:
6708 1.12 pgoyette switch(ndx) {
6709 1.12 pgoyette case 0:
6710 1.12 pgoyette p = "mqd_t";
6711 1.12 pgoyette break;
6712 1.12 pgoyette case 1:
6713 1.12 pgoyette p = "const struct mq_attr *";
6714 1.12 pgoyette break;
6715 1.12 pgoyette case 2:
6716 1.12 pgoyette p = "struct mq_attr *";
6717 1.12 pgoyette break;
6718 1.12 pgoyette default:
6719 1.12 pgoyette break;
6720 1.12 pgoyette };
6721 1.12 pgoyette break;
6722 1.12 pgoyette /* sys_mq_notify */
6723 1.12 pgoyette case 262:
6724 1.12 pgoyette switch(ndx) {
6725 1.12 pgoyette case 0:
6726 1.12 pgoyette p = "mqd_t";
6727 1.12 pgoyette break;
6728 1.12 pgoyette case 1:
6729 1.12 pgoyette p = "const struct sigevent *";
6730 1.12 pgoyette break;
6731 1.12 pgoyette default:
6732 1.12 pgoyette break;
6733 1.12 pgoyette };
6734 1.12 pgoyette break;
6735 1.12 pgoyette /* sys_mq_send */
6736 1.12 pgoyette case 263:
6737 1.12 pgoyette switch(ndx) {
6738 1.12 pgoyette case 0:
6739 1.12 pgoyette p = "mqd_t";
6740 1.12 pgoyette break;
6741 1.12 pgoyette case 1:
6742 1.12 pgoyette p = "const char *";
6743 1.12 pgoyette break;
6744 1.12 pgoyette case 2:
6745 1.12 pgoyette p = "size_t";
6746 1.12 pgoyette break;
6747 1.12 pgoyette case 3:
6748 1.12 pgoyette p = "unsigned";
6749 1.12 pgoyette break;
6750 1.12 pgoyette default:
6751 1.12 pgoyette break;
6752 1.12 pgoyette };
6753 1.12 pgoyette break;
6754 1.12 pgoyette /* sys_mq_receive */
6755 1.12 pgoyette case 264:
6756 1.12 pgoyette switch(ndx) {
6757 1.12 pgoyette case 0:
6758 1.12 pgoyette p = "mqd_t";
6759 1.12 pgoyette break;
6760 1.12 pgoyette case 1:
6761 1.12 pgoyette p = "char *";
6762 1.12 pgoyette break;
6763 1.12 pgoyette case 2:
6764 1.12 pgoyette p = "size_t";
6765 1.12 pgoyette break;
6766 1.12 pgoyette case 3:
6767 1.12 pgoyette p = "unsigned *";
6768 1.12 pgoyette break;
6769 1.12 pgoyette default:
6770 1.12 pgoyette break;
6771 1.12 pgoyette };
6772 1.12 pgoyette break;
6773 1.12 pgoyette /* sys_mq_timedsend */
6774 1.12 pgoyette case 265:
6775 1.12 pgoyette switch(ndx) {
6776 1.12 pgoyette case 0:
6777 1.12 pgoyette p = "mqd_t";
6778 1.12 pgoyette break;
6779 1.12 pgoyette case 1:
6780 1.12 pgoyette p = "const char *";
6781 1.12 pgoyette break;
6782 1.12 pgoyette case 2:
6783 1.12 pgoyette p = "size_t";
6784 1.12 pgoyette break;
6785 1.12 pgoyette case 3:
6786 1.12 pgoyette p = "unsigned";
6787 1.12 pgoyette break;
6788 1.12 pgoyette case 4:
6789 1.12 pgoyette p = "const struct timespec50 *";
6790 1.12 pgoyette break;
6791 1.12 pgoyette default:
6792 1.12 pgoyette break;
6793 1.12 pgoyette };
6794 1.12 pgoyette break;
6795 1.12 pgoyette /* sys_mq_timedreceive */
6796 1.12 pgoyette case 266:
6797 1.12 pgoyette switch(ndx) {
6798 1.12 pgoyette case 0:
6799 1.12 pgoyette p = "mqd_t";
6800 1.12 pgoyette break;
6801 1.12 pgoyette case 1:
6802 1.12 pgoyette p = "char *";
6803 1.12 pgoyette break;
6804 1.12 pgoyette case 2:
6805 1.12 pgoyette p = "size_t";
6806 1.12 pgoyette break;
6807 1.12 pgoyette case 3:
6808 1.12 pgoyette p = "unsigned *";
6809 1.12 pgoyette break;
6810 1.12 pgoyette case 4:
6811 1.12 pgoyette p = "const struct timespec50 *";
6812 1.12 pgoyette break;
6813 1.12 pgoyette default:
6814 1.12 pgoyette break;
6815 1.12 pgoyette };
6816 1.12 pgoyette break;
6817 1.12 pgoyette /* sys___posix_rename */
6818 1.12 pgoyette case 270:
6819 1.12 pgoyette switch(ndx) {
6820 1.12 pgoyette case 0:
6821 1.12 pgoyette p = "const char *";
6822 1.12 pgoyette break;
6823 1.12 pgoyette case 1:
6824 1.12 pgoyette p = "const char *";
6825 1.12 pgoyette break;
6826 1.12 pgoyette default:
6827 1.12 pgoyette break;
6828 1.12 pgoyette };
6829 1.12 pgoyette break;
6830 1.12 pgoyette /* sys_swapctl */
6831 1.12 pgoyette case 271:
6832 1.12 pgoyette switch(ndx) {
6833 1.12 pgoyette case 0:
6834 1.12 pgoyette p = "int";
6835 1.12 pgoyette break;
6836 1.12 pgoyette case 1:
6837 1.12 pgoyette p = "void *";
6838 1.12 pgoyette break;
6839 1.12 pgoyette case 2:
6840 1.12 pgoyette p = "int";
6841 1.12 pgoyette break;
6842 1.12 pgoyette default:
6843 1.12 pgoyette break;
6844 1.12 pgoyette };
6845 1.12 pgoyette break;
6846 1.12 pgoyette /* sys_getdents */
6847 1.12 pgoyette case 272:
6848 1.12 pgoyette switch(ndx) {
6849 1.12 pgoyette case 0:
6850 1.12 pgoyette p = "int";
6851 1.12 pgoyette break;
6852 1.12 pgoyette case 1:
6853 1.12 pgoyette p = "char *";
6854 1.12 pgoyette break;
6855 1.12 pgoyette case 2:
6856 1.12 pgoyette p = "size_t";
6857 1.12 pgoyette break;
6858 1.12 pgoyette default:
6859 1.12 pgoyette break;
6860 1.12 pgoyette };
6861 1.12 pgoyette break;
6862 1.12 pgoyette /* sys_minherit */
6863 1.12 pgoyette case 273:
6864 1.12 pgoyette switch(ndx) {
6865 1.12 pgoyette case 0:
6866 1.12 pgoyette p = "void *";
6867 1.12 pgoyette break;
6868 1.12 pgoyette case 1:
6869 1.12 pgoyette p = "size_t";
6870 1.12 pgoyette break;
6871 1.12 pgoyette case 2:
6872 1.12 pgoyette p = "int";
6873 1.12 pgoyette break;
6874 1.12 pgoyette default:
6875 1.12 pgoyette break;
6876 1.12 pgoyette };
6877 1.12 pgoyette break;
6878 1.12 pgoyette /* sys_lchmod */
6879 1.12 pgoyette case 274:
6880 1.12 pgoyette switch(ndx) {
6881 1.12 pgoyette case 0:
6882 1.12 pgoyette p = "const char *";
6883 1.12 pgoyette break;
6884 1.12 pgoyette case 1:
6885 1.12 pgoyette p = "mode_t";
6886 1.12 pgoyette break;
6887 1.12 pgoyette default:
6888 1.12 pgoyette break;
6889 1.12 pgoyette };
6890 1.12 pgoyette break;
6891 1.12 pgoyette /* sys_lchown */
6892 1.12 pgoyette case 275:
6893 1.12 pgoyette switch(ndx) {
6894 1.12 pgoyette case 0:
6895 1.12 pgoyette p = "const char *";
6896 1.12 pgoyette break;
6897 1.12 pgoyette case 1:
6898 1.12 pgoyette p = "uid_t";
6899 1.12 pgoyette break;
6900 1.12 pgoyette case 2:
6901 1.12 pgoyette p = "gid_t";
6902 1.12 pgoyette break;
6903 1.12 pgoyette default:
6904 1.12 pgoyette break;
6905 1.12 pgoyette };
6906 1.12 pgoyette break;
6907 1.12 pgoyette /* sys_lutimes */
6908 1.12 pgoyette case 276:
6909 1.12 pgoyette switch(ndx) {
6910 1.12 pgoyette case 0:
6911 1.12 pgoyette p = "const char *";
6912 1.12 pgoyette break;
6913 1.12 pgoyette case 1:
6914 1.12 pgoyette p = "const struct timeval50 *";
6915 1.12 pgoyette break;
6916 1.12 pgoyette default:
6917 1.12 pgoyette break;
6918 1.12 pgoyette };
6919 1.12 pgoyette break;
6920 1.12 pgoyette /* sys___msync13 */
6921 1.12 pgoyette case 277:
6922 1.12 pgoyette switch(ndx) {
6923 1.12 pgoyette case 0:
6924 1.12 pgoyette p = "void *";
6925 1.12 pgoyette break;
6926 1.12 pgoyette case 1:
6927 1.12 pgoyette p = "size_t";
6928 1.12 pgoyette break;
6929 1.12 pgoyette case 2:
6930 1.12 pgoyette p = "int";
6931 1.12 pgoyette break;
6932 1.12 pgoyette default:
6933 1.12 pgoyette break;
6934 1.12 pgoyette };
6935 1.12 pgoyette break;
6936 1.12 pgoyette /* sys___stat13 */
6937 1.12 pgoyette case 278:
6938 1.12 pgoyette switch(ndx) {
6939 1.12 pgoyette case 0:
6940 1.12 pgoyette p = "const char *";
6941 1.12 pgoyette break;
6942 1.12 pgoyette case 1:
6943 1.12 pgoyette p = "struct stat13 *";
6944 1.12 pgoyette break;
6945 1.12 pgoyette default:
6946 1.12 pgoyette break;
6947 1.12 pgoyette };
6948 1.12 pgoyette break;
6949 1.12 pgoyette /* sys___fstat13 */
6950 1.12 pgoyette case 279:
6951 1.12 pgoyette switch(ndx) {
6952 1.12 pgoyette case 0:
6953 1.12 pgoyette p = "int";
6954 1.12 pgoyette break;
6955 1.12 pgoyette case 1:
6956 1.12 pgoyette p = "struct stat13 *";
6957 1.12 pgoyette break;
6958 1.12 pgoyette default:
6959 1.12 pgoyette break;
6960 1.12 pgoyette };
6961 1.12 pgoyette break;
6962 1.12 pgoyette /* sys___lstat13 */
6963 1.12 pgoyette case 280:
6964 1.12 pgoyette switch(ndx) {
6965 1.12 pgoyette case 0:
6966 1.12 pgoyette p = "const char *";
6967 1.12 pgoyette break;
6968 1.12 pgoyette case 1:
6969 1.12 pgoyette p = "struct stat13 *";
6970 1.12 pgoyette break;
6971 1.12 pgoyette default:
6972 1.12 pgoyette break;
6973 1.12 pgoyette };
6974 1.12 pgoyette break;
6975 1.12 pgoyette /* sys___sigaltstack14 */
6976 1.12 pgoyette case 281:
6977 1.12 pgoyette switch(ndx) {
6978 1.12 pgoyette case 0:
6979 1.12 pgoyette p = "const struct sigaltstack *";
6980 1.12 pgoyette break;
6981 1.12 pgoyette case 1:
6982 1.12 pgoyette p = "struct sigaltstack *";
6983 1.12 pgoyette break;
6984 1.12 pgoyette default:
6985 1.12 pgoyette break;
6986 1.12 pgoyette };
6987 1.12 pgoyette break;
6988 1.12 pgoyette /* sys___vfork14 */
6989 1.12 pgoyette case 282:
6990 1.12 pgoyette break;
6991 1.12 pgoyette /* sys___posix_chown */
6992 1.12 pgoyette case 283:
6993 1.12 pgoyette switch(ndx) {
6994 1.12 pgoyette case 0:
6995 1.12 pgoyette p = "const char *";
6996 1.12 pgoyette break;
6997 1.12 pgoyette case 1:
6998 1.12 pgoyette p = "uid_t";
6999 1.12 pgoyette break;
7000 1.12 pgoyette case 2:
7001 1.12 pgoyette p = "gid_t";
7002 1.12 pgoyette break;
7003 1.12 pgoyette default:
7004 1.12 pgoyette break;
7005 1.12 pgoyette };
7006 1.12 pgoyette break;
7007 1.12 pgoyette /* sys___posix_fchown */
7008 1.12 pgoyette case 284:
7009 1.12 pgoyette switch(ndx) {
7010 1.12 pgoyette case 0:
7011 1.12 pgoyette p = "int";
7012 1.12 pgoyette break;
7013 1.12 pgoyette case 1:
7014 1.12 pgoyette p = "uid_t";
7015 1.12 pgoyette break;
7016 1.12 pgoyette case 2:
7017 1.12 pgoyette p = "gid_t";
7018 1.12 pgoyette break;
7019 1.12 pgoyette default:
7020 1.12 pgoyette break;
7021 1.12 pgoyette };
7022 1.12 pgoyette break;
7023 1.12 pgoyette /* sys___posix_lchown */
7024 1.12 pgoyette case 285:
7025 1.12 pgoyette switch(ndx) {
7026 1.12 pgoyette case 0:
7027 1.12 pgoyette p = "const char *";
7028 1.12 pgoyette break;
7029 1.12 pgoyette case 1:
7030 1.12 pgoyette p = "uid_t";
7031 1.12 pgoyette break;
7032 1.12 pgoyette case 2:
7033 1.12 pgoyette p = "gid_t";
7034 1.12 pgoyette break;
7035 1.12 pgoyette default:
7036 1.12 pgoyette break;
7037 1.12 pgoyette };
7038 1.12 pgoyette break;
7039 1.12 pgoyette /* sys_getsid */
7040 1.12 pgoyette case 286:
7041 1.12 pgoyette switch(ndx) {
7042 1.12 pgoyette case 0:
7043 1.12 pgoyette p = "pid_t";
7044 1.12 pgoyette break;
7045 1.12 pgoyette default:
7046 1.12 pgoyette break;
7047 1.12 pgoyette };
7048 1.12 pgoyette break;
7049 1.12 pgoyette /* sys___clone */
7050 1.12 pgoyette case 287:
7051 1.12 pgoyette switch(ndx) {
7052 1.12 pgoyette case 0:
7053 1.12 pgoyette p = "int";
7054 1.12 pgoyette break;
7055 1.12 pgoyette case 1:
7056 1.12 pgoyette p = "void *";
7057 1.12 pgoyette break;
7058 1.12 pgoyette default:
7059 1.12 pgoyette break;
7060 1.12 pgoyette };
7061 1.12 pgoyette break;
7062 1.12 pgoyette /* sys_fktrace */
7063 1.12 pgoyette case 288:
7064 1.12 pgoyette switch(ndx) {
7065 1.12 pgoyette case 0:
7066 1.12 pgoyette p = "int";
7067 1.12 pgoyette break;
7068 1.12 pgoyette case 1:
7069 1.12 pgoyette p = "int";
7070 1.12 pgoyette break;
7071 1.12 pgoyette case 2:
7072 1.12 pgoyette p = "int";
7073 1.12 pgoyette break;
7074 1.12 pgoyette case 3:
7075 1.12 pgoyette p = "pid_t";
7076 1.12 pgoyette break;
7077 1.12 pgoyette default:
7078 1.12 pgoyette break;
7079 1.12 pgoyette };
7080 1.12 pgoyette break;
7081 1.12 pgoyette /* sys_preadv */
7082 1.12 pgoyette case 289:
7083 1.12 pgoyette switch(ndx) {
7084 1.12 pgoyette case 0:
7085 1.12 pgoyette p = "int";
7086 1.12 pgoyette break;
7087 1.12 pgoyette case 1:
7088 1.12 pgoyette p = "const struct iovec *";
7089 1.12 pgoyette break;
7090 1.12 pgoyette case 2:
7091 1.12 pgoyette p = "int";
7092 1.12 pgoyette break;
7093 1.12 pgoyette case 3:
7094 1.12 pgoyette p = "int";
7095 1.12 pgoyette break;
7096 1.12 pgoyette case 4:
7097 1.12 pgoyette p = "off_t";
7098 1.12 pgoyette break;
7099 1.12 pgoyette default:
7100 1.12 pgoyette break;
7101 1.12 pgoyette };
7102 1.12 pgoyette break;
7103 1.12 pgoyette /* sys_pwritev */
7104 1.12 pgoyette case 290:
7105 1.12 pgoyette switch(ndx) {
7106 1.12 pgoyette case 0:
7107 1.12 pgoyette p = "int";
7108 1.12 pgoyette break;
7109 1.12 pgoyette case 1:
7110 1.12 pgoyette p = "const struct iovec *";
7111 1.12 pgoyette break;
7112 1.12 pgoyette case 2:
7113 1.12 pgoyette p = "int";
7114 1.12 pgoyette break;
7115 1.12 pgoyette case 3:
7116 1.12 pgoyette p = "int";
7117 1.12 pgoyette break;
7118 1.12 pgoyette case 4:
7119 1.12 pgoyette p = "off_t";
7120 1.12 pgoyette break;
7121 1.12 pgoyette default:
7122 1.12 pgoyette break;
7123 1.12 pgoyette };
7124 1.12 pgoyette break;
7125 1.12 pgoyette /* sys___sigaction14 */
7126 1.12 pgoyette case 291:
7127 1.12 pgoyette switch(ndx) {
7128 1.12 pgoyette case 0:
7129 1.12 pgoyette p = "int";
7130 1.12 pgoyette break;
7131 1.12 pgoyette case 1:
7132 1.12 pgoyette p = "const struct sigaction *";
7133 1.12 pgoyette break;
7134 1.12 pgoyette case 2:
7135 1.12 pgoyette p = "struct sigaction *";
7136 1.12 pgoyette break;
7137 1.12 pgoyette default:
7138 1.12 pgoyette break;
7139 1.12 pgoyette };
7140 1.12 pgoyette break;
7141 1.12 pgoyette /* sys___sigpending14 */
7142 1.12 pgoyette case 292:
7143 1.12 pgoyette switch(ndx) {
7144 1.12 pgoyette case 0:
7145 1.12 pgoyette p = "sigset_t *";
7146 1.12 pgoyette break;
7147 1.12 pgoyette default:
7148 1.12 pgoyette break;
7149 1.12 pgoyette };
7150 1.12 pgoyette break;
7151 1.12 pgoyette /* sys___sigprocmask14 */
7152 1.12 pgoyette case 293:
7153 1.12 pgoyette switch(ndx) {
7154 1.12 pgoyette case 0:
7155 1.12 pgoyette p = "int";
7156 1.12 pgoyette break;
7157 1.12 pgoyette case 1:
7158 1.12 pgoyette p = "const sigset_t *";
7159 1.12 pgoyette break;
7160 1.12 pgoyette case 2:
7161 1.12 pgoyette p = "sigset_t *";
7162 1.12 pgoyette break;
7163 1.12 pgoyette default:
7164 1.12 pgoyette break;
7165 1.12 pgoyette };
7166 1.12 pgoyette break;
7167 1.12 pgoyette /* sys___sigsuspend14 */
7168 1.12 pgoyette case 294:
7169 1.12 pgoyette switch(ndx) {
7170 1.12 pgoyette case 0:
7171 1.12 pgoyette p = "const sigset_t *";
7172 1.12 pgoyette break;
7173 1.12 pgoyette default:
7174 1.12 pgoyette break;
7175 1.12 pgoyette };
7176 1.12 pgoyette break;
7177 1.12 pgoyette /* sys___sigreturn14 */
7178 1.12 pgoyette case 295:
7179 1.12 pgoyette switch(ndx) {
7180 1.12 pgoyette case 0:
7181 1.12 pgoyette p = "struct sigcontext *";
7182 1.12 pgoyette break;
7183 1.12 pgoyette default:
7184 1.12 pgoyette break;
7185 1.12 pgoyette };
7186 1.12 pgoyette break;
7187 1.12 pgoyette /* sys___getcwd */
7188 1.12 pgoyette case 296:
7189 1.12 pgoyette switch(ndx) {
7190 1.12 pgoyette case 0:
7191 1.12 pgoyette p = "char *";
7192 1.12 pgoyette break;
7193 1.12 pgoyette case 1:
7194 1.12 pgoyette p = "size_t";
7195 1.12 pgoyette break;
7196 1.12 pgoyette default:
7197 1.12 pgoyette break;
7198 1.12 pgoyette };
7199 1.12 pgoyette break;
7200 1.12 pgoyette /* sys_fchroot */
7201 1.12 pgoyette case 297:
7202 1.12 pgoyette switch(ndx) {
7203 1.12 pgoyette case 0:
7204 1.12 pgoyette p = "int";
7205 1.12 pgoyette break;
7206 1.12 pgoyette default:
7207 1.12 pgoyette break;
7208 1.12 pgoyette };
7209 1.12 pgoyette break;
7210 1.12 pgoyette /* sys_fhopen */
7211 1.12 pgoyette case 298:
7212 1.12 pgoyette switch(ndx) {
7213 1.12 pgoyette case 0:
7214 1.12 pgoyette p = "const struct compat_30_fhandle *";
7215 1.12 pgoyette break;
7216 1.12 pgoyette case 1:
7217 1.12 pgoyette p = "int";
7218 1.12 pgoyette break;
7219 1.12 pgoyette default:
7220 1.12 pgoyette break;
7221 1.12 pgoyette };
7222 1.12 pgoyette break;
7223 1.12 pgoyette /* sys_fhstat */
7224 1.12 pgoyette case 299:
7225 1.12 pgoyette switch(ndx) {
7226 1.12 pgoyette case 0:
7227 1.12 pgoyette p = "const struct compat_30_fhandle *";
7228 1.12 pgoyette break;
7229 1.12 pgoyette case 1:
7230 1.12 pgoyette p = "struct stat13 *";
7231 1.12 pgoyette break;
7232 1.12 pgoyette default:
7233 1.12 pgoyette break;
7234 1.12 pgoyette };
7235 1.12 pgoyette break;
7236 1.12 pgoyette /* sys_fhstatfs */
7237 1.12 pgoyette case 300:
7238 1.12 pgoyette switch(ndx) {
7239 1.12 pgoyette case 0:
7240 1.12 pgoyette p = "const struct compat_30_fhandle *";
7241 1.12 pgoyette break;
7242 1.12 pgoyette case 1:
7243 1.12 pgoyette p = "struct statfs12 *";
7244 1.12 pgoyette break;
7245 1.12 pgoyette default:
7246 1.12 pgoyette break;
7247 1.12 pgoyette };
7248 1.12 pgoyette break;
7249 1.12 pgoyette /* sys_____semctl13 */
7250 1.12 pgoyette case 301:
7251 1.12 pgoyette switch(ndx) {
7252 1.12 pgoyette case 0:
7253 1.12 pgoyette p = "int";
7254 1.12 pgoyette break;
7255 1.12 pgoyette case 1:
7256 1.12 pgoyette p = "int";
7257 1.12 pgoyette break;
7258 1.12 pgoyette case 2:
7259 1.12 pgoyette p = "int";
7260 1.12 pgoyette break;
7261 1.12 pgoyette case 3:
7262 1.12 pgoyette p = "union __semun *";
7263 1.12 pgoyette break;
7264 1.12 pgoyette default:
7265 1.12 pgoyette break;
7266 1.12 pgoyette };
7267 1.12 pgoyette break;
7268 1.12 pgoyette /* sys___msgctl13 */
7269 1.12 pgoyette case 302:
7270 1.12 pgoyette switch(ndx) {
7271 1.12 pgoyette case 0:
7272 1.12 pgoyette p = "int";
7273 1.12 pgoyette break;
7274 1.12 pgoyette case 1:
7275 1.12 pgoyette p = "int";
7276 1.12 pgoyette break;
7277 1.12 pgoyette case 2:
7278 1.12 pgoyette p = "struct msqid_ds *";
7279 1.12 pgoyette break;
7280 1.12 pgoyette default:
7281 1.12 pgoyette break;
7282 1.12 pgoyette };
7283 1.12 pgoyette break;
7284 1.12 pgoyette /* sys___shmctl13 */
7285 1.12 pgoyette case 303:
7286 1.12 pgoyette switch(ndx) {
7287 1.12 pgoyette case 0:
7288 1.12 pgoyette p = "int";
7289 1.12 pgoyette break;
7290 1.12 pgoyette case 1:
7291 1.12 pgoyette p = "int";
7292 1.12 pgoyette break;
7293 1.12 pgoyette case 2:
7294 1.12 pgoyette p = "struct shmid_ds13 *";
7295 1.12 pgoyette break;
7296 1.12 pgoyette default:
7297 1.12 pgoyette break;
7298 1.12 pgoyette };
7299 1.12 pgoyette break;
7300 1.12 pgoyette /* sys_lchflags */
7301 1.12 pgoyette case 304:
7302 1.12 pgoyette switch(ndx) {
7303 1.12 pgoyette case 0:
7304 1.12 pgoyette p = "const char *";
7305 1.12 pgoyette break;
7306 1.12 pgoyette case 1:
7307 1.12 pgoyette p = "u_long";
7308 1.12 pgoyette break;
7309 1.12 pgoyette default:
7310 1.12 pgoyette break;
7311 1.12 pgoyette };
7312 1.12 pgoyette break;
7313 1.12 pgoyette /* sys_issetugid */
7314 1.12 pgoyette case 305:
7315 1.12 pgoyette break;
7316 1.12 pgoyette /* sys_utrace */
7317 1.12 pgoyette case 306:
7318 1.12 pgoyette switch(ndx) {
7319 1.12 pgoyette case 0:
7320 1.12 pgoyette p = "const char *";
7321 1.12 pgoyette break;
7322 1.12 pgoyette case 1:
7323 1.12 pgoyette p = "void *";
7324 1.12 pgoyette break;
7325 1.12 pgoyette case 2:
7326 1.12 pgoyette p = "size_t";
7327 1.12 pgoyette break;
7328 1.12 pgoyette default:
7329 1.12 pgoyette break;
7330 1.12 pgoyette };
7331 1.12 pgoyette break;
7332 1.12 pgoyette /* sys_getcontext */
7333 1.12 pgoyette case 307:
7334 1.12 pgoyette switch(ndx) {
7335 1.12 pgoyette case 0:
7336 1.12 pgoyette p = "struct __ucontext *";
7337 1.12 pgoyette break;
7338 1.12 pgoyette default:
7339 1.12 pgoyette break;
7340 1.12 pgoyette };
7341 1.12 pgoyette break;
7342 1.12 pgoyette /* sys_setcontext */
7343 1.12 pgoyette case 308:
7344 1.12 pgoyette switch(ndx) {
7345 1.12 pgoyette case 0:
7346 1.12 pgoyette p = "const struct __ucontext *";
7347 1.12 pgoyette break;
7348 1.12 pgoyette default:
7349 1.12 pgoyette break;
7350 1.12 pgoyette };
7351 1.12 pgoyette break;
7352 1.12 pgoyette /* sys__lwp_create */
7353 1.12 pgoyette case 309:
7354 1.12 pgoyette switch(ndx) {
7355 1.12 pgoyette case 0:
7356 1.12 pgoyette p = "const struct __ucontext *";
7357 1.12 pgoyette break;
7358 1.12 pgoyette case 1:
7359 1.12 pgoyette p = "u_long";
7360 1.12 pgoyette break;
7361 1.12 pgoyette case 2:
7362 1.12 pgoyette p = "lwpid_t *";
7363 1.12 pgoyette break;
7364 1.12 pgoyette default:
7365 1.12 pgoyette break;
7366 1.12 pgoyette };
7367 1.12 pgoyette break;
7368 1.12 pgoyette /* sys__lwp_exit */
7369 1.12 pgoyette case 310:
7370 1.12 pgoyette break;
7371 1.12 pgoyette /* sys__lwp_self */
7372 1.12 pgoyette case 311:
7373 1.12 pgoyette break;
7374 1.12 pgoyette /* sys__lwp_wait */
7375 1.12 pgoyette case 312:
7376 1.12 pgoyette switch(ndx) {
7377 1.12 pgoyette case 0:
7378 1.12 pgoyette p = "lwpid_t";
7379 1.12 pgoyette break;
7380 1.12 pgoyette case 1:
7381 1.12 pgoyette p = "lwpid_t *";
7382 1.12 pgoyette break;
7383 1.12 pgoyette default:
7384 1.12 pgoyette break;
7385 1.12 pgoyette };
7386 1.12 pgoyette break;
7387 1.12 pgoyette /* sys__lwp_suspend */
7388 1.12 pgoyette case 313:
7389 1.12 pgoyette switch(ndx) {
7390 1.12 pgoyette case 0:
7391 1.12 pgoyette p = "lwpid_t";
7392 1.12 pgoyette break;
7393 1.12 pgoyette default:
7394 1.12 pgoyette break;
7395 1.12 pgoyette };
7396 1.12 pgoyette break;
7397 1.12 pgoyette /* sys__lwp_continue */
7398 1.12 pgoyette case 314:
7399 1.12 pgoyette switch(ndx) {
7400 1.12 pgoyette case 0:
7401 1.12 pgoyette p = "lwpid_t";
7402 1.12 pgoyette break;
7403 1.12 pgoyette default:
7404 1.12 pgoyette break;
7405 1.12 pgoyette };
7406 1.12 pgoyette break;
7407 1.12 pgoyette /* sys__lwp_wakeup */
7408 1.12 pgoyette case 315:
7409 1.12 pgoyette switch(ndx) {
7410 1.12 pgoyette case 0:
7411 1.12 pgoyette p = "lwpid_t";
7412 1.12 pgoyette break;
7413 1.12 pgoyette default:
7414 1.12 pgoyette break;
7415 1.12 pgoyette };
7416 1.12 pgoyette break;
7417 1.12 pgoyette /* sys__lwp_getprivate */
7418 1.12 pgoyette case 316:
7419 1.12 pgoyette break;
7420 1.12 pgoyette /* sys__lwp_setprivate */
7421 1.12 pgoyette case 317:
7422 1.12 pgoyette switch(ndx) {
7423 1.12 pgoyette case 0:
7424 1.12 pgoyette p = "void *";
7425 1.12 pgoyette break;
7426 1.12 pgoyette default:
7427 1.12 pgoyette break;
7428 1.12 pgoyette };
7429 1.12 pgoyette break;
7430 1.12 pgoyette /* sys__lwp_kill */
7431 1.12 pgoyette case 318:
7432 1.12 pgoyette switch(ndx) {
7433 1.12 pgoyette case 0:
7434 1.12 pgoyette p = "lwpid_t";
7435 1.12 pgoyette break;
7436 1.12 pgoyette case 1:
7437 1.12 pgoyette p = "int";
7438 1.12 pgoyette break;
7439 1.12 pgoyette default:
7440 1.12 pgoyette break;
7441 1.12 pgoyette };
7442 1.12 pgoyette break;
7443 1.12 pgoyette /* sys__lwp_detach */
7444 1.12 pgoyette case 319:
7445 1.12 pgoyette switch(ndx) {
7446 1.12 pgoyette case 0:
7447 1.12 pgoyette p = "lwpid_t";
7448 1.12 pgoyette break;
7449 1.12 pgoyette default:
7450 1.12 pgoyette break;
7451 1.12 pgoyette };
7452 1.12 pgoyette break;
7453 1.12 pgoyette /* sys__lwp_park */
7454 1.12 pgoyette case 320:
7455 1.12 pgoyette switch(ndx) {
7456 1.12 pgoyette case 0:
7457 1.12 pgoyette p = "const struct timespec50 *";
7458 1.12 pgoyette break;
7459 1.12 pgoyette case 1:
7460 1.12 pgoyette p = "lwpid_t";
7461 1.12 pgoyette break;
7462 1.12 pgoyette case 2:
7463 1.12 pgoyette p = "const void *";
7464 1.12 pgoyette break;
7465 1.12 pgoyette case 3:
7466 1.12 pgoyette p = "const void *";
7467 1.12 pgoyette break;
7468 1.12 pgoyette default:
7469 1.12 pgoyette break;
7470 1.12 pgoyette };
7471 1.12 pgoyette break;
7472 1.12 pgoyette /* sys__lwp_unpark */
7473 1.12 pgoyette case 321:
7474 1.12 pgoyette switch(ndx) {
7475 1.12 pgoyette case 0:
7476 1.12 pgoyette p = "lwpid_t";
7477 1.12 pgoyette break;
7478 1.12 pgoyette case 1:
7479 1.12 pgoyette p = "const void *";
7480 1.12 pgoyette break;
7481 1.12 pgoyette default:
7482 1.12 pgoyette break;
7483 1.12 pgoyette };
7484 1.12 pgoyette break;
7485 1.12 pgoyette /* sys__lwp_unpark_all */
7486 1.12 pgoyette case 322:
7487 1.12 pgoyette switch(ndx) {
7488 1.12 pgoyette case 0:
7489 1.12 pgoyette p = "const lwpid_t *";
7490 1.12 pgoyette break;
7491 1.12 pgoyette case 1:
7492 1.12 pgoyette p = "size_t";
7493 1.12 pgoyette break;
7494 1.12 pgoyette case 2:
7495 1.12 pgoyette p = "const void *";
7496 1.12 pgoyette break;
7497 1.12 pgoyette default:
7498 1.12 pgoyette break;
7499 1.12 pgoyette };
7500 1.12 pgoyette break;
7501 1.12 pgoyette /* sys__lwp_setname */
7502 1.12 pgoyette case 323:
7503 1.12 pgoyette switch(ndx) {
7504 1.12 pgoyette case 0:
7505 1.12 pgoyette p = "lwpid_t";
7506 1.12 pgoyette break;
7507 1.12 pgoyette case 1:
7508 1.12 pgoyette p = "const char *";
7509 1.12 pgoyette break;
7510 1.12 pgoyette default:
7511 1.12 pgoyette break;
7512 1.12 pgoyette };
7513 1.12 pgoyette break;
7514 1.12 pgoyette /* sys__lwp_getname */
7515 1.12 pgoyette case 324:
7516 1.12 pgoyette switch(ndx) {
7517 1.12 pgoyette case 0:
7518 1.12 pgoyette p = "lwpid_t";
7519 1.12 pgoyette break;
7520 1.12 pgoyette case 1:
7521 1.12 pgoyette p = "char *";
7522 1.12 pgoyette break;
7523 1.12 pgoyette case 2:
7524 1.12 pgoyette p = "size_t";
7525 1.12 pgoyette break;
7526 1.12 pgoyette default:
7527 1.12 pgoyette break;
7528 1.12 pgoyette };
7529 1.12 pgoyette break;
7530 1.12 pgoyette /* sys__lwp_ctl */
7531 1.12 pgoyette case 325:
7532 1.12 pgoyette switch(ndx) {
7533 1.12 pgoyette case 0:
7534 1.12 pgoyette p = "int";
7535 1.12 pgoyette break;
7536 1.12 pgoyette case 1:
7537 1.12 pgoyette p = "struct lwpctl **";
7538 1.12 pgoyette break;
7539 1.12 pgoyette default:
7540 1.12 pgoyette break;
7541 1.12 pgoyette };
7542 1.12 pgoyette break;
7543 1.12 pgoyette /* sys_sa_register */
7544 1.12 pgoyette case 330:
7545 1.12 pgoyette switch(ndx) {
7546 1.12 pgoyette case 0:
7547 1.12 pgoyette p = "void *";
7548 1.12 pgoyette break;
7549 1.12 pgoyette case 1:
7550 1.12 pgoyette p = "void **";
7551 1.12 pgoyette break;
7552 1.12 pgoyette case 2:
7553 1.12 pgoyette p = "int";
7554 1.12 pgoyette break;
7555 1.12 pgoyette case 3:
7556 1.12 pgoyette p = "ssize_t";
7557 1.12 pgoyette break;
7558 1.12 pgoyette default:
7559 1.12 pgoyette break;
7560 1.12 pgoyette };
7561 1.12 pgoyette break;
7562 1.12 pgoyette /* sys_sa_stacks */
7563 1.12 pgoyette case 331:
7564 1.12 pgoyette switch(ndx) {
7565 1.12 pgoyette case 0:
7566 1.12 pgoyette p = "int";
7567 1.12 pgoyette break;
7568 1.12 pgoyette case 1:
7569 1.12 pgoyette p = "stack_t *";
7570 1.12 pgoyette break;
7571 1.12 pgoyette default:
7572 1.12 pgoyette break;
7573 1.12 pgoyette };
7574 1.12 pgoyette break;
7575 1.12 pgoyette /* sys_sa_enable */
7576 1.12 pgoyette case 332:
7577 1.12 pgoyette break;
7578 1.12 pgoyette /* sys_sa_setconcurrency */
7579 1.12 pgoyette case 333:
7580 1.12 pgoyette switch(ndx) {
7581 1.12 pgoyette case 0:
7582 1.12 pgoyette p = "int";
7583 1.12 pgoyette break;
7584 1.12 pgoyette default:
7585 1.12 pgoyette break;
7586 1.12 pgoyette };
7587 1.12 pgoyette break;
7588 1.12 pgoyette /* sys_sa_yield */
7589 1.12 pgoyette case 334:
7590 1.12 pgoyette break;
7591 1.12 pgoyette /* sys_sa_preempt */
7592 1.12 pgoyette case 335:
7593 1.12 pgoyette switch(ndx) {
7594 1.12 pgoyette case 0:
7595 1.12 pgoyette p = "int";
7596 1.12 pgoyette break;
7597 1.12 pgoyette default:
7598 1.12 pgoyette break;
7599 1.12 pgoyette };
7600 1.12 pgoyette break;
7601 1.12 pgoyette /* sys___sigaction_sigtramp */
7602 1.12 pgoyette case 340:
7603 1.12 pgoyette switch(ndx) {
7604 1.12 pgoyette case 0:
7605 1.12 pgoyette p = "int";
7606 1.12 pgoyette break;
7607 1.12 pgoyette case 1:
7608 1.12 pgoyette p = "const struct sigaction *";
7609 1.12 pgoyette break;
7610 1.12 pgoyette case 2:
7611 1.12 pgoyette p = "struct sigaction *";
7612 1.12 pgoyette break;
7613 1.12 pgoyette case 3:
7614 1.12 pgoyette p = "const void *";
7615 1.12 pgoyette break;
7616 1.12 pgoyette case 4:
7617 1.12 pgoyette p = "int";
7618 1.12 pgoyette break;
7619 1.12 pgoyette default:
7620 1.12 pgoyette break;
7621 1.12 pgoyette };
7622 1.12 pgoyette break;
7623 1.12 pgoyette /* sys_pmc_get_info */
7624 1.12 pgoyette case 341:
7625 1.12 pgoyette switch(ndx) {
7626 1.12 pgoyette case 0:
7627 1.12 pgoyette p = "int";
7628 1.12 pgoyette break;
7629 1.12 pgoyette case 1:
7630 1.12 pgoyette p = "int";
7631 1.12 pgoyette break;
7632 1.12 pgoyette case 2:
7633 1.12 pgoyette p = "void *";
7634 1.12 pgoyette break;
7635 1.12 pgoyette default:
7636 1.12 pgoyette break;
7637 1.12 pgoyette };
7638 1.12 pgoyette break;
7639 1.12 pgoyette /* sys_pmc_control */
7640 1.12 pgoyette case 342:
7641 1.12 pgoyette switch(ndx) {
7642 1.12 pgoyette case 0:
7643 1.12 pgoyette p = "int";
7644 1.12 pgoyette break;
7645 1.12 pgoyette case 1:
7646 1.12 pgoyette p = "int";
7647 1.12 pgoyette break;
7648 1.12 pgoyette case 2:
7649 1.12 pgoyette p = "void *";
7650 1.12 pgoyette break;
7651 1.12 pgoyette default:
7652 1.12 pgoyette break;
7653 1.12 pgoyette };
7654 1.12 pgoyette break;
7655 1.12 pgoyette /* sys_rasctl */
7656 1.12 pgoyette case 343:
7657 1.12 pgoyette switch(ndx) {
7658 1.12 pgoyette case 0:
7659 1.12 pgoyette p = "void *";
7660 1.12 pgoyette break;
7661 1.12 pgoyette case 1:
7662 1.12 pgoyette p = "size_t";
7663 1.12 pgoyette break;
7664 1.12 pgoyette case 2:
7665 1.12 pgoyette p = "int";
7666 1.12 pgoyette break;
7667 1.12 pgoyette default:
7668 1.12 pgoyette break;
7669 1.12 pgoyette };
7670 1.12 pgoyette break;
7671 1.12 pgoyette /* sys_kqueue */
7672 1.12 pgoyette case 344:
7673 1.12 pgoyette break;
7674 1.12 pgoyette /* sys_kevent */
7675 1.12 pgoyette case 345:
7676 1.12 pgoyette switch(ndx) {
7677 1.12 pgoyette case 0:
7678 1.12 pgoyette p = "int";
7679 1.12 pgoyette break;
7680 1.12 pgoyette case 1:
7681 1.12 pgoyette p = "const struct kevent *";
7682 1.12 pgoyette break;
7683 1.12 pgoyette case 2:
7684 1.12 pgoyette p = "size_t";
7685 1.12 pgoyette break;
7686 1.12 pgoyette case 3:
7687 1.12 pgoyette p = "struct kevent *";
7688 1.12 pgoyette break;
7689 1.12 pgoyette case 4:
7690 1.12 pgoyette p = "size_t";
7691 1.12 pgoyette break;
7692 1.12 pgoyette case 5:
7693 1.12 pgoyette p = "const struct timespec50 *";
7694 1.12 pgoyette break;
7695 1.12 pgoyette default:
7696 1.12 pgoyette break;
7697 1.12 pgoyette };
7698 1.12 pgoyette break;
7699 1.12 pgoyette /* sys__sched_setparam */
7700 1.12 pgoyette case 346:
7701 1.12 pgoyette switch(ndx) {
7702 1.12 pgoyette case 0:
7703 1.12 pgoyette p = "pid_t";
7704 1.12 pgoyette break;
7705 1.12 pgoyette case 1:
7706 1.12 pgoyette p = "lwpid_t";
7707 1.12 pgoyette break;
7708 1.12 pgoyette case 2:
7709 1.12 pgoyette p = "int";
7710 1.12 pgoyette break;
7711 1.12 pgoyette case 3:
7712 1.12 pgoyette p = "const struct sched_param *";
7713 1.12 pgoyette break;
7714 1.12 pgoyette default:
7715 1.12 pgoyette break;
7716 1.12 pgoyette };
7717 1.12 pgoyette break;
7718 1.12 pgoyette /* sys__sched_getparam */
7719 1.12 pgoyette case 347:
7720 1.12 pgoyette switch(ndx) {
7721 1.12 pgoyette case 0:
7722 1.12 pgoyette p = "pid_t";
7723 1.12 pgoyette break;
7724 1.12 pgoyette case 1:
7725 1.12 pgoyette p = "lwpid_t";
7726 1.12 pgoyette break;
7727 1.12 pgoyette case 2:
7728 1.12 pgoyette p = "int *";
7729 1.12 pgoyette break;
7730 1.12 pgoyette case 3:
7731 1.12 pgoyette p = "struct sched_param *";
7732 1.12 pgoyette break;
7733 1.12 pgoyette default:
7734 1.12 pgoyette break;
7735 1.12 pgoyette };
7736 1.12 pgoyette break;
7737 1.12 pgoyette /* sys__sched_setaffinity */
7738 1.12 pgoyette case 348:
7739 1.12 pgoyette switch(ndx) {
7740 1.12 pgoyette case 0:
7741 1.12 pgoyette p = "pid_t";
7742 1.12 pgoyette break;
7743 1.12 pgoyette case 1:
7744 1.12 pgoyette p = "lwpid_t";
7745 1.12 pgoyette break;
7746 1.12 pgoyette case 2:
7747 1.12 pgoyette p = "size_t";
7748 1.12 pgoyette break;
7749 1.12 pgoyette case 3:
7750 1.12 pgoyette p = "const cpuset_t *";
7751 1.12 pgoyette break;
7752 1.12 pgoyette default:
7753 1.12 pgoyette break;
7754 1.12 pgoyette };
7755 1.12 pgoyette break;
7756 1.12 pgoyette /* sys__sched_getaffinity */
7757 1.12 pgoyette case 349:
7758 1.12 pgoyette switch(ndx) {
7759 1.12 pgoyette case 0:
7760 1.12 pgoyette p = "pid_t";
7761 1.12 pgoyette break;
7762 1.12 pgoyette case 1:
7763 1.12 pgoyette p = "lwpid_t";
7764 1.12 pgoyette break;
7765 1.12 pgoyette case 2:
7766 1.12 pgoyette p = "size_t";
7767 1.12 pgoyette break;
7768 1.12 pgoyette case 3:
7769 1.12 pgoyette p = "cpuset_t *";
7770 1.12 pgoyette break;
7771 1.12 pgoyette default:
7772 1.12 pgoyette break;
7773 1.12 pgoyette };
7774 1.12 pgoyette break;
7775 1.12 pgoyette /* sys_sched_yield */
7776 1.12 pgoyette case 350:
7777 1.12 pgoyette break;
7778 1.21 christos /* sys__sched_protect */
7779 1.21 christos case 351:
7780 1.21 christos switch(ndx) {
7781 1.21 christos case 0:
7782 1.21 christos p = "int";
7783 1.21 christos break;
7784 1.21 christos default:
7785 1.21 christos break;
7786 1.21 christos };
7787 1.21 christos break;
7788 1.12 pgoyette /* sys_fsync_range */
7789 1.12 pgoyette case 354:
7790 1.12 pgoyette switch(ndx) {
7791 1.12 pgoyette case 0:
7792 1.12 pgoyette p = "int";
7793 1.12 pgoyette break;
7794 1.12 pgoyette case 1:
7795 1.12 pgoyette p = "int";
7796 1.12 pgoyette break;
7797 1.12 pgoyette case 2:
7798 1.12 pgoyette p = "off_t";
7799 1.12 pgoyette break;
7800 1.12 pgoyette case 3:
7801 1.12 pgoyette p = "off_t";
7802 1.12 pgoyette break;
7803 1.12 pgoyette default:
7804 1.12 pgoyette break;
7805 1.12 pgoyette };
7806 1.12 pgoyette break;
7807 1.12 pgoyette /* sys_uuidgen */
7808 1.12 pgoyette case 355:
7809 1.12 pgoyette switch(ndx) {
7810 1.12 pgoyette case 0:
7811 1.12 pgoyette p = "struct uuid *";
7812 1.12 pgoyette break;
7813 1.12 pgoyette case 1:
7814 1.12 pgoyette p = "int";
7815 1.12 pgoyette break;
7816 1.12 pgoyette default:
7817 1.12 pgoyette break;
7818 1.12 pgoyette };
7819 1.12 pgoyette break;
7820 1.12 pgoyette /* sys_getvfsstat */
7821 1.12 pgoyette case 356:
7822 1.12 pgoyette switch(ndx) {
7823 1.12 pgoyette case 0:
7824 1.12 pgoyette p = "struct statvfs *";
7825 1.12 pgoyette break;
7826 1.12 pgoyette case 1:
7827 1.12 pgoyette p = "size_t";
7828 1.12 pgoyette break;
7829 1.12 pgoyette case 2:
7830 1.12 pgoyette p = "int";
7831 1.12 pgoyette break;
7832 1.12 pgoyette default:
7833 1.12 pgoyette break;
7834 1.12 pgoyette };
7835 1.12 pgoyette break;
7836 1.12 pgoyette /* sys_statvfs1 */
7837 1.12 pgoyette case 357:
7838 1.12 pgoyette switch(ndx) {
7839 1.12 pgoyette case 0:
7840 1.12 pgoyette p = "const char *";
7841 1.12 pgoyette break;
7842 1.12 pgoyette case 1:
7843 1.12 pgoyette p = "struct statvfs *";
7844 1.12 pgoyette break;
7845 1.12 pgoyette case 2:
7846 1.12 pgoyette p = "int";
7847 1.12 pgoyette break;
7848 1.12 pgoyette default:
7849 1.12 pgoyette break;
7850 1.12 pgoyette };
7851 1.12 pgoyette break;
7852 1.12 pgoyette /* sys_fstatvfs1 */
7853 1.12 pgoyette case 358:
7854 1.12 pgoyette switch(ndx) {
7855 1.12 pgoyette case 0:
7856 1.12 pgoyette p = "int";
7857 1.12 pgoyette break;
7858 1.12 pgoyette case 1:
7859 1.12 pgoyette p = "struct statvfs *";
7860 1.12 pgoyette break;
7861 1.12 pgoyette case 2:
7862 1.12 pgoyette p = "int";
7863 1.12 pgoyette break;
7864 1.12 pgoyette default:
7865 1.12 pgoyette break;
7866 1.12 pgoyette };
7867 1.12 pgoyette break;
7868 1.12 pgoyette /* sys_fhstatvfs1 */
7869 1.12 pgoyette case 359:
7870 1.12 pgoyette switch(ndx) {
7871 1.12 pgoyette case 0:
7872 1.12 pgoyette p = "const struct compat_30_fhandle *";
7873 1.12 pgoyette break;
7874 1.12 pgoyette case 1:
7875 1.12 pgoyette p = "struct statvfs *";
7876 1.12 pgoyette break;
7877 1.12 pgoyette case 2:
7878 1.12 pgoyette p = "int";
7879 1.12 pgoyette break;
7880 1.12 pgoyette default:
7881 1.12 pgoyette break;
7882 1.12 pgoyette };
7883 1.12 pgoyette break;
7884 1.12 pgoyette /* sys_extattrctl */
7885 1.12 pgoyette case 360:
7886 1.12 pgoyette switch(ndx) {
7887 1.12 pgoyette case 0:
7888 1.12 pgoyette p = "const char *";
7889 1.12 pgoyette break;
7890 1.12 pgoyette case 1:
7891 1.12 pgoyette p = "int";
7892 1.12 pgoyette break;
7893 1.12 pgoyette case 2:
7894 1.12 pgoyette p = "const char *";
7895 1.12 pgoyette break;
7896 1.12 pgoyette case 3:
7897 1.12 pgoyette p = "int";
7898 1.12 pgoyette break;
7899 1.12 pgoyette case 4:
7900 1.12 pgoyette p = "const char *";
7901 1.12 pgoyette break;
7902 1.12 pgoyette default:
7903 1.12 pgoyette break;
7904 1.12 pgoyette };
7905 1.12 pgoyette break;
7906 1.12 pgoyette /* sys_extattr_set_file */
7907 1.12 pgoyette case 361:
7908 1.12 pgoyette switch(ndx) {
7909 1.12 pgoyette case 0:
7910 1.12 pgoyette p = "const char *";
7911 1.12 pgoyette break;
7912 1.12 pgoyette case 1:
7913 1.12 pgoyette p = "int";
7914 1.12 pgoyette break;
7915 1.12 pgoyette case 2:
7916 1.12 pgoyette p = "const char *";
7917 1.12 pgoyette break;
7918 1.12 pgoyette case 3:
7919 1.12 pgoyette p = "const void *";
7920 1.12 pgoyette break;
7921 1.12 pgoyette case 4:
7922 1.12 pgoyette p = "size_t";
7923 1.12 pgoyette break;
7924 1.12 pgoyette default:
7925 1.12 pgoyette break;
7926 1.12 pgoyette };
7927 1.12 pgoyette break;
7928 1.12 pgoyette /* sys_extattr_get_file */
7929 1.12 pgoyette case 362:
7930 1.12 pgoyette switch(ndx) {
7931 1.12 pgoyette case 0:
7932 1.12 pgoyette p = "const char *";
7933 1.12 pgoyette break;
7934 1.12 pgoyette case 1:
7935 1.12 pgoyette p = "int";
7936 1.12 pgoyette break;
7937 1.12 pgoyette case 2:
7938 1.12 pgoyette p = "const char *";
7939 1.12 pgoyette break;
7940 1.12 pgoyette case 3:
7941 1.12 pgoyette p = "void *";
7942 1.12 pgoyette break;
7943 1.12 pgoyette case 4:
7944 1.12 pgoyette p = "size_t";
7945 1.12 pgoyette break;
7946 1.12 pgoyette default:
7947 1.12 pgoyette break;
7948 1.12 pgoyette };
7949 1.12 pgoyette break;
7950 1.12 pgoyette /* sys_extattr_delete_file */
7951 1.12 pgoyette case 363:
7952 1.12 pgoyette switch(ndx) {
7953 1.12 pgoyette case 0:
7954 1.12 pgoyette p = "const char *";
7955 1.12 pgoyette break;
7956 1.12 pgoyette case 1:
7957 1.12 pgoyette p = "int";
7958 1.12 pgoyette break;
7959 1.12 pgoyette case 2:
7960 1.12 pgoyette p = "const char *";
7961 1.12 pgoyette break;
7962 1.12 pgoyette default:
7963 1.12 pgoyette break;
7964 1.12 pgoyette };
7965 1.12 pgoyette break;
7966 1.12 pgoyette /* sys_extattr_set_fd */
7967 1.12 pgoyette case 364:
7968 1.12 pgoyette switch(ndx) {
7969 1.12 pgoyette case 0:
7970 1.12 pgoyette p = "int";
7971 1.12 pgoyette break;
7972 1.12 pgoyette case 1:
7973 1.12 pgoyette p = "int";
7974 1.12 pgoyette break;
7975 1.12 pgoyette case 2:
7976 1.12 pgoyette p = "const char *";
7977 1.12 pgoyette break;
7978 1.12 pgoyette case 3:
7979 1.12 pgoyette p = "const void *";
7980 1.12 pgoyette break;
7981 1.12 pgoyette case 4:
7982 1.12 pgoyette p = "size_t";
7983 1.12 pgoyette break;
7984 1.12 pgoyette default:
7985 1.12 pgoyette break;
7986 1.12 pgoyette };
7987 1.12 pgoyette break;
7988 1.12 pgoyette /* sys_extattr_get_fd */
7989 1.12 pgoyette case 365:
7990 1.12 pgoyette switch(ndx) {
7991 1.12 pgoyette case 0:
7992 1.12 pgoyette p = "int";
7993 1.12 pgoyette break;
7994 1.12 pgoyette case 1:
7995 1.12 pgoyette p = "int";
7996 1.12 pgoyette break;
7997 1.12 pgoyette case 2:
7998 1.12 pgoyette p = "const char *";
7999 1.12 pgoyette break;
8000 1.12 pgoyette case 3:
8001 1.12 pgoyette p = "void *";
8002 1.12 pgoyette break;
8003 1.12 pgoyette case 4:
8004 1.12 pgoyette p = "size_t";
8005 1.12 pgoyette break;
8006 1.12 pgoyette default:
8007 1.12 pgoyette break;
8008 1.12 pgoyette };
8009 1.12 pgoyette break;
8010 1.12 pgoyette /* sys_extattr_delete_fd */
8011 1.12 pgoyette case 366:
8012 1.12 pgoyette switch(ndx) {
8013 1.12 pgoyette case 0:
8014 1.12 pgoyette p = "int";
8015 1.12 pgoyette break;
8016 1.12 pgoyette case 1:
8017 1.12 pgoyette p = "int";
8018 1.12 pgoyette break;
8019 1.12 pgoyette case 2:
8020 1.12 pgoyette p = "const char *";
8021 1.12 pgoyette break;
8022 1.12 pgoyette default:
8023 1.12 pgoyette break;
8024 1.12 pgoyette };
8025 1.12 pgoyette break;
8026 1.12 pgoyette /* sys_extattr_set_link */
8027 1.12 pgoyette case 367:
8028 1.12 pgoyette switch(ndx) {
8029 1.12 pgoyette case 0:
8030 1.12 pgoyette p = "const char *";
8031 1.12 pgoyette break;
8032 1.12 pgoyette case 1:
8033 1.12 pgoyette p = "int";
8034 1.12 pgoyette break;
8035 1.12 pgoyette case 2:
8036 1.12 pgoyette p = "const char *";
8037 1.12 pgoyette break;
8038 1.12 pgoyette case 3:
8039 1.12 pgoyette p = "const void *";
8040 1.12 pgoyette break;
8041 1.12 pgoyette case 4:
8042 1.12 pgoyette p = "size_t";
8043 1.12 pgoyette break;
8044 1.12 pgoyette default:
8045 1.12 pgoyette break;
8046 1.12 pgoyette };
8047 1.12 pgoyette break;
8048 1.12 pgoyette /* sys_extattr_get_link */
8049 1.12 pgoyette case 368:
8050 1.12 pgoyette switch(ndx) {
8051 1.12 pgoyette case 0:
8052 1.12 pgoyette p = "const char *";
8053 1.12 pgoyette break;
8054 1.12 pgoyette case 1:
8055 1.12 pgoyette p = "int";
8056 1.12 pgoyette break;
8057 1.12 pgoyette case 2:
8058 1.12 pgoyette p = "const char *";
8059 1.12 pgoyette break;
8060 1.12 pgoyette case 3:
8061 1.12 pgoyette p = "void *";
8062 1.12 pgoyette break;
8063 1.12 pgoyette case 4:
8064 1.12 pgoyette p = "size_t";
8065 1.12 pgoyette break;
8066 1.12 pgoyette default:
8067 1.12 pgoyette break;
8068 1.12 pgoyette };
8069 1.12 pgoyette break;
8070 1.12 pgoyette /* sys_extattr_delete_link */
8071 1.12 pgoyette case 369:
8072 1.12 pgoyette switch(ndx) {
8073 1.12 pgoyette case 0:
8074 1.12 pgoyette p = "const char *";
8075 1.12 pgoyette break;
8076 1.12 pgoyette case 1:
8077 1.12 pgoyette p = "int";
8078 1.12 pgoyette break;
8079 1.12 pgoyette case 2:
8080 1.12 pgoyette p = "const char *";
8081 1.12 pgoyette break;
8082 1.12 pgoyette default:
8083 1.12 pgoyette break;
8084 1.12 pgoyette };
8085 1.12 pgoyette break;
8086 1.12 pgoyette /* sys_extattr_list_fd */
8087 1.12 pgoyette case 370:
8088 1.12 pgoyette switch(ndx) {
8089 1.12 pgoyette case 0:
8090 1.12 pgoyette p = "int";
8091 1.12 pgoyette break;
8092 1.12 pgoyette case 1:
8093 1.12 pgoyette p = "int";
8094 1.12 pgoyette break;
8095 1.12 pgoyette case 2:
8096 1.12 pgoyette p = "void *";
8097 1.12 pgoyette break;
8098 1.12 pgoyette case 3:
8099 1.12 pgoyette p = "size_t";
8100 1.12 pgoyette break;
8101 1.12 pgoyette default:
8102 1.12 pgoyette break;
8103 1.12 pgoyette };
8104 1.12 pgoyette break;
8105 1.12 pgoyette /* sys_extattr_list_file */
8106 1.12 pgoyette case 371:
8107 1.12 pgoyette switch(ndx) {
8108 1.12 pgoyette case 0:
8109 1.12 pgoyette p = "const char *";
8110 1.12 pgoyette break;
8111 1.12 pgoyette case 1:
8112 1.12 pgoyette p = "int";
8113 1.12 pgoyette break;
8114 1.12 pgoyette case 2:
8115 1.12 pgoyette p = "void *";
8116 1.12 pgoyette break;
8117 1.12 pgoyette case 3:
8118 1.12 pgoyette p = "size_t";
8119 1.12 pgoyette break;
8120 1.12 pgoyette default:
8121 1.12 pgoyette break;
8122 1.12 pgoyette };
8123 1.12 pgoyette break;
8124 1.12 pgoyette /* sys_extattr_list_link */
8125 1.12 pgoyette case 372:
8126 1.12 pgoyette switch(ndx) {
8127 1.12 pgoyette case 0:
8128 1.12 pgoyette p = "const char *";
8129 1.12 pgoyette break;
8130 1.12 pgoyette case 1:
8131 1.12 pgoyette p = "int";
8132 1.12 pgoyette break;
8133 1.12 pgoyette case 2:
8134 1.12 pgoyette p = "void *";
8135 1.12 pgoyette break;
8136 1.12 pgoyette case 3:
8137 1.12 pgoyette p = "size_t";
8138 1.12 pgoyette break;
8139 1.12 pgoyette default:
8140 1.12 pgoyette break;
8141 1.12 pgoyette };
8142 1.12 pgoyette break;
8143 1.12 pgoyette /* sys_pselect */
8144 1.12 pgoyette case 373:
8145 1.12 pgoyette switch(ndx) {
8146 1.12 pgoyette case 0:
8147 1.12 pgoyette p = "int";
8148 1.12 pgoyette break;
8149 1.12 pgoyette case 1:
8150 1.12 pgoyette p = "fd_set *";
8151 1.12 pgoyette break;
8152 1.12 pgoyette case 2:
8153 1.12 pgoyette p = "fd_set *";
8154 1.12 pgoyette break;
8155 1.12 pgoyette case 3:
8156 1.12 pgoyette p = "fd_set *";
8157 1.12 pgoyette break;
8158 1.12 pgoyette case 4:
8159 1.12 pgoyette p = "const struct timespec50 *";
8160 1.12 pgoyette break;
8161 1.12 pgoyette case 5:
8162 1.12 pgoyette p = "const sigset_t *";
8163 1.12 pgoyette break;
8164 1.12 pgoyette default:
8165 1.12 pgoyette break;
8166 1.12 pgoyette };
8167 1.12 pgoyette break;
8168 1.12 pgoyette /* sys_pollts */
8169 1.12 pgoyette case 374:
8170 1.12 pgoyette switch(ndx) {
8171 1.12 pgoyette case 0:
8172 1.12 pgoyette p = "struct pollfd *";
8173 1.12 pgoyette break;
8174 1.12 pgoyette case 1:
8175 1.12 pgoyette p = "u_int";
8176 1.12 pgoyette break;
8177 1.12 pgoyette case 2:
8178 1.12 pgoyette p = "const struct timespec50 *";
8179 1.12 pgoyette break;
8180 1.12 pgoyette case 3:
8181 1.12 pgoyette p = "const sigset_t *";
8182 1.12 pgoyette break;
8183 1.12 pgoyette default:
8184 1.12 pgoyette break;
8185 1.12 pgoyette };
8186 1.12 pgoyette break;
8187 1.12 pgoyette /* sys_setxattr */
8188 1.12 pgoyette case 375:
8189 1.12 pgoyette switch(ndx) {
8190 1.12 pgoyette case 0:
8191 1.12 pgoyette p = "const char *";
8192 1.12 pgoyette break;
8193 1.12 pgoyette case 1:
8194 1.12 pgoyette p = "const char *";
8195 1.12 pgoyette break;
8196 1.12 pgoyette case 2:
8197 1.12 pgoyette p = "const void *";
8198 1.12 pgoyette break;
8199 1.12 pgoyette case 3:
8200 1.12 pgoyette p = "size_t";
8201 1.12 pgoyette break;
8202 1.12 pgoyette case 4:
8203 1.12 pgoyette p = "int";
8204 1.12 pgoyette break;
8205 1.12 pgoyette default:
8206 1.12 pgoyette break;
8207 1.12 pgoyette };
8208 1.12 pgoyette break;
8209 1.12 pgoyette /* sys_lsetxattr */
8210 1.12 pgoyette case 376:
8211 1.12 pgoyette switch(ndx) {
8212 1.12 pgoyette case 0:
8213 1.12 pgoyette p = "const char *";
8214 1.12 pgoyette break;
8215 1.12 pgoyette case 1:
8216 1.12 pgoyette p = "const char *";
8217 1.12 pgoyette break;
8218 1.12 pgoyette case 2:
8219 1.12 pgoyette p = "const void *";
8220 1.12 pgoyette break;
8221 1.12 pgoyette case 3:
8222 1.12 pgoyette p = "size_t";
8223 1.12 pgoyette break;
8224 1.12 pgoyette case 4:
8225 1.12 pgoyette p = "int";
8226 1.12 pgoyette break;
8227 1.12 pgoyette default:
8228 1.12 pgoyette break;
8229 1.12 pgoyette };
8230 1.12 pgoyette break;
8231 1.12 pgoyette /* sys_fsetxattr */
8232 1.12 pgoyette case 377:
8233 1.12 pgoyette switch(ndx) {
8234 1.12 pgoyette case 0:
8235 1.12 pgoyette p = "int";
8236 1.12 pgoyette break;
8237 1.12 pgoyette case 1:
8238 1.12 pgoyette p = "const char *";
8239 1.12 pgoyette break;
8240 1.12 pgoyette case 2:
8241 1.12 pgoyette p = "const void *";
8242 1.12 pgoyette break;
8243 1.12 pgoyette case 3:
8244 1.12 pgoyette p = "size_t";
8245 1.12 pgoyette break;
8246 1.12 pgoyette case 4:
8247 1.12 pgoyette p = "int";
8248 1.12 pgoyette break;
8249 1.12 pgoyette default:
8250 1.12 pgoyette break;
8251 1.12 pgoyette };
8252 1.12 pgoyette break;
8253 1.12 pgoyette /* sys_getxattr */
8254 1.12 pgoyette case 378:
8255 1.12 pgoyette switch(ndx) {
8256 1.12 pgoyette case 0:
8257 1.12 pgoyette p = "const char *";
8258 1.12 pgoyette break;
8259 1.12 pgoyette case 1:
8260 1.12 pgoyette p = "const char *";
8261 1.12 pgoyette break;
8262 1.12 pgoyette case 2:
8263 1.12 pgoyette p = "void *";
8264 1.12 pgoyette break;
8265 1.12 pgoyette case 3:
8266 1.12 pgoyette p = "size_t";
8267 1.12 pgoyette break;
8268 1.12 pgoyette default:
8269 1.12 pgoyette break;
8270 1.12 pgoyette };
8271 1.12 pgoyette break;
8272 1.12 pgoyette /* sys_lgetxattr */
8273 1.12 pgoyette case 379:
8274 1.12 pgoyette switch(ndx) {
8275 1.12 pgoyette case 0:
8276 1.12 pgoyette p = "const char *";
8277 1.12 pgoyette break;
8278 1.12 pgoyette case 1:
8279 1.12 pgoyette p = "const char *";
8280 1.12 pgoyette break;
8281 1.12 pgoyette case 2:
8282 1.12 pgoyette p = "void *";
8283 1.12 pgoyette break;
8284 1.12 pgoyette case 3:
8285 1.12 pgoyette p = "size_t";
8286 1.12 pgoyette break;
8287 1.12 pgoyette default:
8288 1.12 pgoyette break;
8289 1.12 pgoyette };
8290 1.12 pgoyette break;
8291 1.12 pgoyette /* sys_fgetxattr */
8292 1.12 pgoyette case 380:
8293 1.12 pgoyette switch(ndx) {
8294 1.12 pgoyette case 0:
8295 1.12 pgoyette p = "int";
8296 1.12 pgoyette break;
8297 1.12 pgoyette case 1:
8298 1.12 pgoyette p = "const char *";
8299 1.12 pgoyette break;
8300 1.12 pgoyette case 2:
8301 1.12 pgoyette p = "void *";
8302 1.12 pgoyette break;
8303 1.12 pgoyette case 3:
8304 1.12 pgoyette p = "size_t";
8305 1.12 pgoyette break;
8306 1.12 pgoyette default:
8307 1.12 pgoyette break;
8308 1.12 pgoyette };
8309 1.12 pgoyette break;
8310 1.12 pgoyette /* sys_listxattr */
8311 1.12 pgoyette case 381:
8312 1.12 pgoyette switch(ndx) {
8313 1.12 pgoyette case 0:
8314 1.12 pgoyette p = "const char *";
8315 1.12 pgoyette break;
8316 1.12 pgoyette case 1:
8317 1.12 pgoyette p = "char *";
8318 1.12 pgoyette break;
8319 1.12 pgoyette case 2:
8320 1.12 pgoyette p = "size_t";
8321 1.12 pgoyette break;
8322 1.12 pgoyette default:
8323 1.12 pgoyette break;
8324 1.12 pgoyette };
8325 1.12 pgoyette break;
8326 1.12 pgoyette /* sys_llistxattr */
8327 1.12 pgoyette case 382:
8328 1.12 pgoyette switch(ndx) {
8329 1.12 pgoyette case 0:
8330 1.12 pgoyette p = "const char *";
8331 1.12 pgoyette break;
8332 1.12 pgoyette case 1:
8333 1.12 pgoyette p = "char *";
8334 1.12 pgoyette break;
8335 1.12 pgoyette case 2:
8336 1.12 pgoyette p = "size_t";
8337 1.12 pgoyette break;
8338 1.12 pgoyette default:
8339 1.12 pgoyette break;
8340 1.12 pgoyette };
8341 1.12 pgoyette break;
8342 1.12 pgoyette /* sys_flistxattr */
8343 1.12 pgoyette case 383:
8344 1.12 pgoyette switch(ndx) {
8345 1.12 pgoyette case 0:
8346 1.12 pgoyette p = "int";
8347 1.12 pgoyette break;
8348 1.12 pgoyette case 1:
8349 1.12 pgoyette p = "char *";
8350 1.12 pgoyette break;
8351 1.12 pgoyette case 2:
8352 1.12 pgoyette p = "size_t";
8353 1.12 pgoyette break;
8354 1.12 pgoyette default:
8355 1.12 pgoyette break;
8356 1.12 pgoyette };
8357 1.12 pgoyette break;
8358 1.12 pgoyette /* sys_removexattr */
8359 1.12 pgoyette case 384:
8360 1.12 pgoyette switch(ndx) {
8361 1.12 pgoyette case 0:
8362 1.12 pgoyette p = "const char *";
8363 1.12 pgoyette break;
8364 1.12 pgoyette case 1:
8365 1.12 pgoyette p = "const char *";
8366 1.12 pgoyette break;
8367 1.12 pgoyette default:
8368 1.12 pgoyette break;
8369 1.12 pgoyette };
8370 1.12 pgoyette break;
8371 1.12 pgoyette /* sys_lremovexattr */
8372 1.12 pgoyette case 385:
8373 1.12 pgoyette switch(ndx) {
8374 1.12 pgoyette case 0:
8375 1.12 pgoyette p = "const char *";
8376 1.12 pgoyette break;
8377 1.12 pgoyette case 1:
8378 1.12 pgoyette p = "const char *";
8379 1.12 pgoyette break;
8380 1.12 pgoyette default:
8381 1.12 pgoyette break;
8382 1.12 pgoyette };
8383 1.12 pgoyette break;
8384 1.12 pgoyette /* sys_fremovexattr */
8385 1.12 pgoyette case 386:
8386 1.12 pgoyette switch(ndx) {
8387 1.12 pgoyette case 0:
8388 1.12 pgoyette p = "int";
8389 1.12 pgoyette break;
8390 1.12 pgoyette case 1:
8391 1.12 pgoyette p = "const char *";
8392 1.12 pgoyette break;
8393 1.12 pgoyette default:
8394 1.12 pgoyette break;
8395 1.12 pgoyette };
8396 1.12 pgoyette break;
8397 1.12 pgoyette /* sys___stat30 */
8398 1.12 pgoyette case 387:
8399 1.12 pgoyette switch(ndx) {
8400 1.12 pgoyette case 0:
8401 1.12 pgoyette p = "const char *";
8402 1.12 pgoyette break;
8403 1.12 pgoyette case 1:
8404 1.12 pgoyette p = "struct stat30 *";
8405 1.12 pgoyette break;
8406 1.12 pgoyette default:
8407 1.12 pgoyette break;
8408 1.12 pgoyette };
8409 1.12 pgoyette break;
8410 1.12 pgoyette /* sys___fstat30 */
8411 1.12 pgoyette case 388:
8412 1.12 pgoyette switch(ndx) {
8413 1.12 pgoyette case 0:
8414 1.12 pgoyette p = "int";
8415 1.12 pgoyette break;
8416 1.12 pgoyette case 1:
8417 1.12 pgoyette p = "struct stat30 *";
8418 1.12 pgoyette break;
8419 1.12 pgoyette default:
8420 1.12 pgoyette break;
8421 1.12 pgoyette };
8422 1.12 pgoyette break;
8423 1.12 pgoyette /* sys___lstat30 */
8424 1.12 pgoyette case 389:
8425 1.12 pgoyette switch(ndx) {
8426 1.12 pgoyette case 0:
8427 1.12 pgoyette p = "const char *";
8428 1.12 pgoyette break;
8429 1.12 pgoyette case 1:
8430 1.12 pgoyette p = "struct stat30 *";
8431 1.12 pgoyette break;
8432 1.12 pgoyette default:
8433 1.12 pgoyette break;
8434 1.12 pgoyette };
8435 1.12 pgoyette break;
8436 1.12 pgoyette /* sys___getdents30 */
8437 1.12 pgoyette case 390:
8438 1.12 pgoyette switch(ndx) {
8439 1.12 pgoyette case 0:
8440 1.12 pgoyette p = "int";
8441 1.12 pgoyette break;
8442 1.12 pgoyette case 1:
8443 1.12 pgoyette p = "char *";
8444 1.12 pgoyette break;
8445 1.12 pgoyette case 2:
8446 1.12 pgoyette p = "size_t";
8447 1.12 pgoyette break;
8448 1.12 pgoyette default:
8449 1.12 pgoyette break;
8450 1.12 pgoyette };
8451 1.12 pgoyette break;
8452 1.12 pgoyette /* sys___fhstat30 */
8453 1.12 pgoyette case 392:
8454 1.12 pgoyette switch(ndx) {
8455 1.12 pgoyette case 0:
8456 1.12 pgoyette p = "const struct compat_30_fhandle *";
8457 1.12 pgoyette break;
8458 1.12 pgoyette case 1:
8459 1.12 pgoyette p = "struct stat30 *";
8460 1.12 pgoyette break;
8461 1.12 pgoyette default:
8462 1.12 pgoyette break;
8463 1.12 pgoyette };
8464 1.12 pgoyette break;
8465 1.12 pgoyette /* sys___ntp_gettime30 */
8466 1.12 pgoyette case 393:
8467 1.12 pgoyette switch(ndx) {
8468 1.12 pgoyette case 0:
8469 1.12 pgoyette p = "struct ntptimeval50 *";
8470 1.12 pgoyette break;
8471 1.12 pgoyette default:
8472 1.12 pgoyette break;
8473 1.12 pgoyette };
8474 1.12 pgoyette break;
8475 1.12 pgoyette /* sys___socket30 */
8476 1.12 pgoyette case 394:
8477 1.12 pgoyette switch(ndx) {
8478 1.12 pgoyette case 0:
8479 1.12 pgoyette p = "int";
8480 1.12 pgoyette break;
8481 1.12 pgoyette case 1:
8482 1.12 pgoyette p = "int";
8483 1.12 pgoyette break;
8484 1.12 pgoyette case 2:
8485 1.12 pgoyette p = "int";
8486 1.12 pgoyette break;
8487 1.12 pgoyette default:
8488 1.12 pgoyette break;
8489 1.12 pgoyette };
8490 1.12 pgoyette break;
8491 1.12 pgoyette /* sys___getfh30 */
8492 1.12 pgoyette case 395:
8493 1.12 pgoyette switch(ndx) {
8494 1.12 pgoyette case 0:
8495 1.12 pgoyette p = "const char *";
8496 1.12 pgoyette break;
8497 1.12 pgoyette case 1:
8498 1.12 pgoyette p = "void *";
8499 1.12 pgoyette break;
8500 1.12 pgoyette case 2:
8501 1.12 pgoyette p = "size_t *";
8502 1.12 pgoyette break;
8503 1.12 pgoyette default:
8504 1.12 pgoyette break;
8505 1.12 pgoyette };
8506 1.12 pgoyette break;
8507 1.12 pgoyette /* sys___fhopen40 */
8508 1.12 pgoyette case 396:
8509 1.12 pgoyette switch(ndx) {
8510 1.12 pgoyette case 0:
8511 1.12 pgoyette p = "const void *";
8512 1.12 pgoyette break;
8513 1.12 pgoyette case 1:
8514 1.12 pgoyette p = "size_t";
8515 1.12 pgoyette break;
8516 1.12 pgoyette case 2:
8517 1.12 pgoyette p = "int";
8518 1.12 pgoyette break;
8519 1.12 pgoyette default:
8520 1.12 pgoyette break;
8521 1.12 pgoyette };
8522 1.12 pgoyette break;
8523 1.12 pgoyette /* sys___fhstatvfs140 */
8524 1.12 pgoyette case 397:
8525 1.12 pgoyette switch(ndx) {
8526 1.12 pgoyette case 0:
8527 1.12 pgoyette p = "const void *";
8528 1.12 pgoyette break;
8529 1.12 pgoyette case 1:
8530 1.12 pgoyette p = "size_t";
8531 1.12 pgoyette break;
8532 1.12 pgoyette case 2:
8533 1.12 pgoyette p = "struct statvfs *";
8534 1.12 pgoyette break;
8535 1.12 pgoyette case 3:
8536 1.12 pgoyette p = "int";
8537 1.12 pgoyette break;
8538 1.12 pgoyette default:
8539 1.12 pgoyette break;
8540 1.12 pgoyette };
8541 1.12 pgoyette break;
8542 1.12 pgoyette /* sys___fhstat40 */
8543 1.12 pgoyette case 398:
8544 1.12 pgoyette switch(ndx) {
8545 1.12 pgoyette case 0:
8546 1.12 pgoyette p = "const void *";
8547 1.12 pgoyette break;
8548 1.12 pgoyette case 1:
8549 1.12 pgoyette p = "size_t";
8550 1.12 pgoyette break;
8551 1.12 pgoyette case 2:
8552 1.12 pgoyette p = "struct stat30 *";
8553 1.12 pgoyette break;
8554 1.12 pgoyette default:
8555 1.12 pgoyette break;
8556 1.12 pgoyette };
8557 1.12 pgoyette break;
8558 1.12 pgoyette /* sys_aio_cancel */
8559 1.12 pgoyette case 399:
8560 1.12 pgoyette switch(ndx) {
8561 1.12 pgoyette case 0:
8562 1.12 pgoyette p = "int";
8563 1.12 pgoyette break;
8564 1.12 pgoyette case 1:
8565 1.12 pgoyette p = "struct aiocb *";
8566 1.12 pgoyette break;
8567 1.12 pgoyette default:
8568 1.12 pgoyette break;
8569 1.12 pgoyette };
8570 1.12 pgoyette break;
8571 1.12 pgoyette /* sys_aio_error */
8572 1.12 pgoyette case 400:
8573 1.12 pgoyette switch(ndx) {
8574 1.12 pgoyette case 0:
8575 1.12 pgoyette p = "const struct aiocb *";
8576 1.12 pgoyette break;
8577 1.12 pgoyette default:
8578 1.12 pgoyette break;
8579 1.12 pgoyette };
8580 1.12 pgoyette break;
8581 1.12 pgoyette /* sys_aio_fsync */
8582 1.12 pgoyette case 401:
8583 1.12 pgoyette switch(ndx) {
8584 1.12 pgoyette case 0:
8585 1.12 pgoyette p = "int";
8586 1.12 pgoyette break;
8587 1.12 pgoyette case 1:
8588 1.12 pgoyette p = "struct aiocb *";
8589 1.12 pgoyette break;
8590 1.12 pgoyette default:
8591 1.12 pgoyette break;
8592 1.12 pgoyette };
8593 1.12 pgoyette break;
8594 1.12 pgoyette /* sys_aio_read */
8595 1.12 pgoyette case 402:
8596 1.12 pgoyette switch(ndx) {
8597 1.12 pgoyette case 0:
8598 1.12 pgoyette p = "struct aiocb *";
8599 1.12 pgoyette break;
8600 1.12 pgoyette default:
8601 1.12 pgoyette break;
8602 1.12 pgoyette };
8603 1.12 pgoyette break;
8604 1.12 pgoyette /* sys_aio_return */
8605 1.12 pgoyette case 403:
8606 1.12 pgoyette switch(ndx) {
8607 1.12 pgoyette case 0:
8608 1.12 pgoyette p = "struct aiocb *";
8609 1.12 pgoyette break;
8610 1.12 pgoyette default:
8611 1.12 pgoyette break;
8612 1.12 pgoyette };
8613 1.12 pgoyette break;
8614 1.12 pgoyette /* sys_aio_suspend */
8615 1.12 pgoyette case 404:
8616 1.12 pgoyette switch(ndx) {
8617 1.12 pgoyette case 0:
8618 1.12 pgoyette p = "const struct aiocb *const *";
8619 1.12 pgoyette break;
8620 1.12 pgoyette case 1:
8621 1.12 pgoyette p = "int";
8622 1.12 pgoyette break;
8623 1.12 pgoyette case 2:
8624 1.12 pgoyette p = "const struct timespec50 *";
8625 1.12 pgoyette break;
8626 1.12 pgoyette default:
8627 1.12 pgoyette break;
8628 1.12 pgoyette };
8629 1.12 pgoyette break;
8630 1.12 pgoyette /* sys_aio_write */
8631 1.12 pgoyette case 405:
8632 1.12 pgoyette switch(ndx) {
8633 1.12 pgoyette case 0:
8634 1.12 pgoyette p = "struct aiocb *";
8635 1.12 pgoyette break;
8636 1.12 pgoyette default:
8637 1.12 pgoyette break;
8638 1.12 pgoyette };
8639 1.12 pgoyette break;
8640 1.12 pgoyette /* sys_lio_listio */
8641 1.12 pgoyette case 406:
8642 1.12 pgoyette switch(ndx) {
8643 1.12 pgoyette case 0:
8644 1.12 pgoyette p = "int";
8645 1.12 pgoyette break;
8646 1.12 pgoyette case 1:
8647 1.12 pgoyette p = "struct aiocb *const *";
8648 1.12 pgoyette break;
8649 1.12 pgoyette case 2:
8650 1.12 pgoyette p = "int";
8651 1.12 pgoyette break;
8652 1.12 pgoyette case 3:
8653 1.12 pgoyette p = "struct sigevent *";
8654 1.12 pgoyette break;
8655 1.12 pgoyette default:
8656 1.12 pgoyette break;
8657 1.12 pgoyette };
8658 1.12 pgoyette break;
8659 1.12 pgoyette /* sys___mount50 */
8660 1.12 pgoyette case 410:
8661 1.12 pgoyette switch(ndx) {
8662 1.12 pgoyette case 0:
8663 1.12 pgoyette p = "const char *";
8664 1.12 pgoyette break;
8665 1.12 pgoyette case 1:
8666 1.12 pgoyette p = "const char *";
8667 1.12 pgoyette break;
8668 1.12 pgoyette case 2:
8669 1.12 pgoyette p = "int";
8670 1.12 pgoyette break;
8671 1.12 pgoyette case 3:
8672 1.12 pgoyette p = "void *";
8673 1.12 pgoyette break;
8674 1.12 pgoyette case 4:
8675 1.12 pgoyette p = "size_t";
8676 1.12 pgoyette break;
8677 1.12 pgoyette default:
8678 1.12 pgoyette break;
8679 1.12 pgoyette };
8680 1.12 pgoyette break;
8681 1.12 pgoyette /* sys_mremap */
8682 1.12 pgoyette case 411:
8683 1.12 pgoyette switch(ndx) {
8684 1.12 pgoyette case 0:
8685 1.12 pgoyette p = "void *";
8686 1.12 pgoyette break;
8687 1.12 pgoyette case 1:
8688 1.12 pgoyette p = "size_t";
8689 1.12 pgoyette break;
8690 1.12 pgoyette case 2:
8691 1.12 pgoyette p = "void *";
8692 1.12 pgoyette break;
8693 1.12 pgoyette case 3:
8694 1.12 pgoyette p = "size_t";
8695 1.12 pgoyette break;
8696 1.12 pgoyette case 4:
8697 1.12 pgoyette p = "int";
8698 1.12 pgoyette break;
8699 1.12 pgoyette default:
8700 1.12 pgoyette break;
8701 1.12 pgoyette };
8702 1.12 pgoyette break;
8703 1.12 pgoyette /* sys_pset_create */
8704 1.12 pgoyette case 412:
8705 1.12 pgoyette switch(ndx) {
8706 1.12 pgoyette case 0:
8707 1.12 pgoyette p = "psetid_t *";
8708 1.12 pgoyette break;
8709 1.12 pgoyette default:
8710 1.12 pgoyette break;
8711 1.12 pgoyette };
8712 1.12 pgoyette break;
8713 1.12 pgoyette /* sys_pset_destroy */
8714 1.12 pgoyette case 413:
8715 1.12 pgoyette switch(ndx) {
8716 1.12 pgoyette case 0:
8717 1.12 pgoyette p = "psetid_t";
8718 1.12 pgoyette break;
8719 1.12 pgoyette default:
8720 1.12 pgoyette break;
8721 1.12 pgoyette };
8722 1.12 pgoyette break;
8723 1.12 pgoyette /* sys_pset_assign */
8724 1.12 pgoyette case 414:
8725 1.12 pgoyette switch(ndx) {
8726 1.12 pgoyette case 0:
8727 1.12 pgoyette p = "psetid_t";
8728 1.12 pgoyette break;
8729 1.12 pgoyette case 1:
8730 1.12 pgoyette p = "cpuid_t";
8731 1.12 pgoyette break;
8732 1.12 pgoyette case 2:
8733 1.12 pgoyette p = "psetid_t *";
8734 1.12 pgoyette break;
8735 1.12 pgoyette default:
8736 1.12 pgoyette break;
8737 1.12 pgoyette };
8738 1.12 pgoyette break;
8739 1.12 pgoyette /* sys__pset_bind */
8740 1.12 pgoyette case 415:
8741 1.12 pgoyette switch(ndx) {
8742 1.12 pgoyette case 0:
8743 1.12 pgoyette p = "idtype_t";
8744 1.12 pgoyette break;
8745 1.12 pgoyette case 1:
8746 1.12 pgoyette p = "id_t";
8747 1.12 pgoyette break;
8748 1.12 pgoyette case 2:
8749 1.12 pgoyette p = "id_t";
8750 1.12 pgoyette break;
8751 1.12 pgoyette case 3:
8752 1.12 pgoyette p = "psetid_t";
8753 1.12 pgoyette break;
8754 1.12 pgoyette case 4:
8755 1.12 pgoyette p = "psetid_t *";
8756 1.12 pgoyette break;
8757 1.12 pgoyette default:
8758 1.12 pgoyette break;
8759 1.12 pgoyette };
8760 1.12 pgoyette break;
8761 1.12 pgoyette /* sys___posix_fadvise50 */
8762 1.12 pgoyette case 416:
8763 1.12 pgoyette switch(ndx) {
8764 1.12 pgoyette case 0:
8765 1.12 pgoyette p = "int";
8766 1.12 pgoyette break;
8767 1.12 pgoyette case 1:
8768 1.12 pgoyette p = "int";
8769 1.12 pgoyette break;
8770 1.12 pgoyette case 2:
8771 1.12 pgoyette p = "off_t";
8772 1.12 pgoyette break;
8773 1.12 pgoyette case 3:
8774 1.12 pgoyette p = "off_t";
8775 1.12 pgoyette break;
8776 1.12 pgoyette case 4:
8777 1.12 pgoyette p = "int";
8778 1.12 pgoyette break;
8779 1.12 pgoyette default:
8780 1.12 pgoyette break;
8781 1.12 pgoyette };
8782 1.12 pgoyette break;
8783 1.12 pgoyette /* sys___select50 */
8784 1.12 pgoyette case 417:
8785 1.12 pgoyette switch(ndx) {
8786 1.12 pgoyette case 0:
8787 1.12 pgoyette p = "int";
8788 1.12 pgoyette break;
8789 1.12 pgoyette case 1:
8790 1.12 pgoyette p = "fd_set *";
8791 1.12 pgoyette break;
8792 1.12 pgoyette case 2:
8793 1.12 pgoyette p = "fd_set *";
8794 1.12 pgoyette break;
8795 1.12 pgoyette case 3:
8796 1.12 pgoyette p = "fd_set *";
8797 1.12 pgoyette break;
8798 1.12 pgoyette case 4:
8799 1.12 pgoyette p = "struct timeval *";
8800 1.12 pgoyette break;
8801 1.12 pgoyette default:
8802 1.12 pgoyette break;
8803 1.12 pgoyette };
8804 1.12 pgoyette break;
8805 1.12 pgoyette /* sys___gettimeofday50 */
8806 1.12 pgoyette case 418:
8807 1.12 pgoyette switch(ndx) {
8808 1.12 pgoyette case 0:
8809 1.12 pgoyette p = "struct timeval *";
8810 1.12 pgoyette break;
8811 1.12 pgoyette case 1:
8812 1.12 pgoyette p = "void *";
8813 1.12 pgoyette break;
8814 1.12 pgoyette default:
8815 1.12 pgoyette break;
8816 1.12 pgoyette };
8817 1.12 pgoyette break;
8818 1.12 pgoyette /* sys___settimeofday50 */
8819 1.12 pgoyette case 419:
8820 1.12 pgoyette switch(ndx) {
8821 1.12 pgoyette case 0:
8822 1.12 pgoyette p = "const struct timeval *";
8823 1.12 pgoyette break;
8824 1.12 pgoyette case 1:
8825 1.12 pgoyette p = "const void *";
8826 1.12 pgoyette break;
8827 1.12 pgoyette default:
8828 1.12 pgoyette break;
8829 1.12 pgoyette };
8830 1.12 pgoyette break;
8831 1.12 pgoyette /* sys___utimes50 */
8832 1.12 pgoyette case 420:
8833 1.12 pgoyette switch(ndx) {
8834 1.12 pgoyette case 0:
8835 1.12 pgoyette p = "const char *";
8836 1.12 pgoyette break;
8837 1.12 pgoyette case 1:
8838 1.12 pgoyette p = "const struct timeval *";
8839 1.12 pgoyette break;
8840 1.12 pgoyette default:
8841 1.12 pgoyette break;
8842 1.12 pgoyette };
8843 1.12 pgoyette break;
8844 1.12 pgoyette /* sys___adjtime50 */
8845 1.12 pgoyette case 421:
8846 1.12 pgoyette switch(ndx) {
8847 1.12 pgoyette case 0:
8848 1.12 pgoyette p = "const struct timeval *";
8849 1.12 pgoyette break;
8850 1.12 pgoyette case 1:
8851 1.12 pgoyette p = "struct timeval *";
8852 1.12 pgoyette break;
8853 1.12 pgoyette default:
8854 1.12 pgoyette break;
8855 1.12 pgoyette };
8856 1.12 pgoyette break;
8857 1.12 pgoyette /* sys___lfs_segwait50 */
8858 1.12 pgoyette case 422:
8859 1.12 pgoyette switch(ndx) {
8860 1.12 pgoyette case 0:
8861 1.12 pgoyette p = "fsid_t *";
8862 1.12 pgoyette break;
8863 1.12 pgoyette case 1:
8864 1.12 pgoyette p = "struct timeval *";
8865 1.12 pgoyette break;
8866 1.12 pgoyette default:
8867 1.12 pgoyette break;
8868 1.12 pgoyette };
8869 1.12 pgoyette break;
8870 1.12 pgoyette /* sys___futimes50 */
8871 1.12 pgoyette case 423:
8872 1.12 pgoyette switch(ndx) {
8873 1.12 pgoyette case 0:
8874 1.12 pgoyette p = "int";
8875 1.12 pgoyette break;
8876 1.12 pgoyette case 1:
8877 1.12 pgoyette p = "const struct timeval *";
8878 1.12 pgoyette break;
8879 1.12 pgoyette default:
8880 1.12 pgoyette break;
8881 1.12 pgoyette };
8882 1.12 pgoyette break;
8883 1.12 pgoyette /* sys___lutimes50 */
8884 1.12 pgoyette case 424:
8885 1.12 pgoyette switch(ndx) {
8886 1.12 pgoyette case 0:
8887 1.12 pgoyette p = "const char *";
8888 1.12 pgoyette break;
8889 1.12 pgoyette case 1:
8890 1.12 pgoyette p = "const struct timeval *";
8891 1.12 pgoyette break;
8892 1.12 pgoyette default:
8893 1.12 pgoyette break;
8894 1.12 pgoyette };
8895 1.12 pgoyette break;
8896 1.12 pgoyette /* sys___setitimer50 */
8897 1.12 pgoyette case 425:
8898 1.12 pgoyette switch(ndx) {
8899 1.12 pgoyette case 0:
8900 1.12 pgoyette p = "int";
8901 1.12 pgoyette break;
8902 1.12 pgoyette case 1:
8903 1.12 pgoyette p = "const struct itimerval *";
8904 1.12 pgoyette break;
8905 1.12 pgoyette case 2:
8906 1.12 pgoyette p = "struct itimerval *";
8907 1.12 pgoyette break;
8908 1.12 pgoyette default:
8909 1.12 pgoyette break;
8910 1.12 pgoyette };
8911 1.12 pgoyette break;
8912 1.12 pgoyette /* sys___getitimer50 */
8913 1.12 pgoyette case 426:
8914 1.12 pgoyette switch(ndx) {
8915 1.12 pgoyette case 0:
8916 1.12 pgoyette p = "int";
8917 1.12 pgoyette break;
8918 1.12 pgoyette case 1:
8919 1.12 pgoyette p = "struct itimerval *";
8920 1.12 pgoyette break;
8921 1.12 pgoyette default:
8922 1.12 pgoyette break;
8923 1.12 pgoyette };
8924 1.12 pgoyette break;
8925 1.12 pgoyette /* sys___clock_gettime50 */
8926 1.12 pgoyette case 427:
8927 1.12 pgoyette switch(ndx) {
8928 1.12 pgoyette case 0:
8929 1.12 pgoyette p = "clockid_t";
8930 1.12 pgoyette break;
8931 1.12 pgoyette case 1:
8932 1.12 pgoyette p = "struct timespec *";
8933 1.12 pgoyette break;
8934 1.12 pgoyette default:
8935 1.12 pgoyette break;
8936 1.12 pgoyette };
8937 1.12 pgoyette break;
8938 1.12 pgoyette /* sys___clock_settime50 */
8939 1.12 pgoyette case 428:
8940 1.12 pgoyette switch(ndx) {
8941 1.12 pgoyette case 0:
8942 1.12 pgoyette p = "clockid_t";
8943 1.12 pgoyette break;
8944 1.12 pgoyette case 1:
8945 1.12 pgoyette p = "const struct timespec *";
8946 1.12 pgoyette break;
8947 1.12 pgoyette default:
8948 1.12 pgoyette break;
8949 1.12 pgoyette };
8950 1.12 pgoyette break;
8951 1.12 pgoyette /* sys___clock_getres50 */
8952 1.12 pgoyette case 429:
8953 1.12 pgoyette switch(ndx) {
8954 1.12 pgoyette case 0:
8955 1.12 pgoyette p = "clockid_t";
8956 1.12 pgoyette break;
8957 1.12 pgoyette case 1:
8958 1.12 pgoyette p = "struct timespec *";
8959 1.12 pgoyette break;
8960 1.12 pgoyette default:
8961 1.12 pgoyette break;
8962 1.12 pgoyette };
8963 1.12 pgoyette break;
8964 1.12 pgoyette /* sys___nanosleep50 */
8965 1.12 pgoyette case 430:
8966 1.12 pgoyette switch(ndx) {
8967 1.12 pgoyette case 0:
8968 1.12 pgoyette p = "const struct timespec *";
8969 1.12 pgoyette break;
8970 1.12 pgoyette case 1:
8971 1.12 pgoyette p = "struct timespec *";
8972 1.12 pgoyette break;
8973 1.12 pgoyette default:
8974 1.12 pgoyette break;
8975 1.12 pgoyette };
8976 1.12 pgoyette break;
8977 1.12 pgoyette /* sys_____sigtimedwait50 */
8978 1.12 pgoyette case 431:
8979 1.12 pgoyette switch(ndx) {
8980 1.12 pgoyette case 0:
8981 1.12 pgoyette p = "const sigset_t *";
8982 1.12 pgoyette break;
8983 1.12 pgoyette case 1:
8984 1.12 pgoyette p = "siginfo_t *";
8985 1.12 pgoyette break;
8986 1.12 pgoyette case 2:
8987 1.12 pgoyette p = "struct timespec *";
8988 1.12 pgoyette break;
8989 1.12 pgoyette default:
8990 1.12 pgoyette break;
8991 1.12 pgoyette };
8992 1.12 pgoyette break;
8993 1.12 pgoyette /* sys___mq_timedsend50 */
8994 1.12 pgoyette case 432:
8995 1.12 pgoyette switch(ndx) {
8996 1.12 pgoyette case 0:
8997 1.12 pgoyette p = "mqd_t";
8998 1.12 pgoyette break;
8999 1.12 pgoyette case 1:
9000 1.12 pgoyette p = "const char *";
9001 1.12 pgoyette break;
9002 1.12 pgoyette case 2:
9003 1.12 pgoyette p = "size_t";
9004 1.12 pgoyette break;
9005 1.12 pgoyette case 3:
9006 1.12 pgoyette p = "unsigned";
9007 1.12 pgoyette break;
9008 1.12 pgoyette case 4:
9009 1.12 pgoyette p = "const struct timespec *";
9010 1.12 pgoyette break;
9011 1.12 pgoyette default:
9012 1.12 pgoyette break;
9013 1.12 pgoyette };
9014 1.12 pgoyette break;
9015 1.12 pgoyette /* sys___mq_timedreceive50 */
9016 1.12 pgoyette case 433:
9017 1.12 pgoyette switch(ndx) {
9018 1.12 pgoyette case 0:
9019 1.12 pgoyette p = "mqd_t";
9020 1.12 pgoyette break;
9021 1.12 pgoyette case 1:
9022 1.12 pgoyette p = "char *";
9023 1.12 pgoyette break;
9024 1.12 pgoyette case 2:
9025 1.12 pgoyette p = "size_t";
9026 1.12 pgoyette break;
9027 1.12 pgoyette case 3:
9028 1.12 pgoyette p = "unsigned *";
9029 1.12 pgoyette break;
9030 1.12 pgoyette case 4:
9031 1.12 pgoyette p = "const struct timespec *";
9032 1.12 pgoyette break;
9033 1.12 pgoyette default:
9034 1.12 pgoyette break;
9035 1.12 pgoyette };
9036 1.12 pgoyette break;
9037 1.12 pgoyette /* sys__lwp_park */
9038 1.12 pgoyette case 434:
9039 1.12 pgoyette switch(ndx) {
9040 1.12 pgoyette case 0:
9041 1.12 pgoyette p = "const struct timespec *";
9042 1.12 pgoyette break;
9043 1.12 pgoyette case 1:
9044 1.12 pgoyette p = "lwpid_t";
9045 1.12 pgoyette break;
9046 1.12 pgoyette case 2:
9047 1.12 pgoyette p = "const void *";
9048 1.12 pgoyette break;
9049 1.12 pgoyette case 3:
9050 1.12 pgoyette p = "const void *";
9051 1.12 pgoyette break;
9052 1.12 pgoyette default:
9053 1.12 pgoyette break;
9054 1.12 pgoyette };
9055 1.12 pgoyette break;
9056 1.12 pgoyette /* sys___kevent50 */
9057 1.12 pgoyette case 435:
9058 1.12 pgoyette switch(ndx) {
9059 1.12 pgoyette case 0:
9060 1.12 pgoyette p = "int";
9061 1.12 pgoyette break;
9062 1.12 pgoyette case 1:
9063 1.12 pgoyette p = "const struct kevent *";
9064 1.12 pgoyette break;
9065 1.12 pgoyette case 2:
9066 1.12 pgoyette p = "size_t";
9067 1.12 pgoyette break;
9068 1.12 pgoyette case 3:
9069 1.12 pgoyette p = "struct kevent *";
9070 1.12 pgoyette break;
9071 1.12 pgoyette case 4:
9072 1.12 pgoyette p = "size_t";
9073 1.12 pgoyette break;
9074 1.12 pgoyette case 5:
9075 1.12 pgoyette p = "const struct timespec *";
9076 1.12 pgoyette break;
9077 1.12 pgoyette default:
9078 1.12 pgoyette break;
9079 1.12 pgoyette };
9080 1.12 pgoyette break;
9081 1.12 pgoyette /* sys___pselect50 */
9082 1.12 pgoyette case 436:
9083 1.12 pgoyette switch(ndx) {
9084 1.12 pgoyette case 0:
9085 1.12 pgoyette p = "int";
9086 1.12 pgoyette break;
9087 1.12 pgoyette case 1:
9088 1.12 pgoyette p = "fd_set *";
9089 1.12 pgoyette break;
9090 1.12 pgoyette case 2:
9091 1.12 pgoyette p = "fd_set *";
9092 1.12 pgoyette break;
9093 1.12 pgoyette case 3:
9094 1.12 pgoyette p = "fd_set *";
9095 1.12 pgoyette break;
9096 1.12 pgoyette case 4:
9097 1.12 pgoyette p = "const struct timespec *";
9098 1.12 pgoyette break;
9099 1.12 pgoyette case 5:
9100 1.12 pgoyette p = "const sigset_t *";
9101 1.12 pgoyette break;
9102 1.12 pgoyette default:
9103 1.12 pgoyette break;
9104 1.12 pgoyette };
9105 1.12 pgoyette break;
9106 1.12 pgoyette /* sys___pollts50 */
9107 1.12 pgoyette case 437:
9108 1.12 pgoyette switch(ndx) {
9109 1.12 pgoyette case 0:
9110 1.12 pgoyette p = "struct pollfd *";
9111 1.12 pgoyette break;
9112 1.12 pgoyette case 1:
9113 1.12 pgoyette p = "u_int";
9114 1.12 pgoyette break;
9115 1.12 pgoyette case 2:
9116 1.12 pgoyette p = "const struct timespec *";
9117 1.12 pgoyette break;
9118 1.12 pgoyette case 3:
9119 1.12 pgoyette p = "const sigset_t *";
9120 1.12 pgoyette break;
9121 1.12 pgoyette default:
9122 1.12 pgoyette break;
9123 1.12 pgoyette };
9124 1.12 pgoyette break;
9125 1.12 pgoyette /* sys___aio_suspend50 */
9126 1.12 pgoyette case 438:
9127 1.12 pgoyette switch(ndx) {
9128 1.12 pgoyette case 0:
9129 1.12 pgoyette p = "const struct aiocb *const *";
9130 1.12 pgoyette break;
9131 1.12 pgoyette case 1:
9132 1.12 pgoyette p = "int";
9133 1.12 pgoyette break;
9134 1.12 pgoyette case 2:
9135 1.12 pgoyette p = "const struct timespec *";
9136 1.12 pgoyette break;
9137 1.12 pgoyette default:
9138 1.12 pgoyette break;
9139 1.12 pgoyette };
9140 1.12 pgoyette break;
9141 1.12 pgoyette /* sys___stat50 */
9142 1.12 pgoyette case 439:
9143 1.12 pgoyette switch(ndx) {
9144 1.12 pgoyette case 0:
9145 1.12 pgoyette p = "const char *";
9146 1.12 pgoyette break;
9147 1.12 pgoyette case 1:
9148 1.12 pgoyette p = "struct stat *";
9149 1.12 pgoyette break;
9150 1.12 pgoyette default:
9151 1.12 pgoyette break;
9152 1.12 pgoyette };
9153 1.12 pgoyette break;
9154 1.12 pgoyette /* sys___fstat50 */
9155 1.12 pgoyette case 440:
9156 1.12 pgoyette switch(ndx) {
9157 1.12 pgoyette case 0:
9158 1.12 pgoyette p = "int";
9159 1.12 pgoyette break;
9160 1.12 pgoyette case 1:
9161 1.12 pgoyette p = "struct stat *";
9162 1.12 pgoyette break;
9163 1.12 pgoyette default:
9164 1.12 pgoyette break;
9165 1.12 pgoyette };
9166 1.12 pgoyette break;
9167 1.12 pgoyette /* sys___lstat50 */
9168 1.12 pgoyette case 441:
9169 1.12 pgoyette switch(ndx) {
9170 1.12 pgoyette case 0:
9171 1.12 pgoyette p = "const char *";
9172 1.12 pgoyette break;
9173 1.12 pgoyette case 1:
9174 1.12 pgoyette p = "struct stat *";
9175 1.12 pgoyette break;
9176 1.12 pgoyette default:
9177 1.12 pgoyette break;
9178 1.12 pgoyette };
9179 1.12 pgoyette break;
9180 1.12 pgoyette /* sys_____semctl50 */
9181 1.12 pgoyette case 442:
9182 1.12 pgoyette switch(ndx) {
9183 1.12 pgoyette case 0:
9184 1.12 pgoyette p = "int";
9185 1.12 pgoyette break;
9186 1.12 pgoyette case 1:
9187 1.12 pgoyette p = "int";
9188 1.12 pgoyette break;
9189 1.12 pgoyette case 2:
9190 1.12 pgoyette p = "int";
9191 1.12 pgoyette break;
9192 1.12 pgoyette case 3:
9193 1.12 pgoyette p = "union __semun *";
9194 1.12 pgoyette break;
9195 1.12 pgoyette default:
9196 1.12 pgoyette break;
9197 1.12 pgoyette };
9198 1.12 pgoyette break;
9199 1.12 pgoyette /* sys___shmctl50 */
9200 1.12 pgoyette case 443:
9201 1.12 pgoyette switch(ndx) {
9202 1.12 pgoyette case 0:
9203 1.12 pgoyette p = "int";
9204 1.12 pgoyette break;
9205 1.12 pgoyette case 1:
9206 1.12 pgoyette p = "int";
9207 1.12 pgoyette break;
9208 1.12 pgoyette case 2:
9209 1.12 pgoyette p = "struct shmid_ds *";
9210 1.12 pgoyette break;
9211 1.12 pgoyette default:
9212 1.12 pgoyette break;
9213 1.12 pgoyette };
9214 1.12 pgoyette break;
9215 1.12 pgoyette /* sys___msgctl50 */
9216 1.12 pgoyette case 444:
9217 1.12 pgoyette switch(ndx) {
9218 1.12 pgoyette case 0:
9219 1.12 pgoyette p = "int";
9220 1.12 pgoyette break;
9221 1.12 pgoyette case 1:
9222 1.12 pgoyette p = "int";
9223 1.12 pgoyette break;
9224 1.12 pgoyette case 2:
9225 1.12 pgoyette p = "struct msqid_ds *";
9226 1.12 pgoyette break;
9227 1.12 pgoyette default:
9228 1.12 pgoyette break;
9229 1.12 pgoyette };
9230 1.12 pgoyette break;
9231 1.12 pgoyette /* sys___getrusage50 */
9232 1.12 pgoyette case 445:
9233 1.12 pgoyette switch(ndx) {
9234 1.12 pgoyette case 0:
9235 1.12 pgoyette p = "int";
9236 1.12 pgoyette break;
9237 1.12 pgoyette case 1:
9238 1.12 pgoyette p = "struct rusage *";
9239 1.12 pgoyette break;
9240 1.12 pgoyette default:
9241 1.12 pgoyette break;
9242 1.12 pgoyette };
9243 1.12 pgoyette break;
9244 1.12 pgoyette /* sys___timer_settime50 */
9245 1.12 pgoyette case 446:
9246 1.12 pgoyette switch(ndx) {
9247 1.12 pgoyette case 0:
9248 1.12 pgoyette p = "timer_t";
9249 1.12 pgoyette break;
9250 1.12 pgoyette case 1:
9251 1.12 pgoyette p = "int";
9252 1.12 pgoyette break;
9253 1.12 pgoyette case 2:
9254 1.12 pgoyette p = "const struct itimerspec *";
9255 1.12 pgoyette break;
9256 1.12 pgoyette case 3:
9257 1.12 pgoyette p = "struct itimerspec *";
9258 1.12 pgoyette break;
9259 1.12 pgoyette default:
9260 1.12 pgoyette break;
9261 1.12 pgoyette };
9262 1.12 pgoyette break;
9263 1.12 pgoyette /* sys___timer_gettime50 */
9264 1.12 pgoyette case 447:
9265 1.12 pgoyette switch(ndx) {
9266 1.12 pgoyette case 0:
9267 1.12 pgoyette p = "timer_t";
9268 1.12 pgoyette break;
9269 1.12 pgoyette case 1:
9270 1.12 pgoyette p = "struct itimerspec *";
9271 1.12 pgoyette break;
9272 1.12 pgoyette default:
9273 1.12 pgoyette break;
9274 1.12 pgoyette };
9275 1.12 pgoyette break;
9276 1.12 pgoyette #if defined(NTP) || !defined(_KERNEL_OPT)
9277 1.12 pgoyette /* sys___ntp_gettime50 */
9278 1.12 pgoyette case 448:
9279 1.12 pgoyette switch(ndx) {
9280 1.12 pgoyette case 0:
9281 1.12 pgoyette p = "struct ntptimeval *";
9282 1.12 pgoyette break;
9283 1.12 pgoyette default:
9284 1.12 pgoyette break;
9285 1.12 pgoyette };
9286 1.12 pgoyette break;
9287 1.12 pgoyette #else
9288 1.12 pgoyette #endif
9289 1.12 pgoyette /* sys___wait450 */
9290 1.12 pgoyette case 449:
9291 1.12 pgoyette switch(ndx) {
9292 1.12 pgoyette case 0:
9293 1.12 pgoyette p = "pid_t";
9294 1.12 pgoyette break;
9295 1.12 pgoyette case 1:
9296 1.12 pgoyette p = "int *";
9297 1.12 pgoyette break;
9298 1.12 pgoyette case 2:
9299 1.12 pgoyette p = "int";
9300 1.12 pgoyette break;
9301 1.12 pgoyette case 3:
9302 1.12 pgoyette p = "struct rusage *";
9303 1.12 pgoyette break;
9304 1.12 pgoyette default:
9305 1.12 pgoyette break;
9306 1.12 pgoyette };
9307 1.12 pgoyette break;
9308 1.12 pgoyette /* sys___mknod50 */
9309 1.12 pgoyette case 450:
9310 1.12 pgoyette switch(ndx) {
9311 1.12 pgoyette case 0:
9312 1.12 pgoyette p = "const char *";
9313 1.12 pgoyette break;
9314 1.12 pgoyette case 1:
9315 1.12 pgoyette p = "mode_t";
9316 1.12 pgoyette break;
9317 1.12 pgoyette case 2:
9318 1.12 pgoyette p = "dev_t";
9319 1.12 pgoyette break;
9320 1.12 pgoyette default:
9321 1.12 pgoyette break;
9322 1.12 pgoyette };
9323 1.12 pgoyette break;
9324 1.12 pgoyette /* sys___fhstat50 */
9325 1.12 pgoyette case 451:
9326 1.12 pgoyette switch(ndx) {
9327 1.12 pgoyette case 0:
9328 1.12 pgoyette p = "const void *";
9329 1.12 pgoyette break;
9330 1.12 pgoyette case 1:
9331 1.12 pgoyette p = "size_t";
9332 1.12 pgoyette break;
9333 1.12 pgoyette case 2:
9334 1.12 pgoyette p = "struct stat *";
9335 1.12 pgoyette break;
9336 1.12 pgoyette default:
9337 1.12 pgoyette break;
9338 1.12 pgoyette };
9339 1.12 pgoyette break;
9340 1.12 pgoyette /* sys_pipe2 */
9341 1.12 pgoyette case 453:
9342 1.12 pgoyette switch(ndx) {
9343 1.12 pgoyette case 0:
9344 1.12 pgoyette p = "int *";
9345 1.12 pgoyette break;
9346 1.12 pgoyette case 1:
9347 1.12 pgoyette p = "int";
9348 1.12 pgoyette break;
9349 1.12 pgoyette default:
9350 1.12 pgoyette break;
9351 1.12 pgoyette };
9352 1.12 pgoyette break;
9353 1.12 pgoyette /* sys_dup3 */
9354 1.12 pgoyette case 454:
9355 1.12 pgoyette switch(ndx) {
9356 1.12 pgoyette case 0:
9357 1.12 pgoyette p = "int";
9358 1.12 pgoyette break;
9359 1.12 pgoyette case 1:
9360 1.12 pgoyette p = "int";
9361 1.12 pgoyette break;
9362 1.12 pgoyette case 2:
9363 1.12 pgoyette p = "int";
9364 1.12 pgoyette break;
9365 1.12 pgoyette default:
9366 1.12 pgoyette break;
9367 1.12 pgoyette };
9368 1.12 pgoyette break;
9369 1.12 pgoyette /* sys_kqueue1 */
9370 1.12 pgoyette case 455:
9371 1.12 pgoyette switch(ndx) {
9372 1.12 pgoyette case 0:
9373 1.12 pgoyette p = "int";
9374 1.12 pgoyette break;
9375 1.12 pgoyette default:
9376 1.12 pgoyette break;
9377 1.12 pgoyette };
9378 1.12 pgoyette break;
9379 1.12 pgoyette /* sys_paccept */
9380 1.12 pgoyette case 456:
9381 1.12 pgoyette switch(ndx) {
9382 1.12 pgoyette case 0:
9383 1.12 pgoyette p = "int";
9384 1.12 pgoyette break;
9385 1.12 pgoyette case 1:
9386 1.12 pgoyette p = "struct sockaddr *";
9387 1.12 pgoyette break;
9388 1.12 pgoyette case 2:
9389 1.12 pgoyette p = "socklen_t *";
9390 1.12 pgoyette break;
9391 1.12 pgoyette case 3:
9392 1.12 pgoyette p = "const sigset_t *";
9393 1.12 pgoyette break;
9394 1.12 pgoyette case 4:
9395 1.12 pgoyette p = "int";
9396 1.12 pgoyette break;
9397 1.12 pgoyette default:
9398 1.12 pgoyette break;
9399 1.12 pgoyette };
9400 1.12 pgoyette break;
9401 1.12 pgoyette /* sys_linkat */
9402 1.12 pgoyette case 457:
9403 1.12 pgoyette switch(ndx) {
9404 1.12 pgoyette case 0:
9405 1.12 pgoyette p = "int";
9406 1.12 pgoyette break;
9407 1.12 pgoyette case 1:
9408 1.12 pgoyette p = "const char *";
9409 1.12 pgoyette break;
9410 1.12 pgoyette case 2:
9411 1.12 pgoyette p = "int";
9412 1.12 pgoyette break;
9413 1.12 pgoyette case 3:
9414 1.12 pgoyette p = "const char *";
9415 1.12 pgoyette break;
9416 1.12 pgoyette case 4:
9417 1.12 pgoyette p = "int";
9418 1.12 pgoyette break;
9419 1.12 pgoyette default:
9420 1.12 pgoyette break;
9421 1.12 pgoyette };
9422 1.12 pgoyette break;
9423 1.12 pgoyette /* sys_renameat */
9424 1.12 pgoyette case 458:
9425 1.12 pgoyette switch(ndx) {
9426 1.12 pgoyette case 0:
9427 1.12 pgoyette p = "int";
9428 1.12 pgoyette break;
9429 1.12 pgoyette case 1:
9430 1.12 pgoyette p = "const char *";
9431 1.12 pgoyette break;
9432 1.12 pgoyette case 2:
9433 1.12 pgoyette p = "int";
9434 1.12 pgoyette break;
9435 1.12 pgoyette case 3:
9436 1.12 pgoyette p = "const char *";
9437 1.12 pgoyette break;
9438 1.12 pgoyette default:
9439 1.12 pgoyette break;
9440 1.12 pgoyette };
9441 1.12 pgoyette break;
9442 1.12 pgoyette /* sys_mkfifoat */
9443 1.12 pgoyette case 459:
9444 1.12 pgoyette switch(ndx) {
9445 1.12 pgoyette case 0:
9446 1.12 pgoyette p = "int";
9447 1.12 pgoyette break;
9448 1.12 pgoyette case 1:
9449 1.12 pgoyette p = "const char *";
9450 1.12 pgoyette break;
9451 1.12 pgoyette case 2:
9452 1.12 pgoyette p = "mode_t";
9453 1.12 pgoyette break;
9454 1.12 pgoyette default:
9455 1.12 pgoyette break;
9456 1.12 pgoyette };
9457 1.12 pgoyette break;
9458 1.12 pgoyette /* sys_mknodat */
9459 1.12 pgoyette case 460:
9460 1.12 pgoyette switch(ndx) {
9461 1.12 pgoyette case 0:
9462 1.12 pgoyette p = "int";
9463 1.12 pgoyette break;
9464 1.12 pgoyette case 1:
9465 1.12 pgoyette p = "const char *";
9466 1.12 pgoyette break;
9467 1.12 pgoyette case 2:
9468 1.12 pgoyette p = "mode_t";
9469 1.12 pgoyette break;
9470 1.12 pgoyette case 3:
9471 1.12 pgoyette p = "int";
9472 1.12 pgoyette break;
9473 1.12 pgoyette case 4:
9474 1.12 pgoyette p = "dev_t";
9475 1.12 pgoyette break;
9476 1.12 pgoyette default:
9477 1.12 pgoyette break;
9478 1.12 pgoyette };
9479 1.12 pgoyette break;
9480 1.12 pgoyette /* sys_mkdirat */
9481 1.12 pgoyette case 461:
9482 1.12 pgoyette switch(ndx) {
9483 1.12 pgoyette case 0:
9484 1.12 pgoyette p = "int";
9485 1.12 pgoyette break;
9486 1.12 pgoyette case 1:
9487 1.12 pgoyette p = "const char *";
9488 1.12 pgoyette break;
9489 1.12 pgoyette case 2:
9490 1.12 pgoyette p = "mode_t";
9491 1.12 pgoyette break;
9492 1.12 pgoyette default:
9493 1.12 pgoyette break;
9494 1.12 pgoyette };
9495 1.12 pgoyette break;
9496 1.12 pgoyette /* sys_faccessat */
9497 1.12 pgoyette case 462:
9498 1.12 pgoyette switch(ndx) {
9499 1.12 pgoyette case 0:
9500 1.12 pgoyette p = "int";
9501 1.12 pgoyette break;
9502 1.12 pgoyette case 1:
9503 1.12 pgoyette p = "const char *";
9504 1.12 pgoyette break;
9505 1.12 pgoyette case 2:
9506 1.12 pgoyette p = "int";
9507 1.12 pgoyette break;
9508 1.12 pgoyette case 3:
9509 1.12 pgoyette p = "int";
9510 1.12 pgoyette break;
9511 1.12 pgoyette default:
9512 1.12 pgoyette break;
9513 1.12 pgoyette };
9514 1.12 pgoyette break;
9515 1.12 pgoyette /* sys_fchmodat */
9516 1.12 pgoyette case 463:
9517 1.12 pgoyette switch(ndx) {
9518 1.12 pgoyette case 0:
9519 1.12 pgoyette p = "int";
9520 1.12 pgoyette break;
9521 1.12 pgoyette case 1:
9522 1.12 pgoyette p = "const char *";
9523 1.12 pgoyette break;
9524 1.12 pgoyette case 2:
9525 1.12 pgoyette p = "mode_t";
9526 1.12 pgoyette break;
9527 1.12 pgoyette case 3:
9528 1.12 pgoyette p = "int";
9529 1.12 pgoyette break;
9530 1.12 pgoyette default:
9531 1.12 pgoyette break;
9532 1.12 pgoyette };
9533 1.12 pgoyette break;
9534 1.12 pgoyette /* sys_fchownat */
9535 1.12 pgoyette case 464:
9536 1.12 pgoyette switch(ndx) {
9537 1.12 pgoyette case 0:
9538 1.12 pgoyette p = "int";
9539 1.12 pgoyette break;
9540 1.12 pgoyette case 1:
9541 1.12 pgoyette p = "const char *";
9542 1.12 pgoyette break;
9543 1.12 pgoyette case 2:
9544 1.12 pgoyette p = "uid_t";
9545 1.12 pgoyette break;
9546 1.12 pgoyette case 3:
9547 1.12 pgoyette p = "gid_t";
9548 1.12 pgoyette break;
9549 1.12 pgoyette case 4:
9550 1.12 pgoyette p = "int";
9551 1.12 pgoyette break;
9552 1.12 pgoyette default:
9553 1.12 pgoyette break;
9554 1.12 pgoyette };
9555 1.12 pgoyette break;
9556 1.12 pgoyette /* sys_fexecve */
9557 1.12 pgoyette case 465:
9558 1.12 pgoyette switch(ndx) {
9559 1.12 pgoyette case 0:
9560 1.12 pgoyette p = "int";
9561 1.12 pgoyette break;
9562 1.12 pgoyette case 1:
9563 1.12 pgoyette p = "char *const *";
9564 1.12 pgoyette break;
9565 1.12 pgoyette case 2:
9566 1.12 pgoyette p = "char *const *";
9567 1.12 pgoyette break;
9568 1.12 pgoyette default:
9569 1.12 pgoyette break;
9570 1.12 pgoyette };
9571 1.12 pgoyette break;
9572 1.12 pgoyette /* sys_fstatat */
9573 1.12 pgoyette case 466:
9574 1.12 pgoyette switch(ndx) {
9575 1.12 pgoyette case 0:
9576 1.12 pgoyette p = "int";
9577 1.12 pgoyette break;
9578 1.12 pgoyette case 1:
9579 1.12 pgoyette p = "const char *";
9580 1.12 pgoyette break;
9581 1.12 pgoyette case 2:
9582 1.12 pgoyette p = "struct stat *";
9583 1.12 pgoyette break;
9584 1.12 pgoyette case 3:
9585 1.12 pgoyette p = "int";
9586 1.12 pgoyette break;
9587 1.12 pgoyette default:
9588 1.12 pgoyette break;
9589 1.12 pgoyette };
9590 1.12 pgoyette break;
9591 1.12 pgoyette /* sys_utimensat */
9592 1.12 pgoyette case 467:
9593 1.12 pgoyette switch(ndx) {
9594 1.12 pgoyette case 0:
9595 1.12 pgoyette p = "int";
9596 1.12 pgoyette break;
9597 1.12 pgoyette case 1:
9598 1.12 pgoyette p = "const char *";
9599 1.12 pgoyette break;
9600 1.12 pgoyette case 2:
9601 1.12 pgoyette p = "const struct timespec *";
9602 1.12 pgoyette break;
9603 1.12 pgoyette case 3:
9604 1.12 pgoyette p = "int";
9605 1.12 pgoyette break;
9606 1.12 pgoyette default:
9607 1.12 pgoyette break;
9608 1.12 pgoyette };
9609 1.12 pgoyette break;
9610 1.12 pgoyette /* sys_openat */
9611 1.12 pgoyette case 468:
9612 1.12 pgoyette switch(ndx) {
9613 1.12 pgoyette case 0:
9614 1.12 pgoyette p = "int";
9615 1.12 pgoyette break;
9616 1.12 pgoyette case 1:
9617 1.12 pgoyette p = "const char *";
9618 1.12 pgoyette break;
9619 1.12 pgoyette case 2:
9620 1.12 pgoyette p = "int";
9621 1.12 pgoyette break;
9622 1.12 pgoyette case 3:
9623 1.12 pgoyette p = "mode_t";
9624 1.12 pgoyette break;
9625 1.12 pgoyette default:
9626 1.12 pgoyette break;
9627 1.12 pgoyette };
9628 1.12 pgoyette break;
9629 1.12 pgoyette /* sys_readlinkat */
9630 1.12 pgoyette case 469:
9631 1.12 pgoyette switch(ndx) {
9632 1.12 pgoyette case 0:
9633 1.12 pgoyette p = "int";
9634 1.12 pgoyette break;
9635 1.12 pgoyette case 1:
9636 1.12 pgoyette p = "const char *";
9637 1.12 pgoyette break;
9638 1.12 pgoyette case 2:
9639 1.12 pgoyette p = "char *";
9640 1.12 pgoyette break;
9641 1.12 pgoyette case 3:
9642 1.12 pgoyette p = "size_t";
9643 1.12 pgoyette break;
9644 1.12 pgoyette default:
9645 1.12 pgoyette break;
9646 1.12 pgoyette };
9647 1.12 pgoyette break;
9648 1.12 pgoyette /* sys_symlinkat */
9649 1.12 pgoyette case 470:
9650 1.12 pgoyette switch(ndx) {
9651 1.12 pgoyette case 0:
9652 1.12 pgoyette p = "const char *";
9653 1.12 pgoyette break;
9654 1.12 pgoyette case 1:
9655 1.12 pgoyette p = "int";
9656 1.12 pgoyette break;
9657 1.12 pgoyette case 2:
9658 1.12 pgoyette p = "const char *";
9659 1.12 pgoyette break;
9660 1.12 pgoyette default:
9661 1.12 pgoyette break;
9662 1.12 pgoyette };
9663 1.12 pgoyette break;
9664 1.12 pgoyette /* sys_unlinkat */
9665 1.12 pgoyette case 471:
9666 1.12 pgoyette switch(ndx) {
9667 1.12 pgoyette case 0:
9668 1.12 pgoyette p = "int";
9669 1.12 pgoyette break;
9670 1.12 pgoyette case 1:
9671 1.12 pgoyette p = "const char *";
9672 1.12 pgoyette break;
9673 1.12 pgoyette case 2:
9674 1.12 pgoyette p = "int";
9675 1.12 pgoyette break;
9676 1.12 pgoyette default:
9677 1.12 pgoyette break;
9678 1.12 pgoyette };
9679 1.12 pgoyette break;
9680 1.12 pgoyette /* sys_futimens */
9681 1.12 pgoyette case 472:
9682 1.12 pgoyette switch(ndx) {
9683 1.12 pgoyette case 0:
9684 1.12 pgoyette p = "int";
9685 1.12 pgoyette break;
9686 1.12 pgoyette case 1:
9687 1.12 pgoyette p = "const struct timespec *";
9688 1.12 pgoyette break;
9689 1.12 pgoyette default:
9690 1.12 pgoyette break;
9691 1.12 pgoyette };
9692 1.12 pgoyette break;
9693 1.12 pgoyette /* sys___quotactl */
9694 1.12 pgoyette case 473:
9695 1.12 pgoyette switch(ndx) {
9696 1.12 pgoyette case 0:
9697 1.12 pgoyette p = "const char *";
9698 1.12 pgoyette break;
9699 1.12 pgoyette case 1:
9700 1.12 pgoyette p = "struct quotactl_args *";
9701 1.12 pgoyette break;
9702 1.12 pgoyette default:
9703 1.12 pgoyette break;
9704 1.12 pgoyette };
9705 1.12 pgoyette break;
9706 1.12 pgoyette /* sys_posix_spawn */
9707 1.12 pgoyette case 474:
9708 1.12 pgoyette switch(ndx) {
9709 1.12 pgoyette case 0:
9710 1.12 pgoyette p = "pid_t *";
9711 1.12 pgoyette break;
9712 1.12 pgoyette case 1:
9713 1.12 pgoyette p = "const char *";
9714 1.12 pgoyette break;
9715 1.12 pgoyette case 2:
9716 1.12 pgoyette p = "const struct posix_spawn_file_actions *";
9717 1.12 pgoyette break;
9718 1.12 pgoyette case 3:
9719 1.12 pgoyette p = "const struct posix_spawnattr *";
9720 1.12 pgoyette break;
9721 1.12 pgoyette case 4:
9722 1.12 pgoyette p = "char *const *";
9723 1.12 pgoyette break;
9724 1.12 pgoyette case 5:
9725 1.12 pgoyette p = "char *const *";
9726 1.12 pgoyette break;
9727 1.12 pgoyette default:
9728 1.12 pgoyette break;
9729 1.12 pgoyette };
9730 1.12 pgoyette break;
9731 1.12 pgoyette /* sys_recvmmsg */
9732 1.12 pgoyette case 475:
9733 1.12 pgoyette switch(ndx) {
9734 1.12 pgoyette case 0:
9735 1.12 pgoyette p = "int";
9736 1.12 pgoyette break;
9737 1.12 pgoyette case 1:
9738 1.12 pgoyette p = "struct mmsghdr *";
9739 1.12 pgoyette break;
9740 1.12 pgoyette case 2:
9741 1.12 pgoyette p = "unsigned int";
9742 1.12 pgoyette break;
9743 1.12 pgoyette case 3:
9744 1.12 pgoyette p = "unsigned int";
9745 1.12 pgoyette break;
9746 1.12 pgoyette case 4:
9747 1.12 pgoyette p = "struct timespec *";
9748 1.12 pgoyette break;
9749 1.12 pgoyette default:
9750 1.12 pgoyette break;
9751 1.12 pgoyette };
9752 1.12 pgoyette break;
9753 1.12 pgoyette /* sys_sendmmsg */
9754 1.12 pgoyette case 476:
9755 1.12 pgoyette switch(ndx) {
9756 1.12 pgoyette case 0:
9757 1.12 pgoyette p = "int";
9758 1.12 pgoyette break;
9759 1.12 pgoyette case 1:
9760 1.12 pgoyette p = "struct mmsghdr *";
9761 1.12 pgoyette break;
9762 1.12 pgoyette case 2:
9763 1.12 pgoyette p = "unsigned int";
9764 1.12 pgoyette break;
9765 1.12 pgoyette case 3:
9766 1.12 pgoyette p = "unsigned int";
9767 1.12 pgoyette break;
9768 1.12 pgoyette default:
9769 1.12 pgoyette break;
9770 1.12 pgoyette };
9771 1.12 pgoyette break;
9772 1.12 pgoyette /* sys_clock_nanosleep */
9773 1.12 pgoyette case 477:
9774 1.12 pgoyette switch(ndx) {
9775 1.12 pgoyette case 0:
9776 1.12 pgoyette p = "clockid_t";
9777 1.12 pgoyette break;
9778 1.12 pgoyette case 1:
9779 1.12 pgoyette p = "int";
9780 1.12 pgoyette break;
9781 1.12 pgoyette case 2:
9782 1.12 pgoyette p = "const struct timespec *";
9783 1.12 pgoyette break;
9784 1.12 pgoyette case 3:
9785 1.12 pgoyette p = "struct timespec *";
9786 1.12 pgoyette break;
9787 1.12 pgoyette default:
9788 1.12 pgoyette break;
9789 1.12 pgoyette };
9790 1.12 pgoyette break;
9791 1.12 pgoyette /* sys____lwp_park60 */
9792 1.12 pgoyette case 478:
9793 1.12 pgoyette switch(ndx) {
9794 1.12 pgoyette case 0:
9795 1.12 pgoyette p = "clockid_t";
9796 1.12 pgoyette break;
9797 1.12 pgoyette case 1:
9798 1.12 pgoyette p = "int";
9799 1.12 pgoyette break;
9800 1.12 pgoyette case 2:
9801 1.26 kamil p = "struct timespec *";
9802 1.12 pgoyette break;
9803 1.12 pgoyette case 3:
9804 1.12 pgoyette p = "lwpid_t";
9805 1.12 pgoyette break;
9806 1.12 pgoyette case 4:
9807 1.12 pgoyette p = "const void *";
9808 1.12 pgoyette break;
9809 1.12 pgoyette case 5:
9810 1.12 pgoyette p = "const void *";
9811 1.12 pgoyette break;
9812 1.12 pgoyette default:
9813 1.12 pgoyette break;
9814 1.12 pgoyette };
9815 1.12 pgoyette break;
9816 1.12 pgoyette /* sys_posix_fallocate */
9817 1.12 pgoyette case 479:
9818 1.12 pgoyette switch(ndx) {
9819 1.12 pgoyette case 0:
9820 1.12 pgoyette p = "int";
9821 1.12 pgoyette break;
9822 1.12 pgoyette case 1:
9823 1.12 pgoyette p = "int";
9824 1.12 pgoyette break;
9825 1.12 pgoyette case 2:
9826 1.12 pgoyette p = "off_t";
9827 1.12 pgoyette break;
9828 1.12 pgoyette case 3:
9829 1.12 pgoyette p = "off_t";
9830 1.12 pgoyette break;
9831 1.12 pgoyette default:
9832 1.12 pgoyette break;
9833 1.12 pgoyette };
9834 1.12 pgoyette break;
9835 1.12 pgoyette /* sys_fdiscard */
9836 1.12 pgoyette case 480:
9837 1.12 pgoyette switch(ndx) {
9838 1.12 pgoyette case 0:
9839 1.12 pgoyette p = "int";
9840 1.12 pgoyette break;
9841 1.12 pgoyette case 1:
9842 1.12 pgoyette p = "int";
9843 1.12 pgoyette break;
9844 1.12 pgoyette case 2:
9845 1.12 pgoyette p = "off_t";
9846 1.12 pgoyette break;
9847 1.12 pgoyette case 3:
9848 1.12 pgoyette p = "off_t";
9849 1.12 pgoyette break;
9850 1.12 pgoyette default:
9851 1.12 pgoyette break;
9852 1.12 pgoyette };
9853 1.12 pgoyette break;
9854 1.16 christos /* sys_wait6 */
9855 1.16 christos case 481:
9856 1.16 christos switch(ndx) {
9857 1.16 christos case 0:
9858 1.16 christos p = "idtype_t";
9859 1.16 christos break;
9860 1.16 christos case 1:
9861 1.16 christos p = "id_t";
9862 1.16 christos break;
9863 1.16 christos case 2:
9864 1.16 christos p = "int *";
9865 1.16 christos break;
9866 1.16 christos case 3:
9867 1.16 christos p = "int";
9868 1.16 christos break;
9869 1.16 christos case 4:
9870 1.16 christos p = "struct wrusage *";
9871 1.16 christos break;
9872 1.16 christos case 5:
9873 1.16 christos p = "siginfo_t *";
9874 1.16 christos break;
9875 1.16 christos default:
9876 1.16 christos break;
9877 1.16 christos };
9878 1.16 christos break;
9879 1.19 christos /* sys_clock_getcpuclockid2 */
9880 1.19 christos case 482:
9881 1.19 christos switch(ndx) {
9882 1.19 christos case 0:
9883 1.19 christos p = "idtype_t";
9884 1.19 christos break;
9885 1.19 christos case 1:
9886 1.19 christos p = "id_t";
9887 1.19 christos break;
9888 1.19 christos case 2:
9889 1.19 christos p = "clockid_t *";
9890 1.19 christos break;
9891 1.19 christos default:
9892 1.19 christos break;
9893 1.19 christos };
9894 1.19 christos break;
9895 1.12 pgoyette default:
9896 1.12 pgoyette break;
9897 1.12 pgoyette };
9898 1.12 pgoyette if (p != NULL)
9899 1.12 pgoyette strlcpy(desc, p, descsz);
9900 1.12 pgoyette }
9901 1.12 pgoyette static void
9902 1.12 pgoyette systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
9903 1.12 pgoyette {
9904 1.12 pgoyette const char *p = NULL;
9905 1.12 pgoyette switch (sysnum) {
9906 1.12 pgoyette /* sys_syscall */
9907 1.12 pgoyette case 0:
9908 1.12 pgoyette if (ndx == 0 || ndx == 1)
9909 1.12 pgoyette p = "int";
9910 1.12 pgoyette break;
9911 1.12 pgoyette /* sys_exit */
9912 1.12 pgoyette case 1:
9913 1.12 pgoyette if (ndx == 0 || ndx == 1)
9914 1.12 pgoyette p = "void";
9915 1.12 pgoyette break;
9916 1.12 pgoyette /* sys_fork */
9917 1.12 pgoyette case 2:
9918 1.12 pgoyette /* sys_read */
9919 1.12 pgoyette case 3:
9920 1.12 pgoyette if (ndx == 0 || ndx == 1)
9921 1.12 pgoyette p = "ssize_t";
9922 1.12 pgoyette break;
9923 1.12 pgoyette /* sys_write */
9924 1.12 pgoyette case 4:
9925 1.12 pgoyette if (ndx == 0 || ndx == 1)
9926 1.12 pgoyette p = "ssize_t";
9927 1.12 pgoyette break;
9928 1.12 pgoyette /* sys_open */
9929 1.12 pgoyette case 5:
9930 1.12 pgoyette if (ndx == 0 || ndx == 1)
9931 1.12 pgoyette p = "int";
9932 1.12 pgoyette break;
9933 1.12 pgoyette /* sys_close */
9934 1.12 pgoyette case 6:
9935 1.12 pgoyette if (ndx == 0 || ndx == 1)
9936 1.12 pgoyette p = "int";
9937 1.12 pgoyette break;
9938 1.12 pgoyette /* sys_wait4 */
9939 1.12 pgoyette case 7:
9940 1.12 pgoyette if (ndx == 0 || ndx == 1)
9941 1.12 pgoyette p = "int";
9942 1.12 pgoyette break;
9943 1.12 pgoyette /* sys_creat */
9944 1.12 pgoyette case 8:
9945 1.12 pgoyette if (ndx == 0 || ndx == 1)
9946 1.12 pgoyette p = "int";
9947 1.12 pgoyette break;
9948 1.12 pgoyette /* sys_link */
9949 1.12 pgoyette case 9:
9950 1.12 pgoyette if (ndx == 0 || ndx == 1)
9951 1.12 pgoyette p = "int";
9952 1.12 pgoyette break;
9953 1.12 pgoyette /* sys_unlink */
9954 1.12 pgoyette case 10:
9955 1.12 pgoyette if (ndx == 0 || ndx == 1)
9956 1.12 pgoyette p = "int";
9957 1.12 pgoyette break;
9958 1.12 pgoyette /* sys_chdir */
9959 1.12 pgoyette case 12:
9960 1.12 pgoyette if (ndx == 0 || ndx == 1)
9961 1.12 pgoyette p = "int";
9962 1.12 pgoyette break;
9963 1.12 pgoyette /* sys_fchdir */
9964 1.12 pgoyette case 13:
9965 1.12 pgoyette if (ndx == 0 || ndx == 1)
9966 1.12 pgoyette p = "int";
9967 1.12 pgoyette break;
9968 1.12 pgoyette /* sys_mknod */
9969 1.12 pgoyette case 14:
9970 1.12 pgoyette if (ndx == 0 || ndx == 1)
9971 1.12 pgoyette p = "int";
9972 1.12 pgoyette break;
9973 1.12 pgoyette /* sys_chmod */
9974 1.12 pgoyette case 15:
9975 1.12 pgoyette if (ndx == 0 || ndx == 1)
9976 1.12 pgoyette p = "int";
9977 1.12 pgoyette break;
9978 1.12 pgoyette /* sys_chown */
9979 1.12 pgoyette case 16:
9980 1.12 pgoyette if (ndx == 0 || ndx == 1)
9981 1.12 pgoyette p = "int";
9982 1.12 pgoyette break;
9983 1.12 pgoyette /* sys_obreak */
9984 1.12 pgoyette case 17:
9985 1.12 pgoyette if (ndx == 0 || ndx == 1)
9986 1.12 pgoyette p = "int";
9987 1.12 pgoyette break;
9988 1.12 pgoyette /* sys_getfsstat */
9989 1.12 pgoyette case 18:
9990 1.12 pgoyette if (ndx == 0 || ndx == 1)
9991 1.12 pgoyette p = "int";
9992 1.12 pgoyette break;
9993 1.12 pgoyette /* sys_lseek */
9994 1.12 pgoyette case 19:
9995 1.12 pgoyette if (ndx == 0 || ndx == 1)
9996 1.12 pgoyette p = "long";
9997 1.12 pgoyette break;
9998 1.12 pgoyette /* sys_getpid_with_ppid */
9999 1.12 pgoyette case 20:
10000 1.12 pgoyette /* sys_mount */
10001 1.12 pgoyette case 21:
10002 1.12 pgoyette if (ndx == 0 || ndx == 1)
10003 1.12 pgoyette p = "int";
10004 1.12 pgoyette break;
10005 1.12 pgoyette /* sys_unmount */
10006 1.12 pgoyette case 22:
10007 1.12 pgoyette if (ndx == 0 || ndx == 1)
10008 1.12 pgoyette p = "int";
10009 1.12 pgoyette break;
10010 1.12 pgoyette /* sys_setuid */
10011 1.12 pgoyette case 23:
10012 1.12 pgoyette if (ndx == 0 || ndx == 1)
10013 1.12 pgoyette p = "int";
10014 1.12 pgoyette break;
10015 1.12 pgoyette /* sys_getuid_with_euid */
10016 1.12 pgoyette case 24:
10017 1.12 pgoyette /* sys_geteuid */
10018 1.12 pgoyette case 25:
10019 1.12 pgoyette /* sys_ptrace */
10020 1.12 pgoyette case 26:
10021 1.12 pgoyette if (ndx == 0 || ndx == 1)
10022 1.12 pgoyette p = "int";
10023 1.12 pgoyette break;
10024 1.12 pgoyette /* sys_recvmsg */
10025 1.12 pgoyette case 27:
10026 1.12 pgoyette if (ndx == 0 || ndx == 1)
10027 1.12 pgoyette p = "ssize_t";
10028 1.12 pgoyette break;
10029 1.12 pgoyette /* sys_sendmsg */
10030 1.12 pgoyette case 28:
10031 1.12 pgoyette if (ndx == 0 || ndx == 1)
10032 1.12 pgoyette p = "ssize_t";
10033 1.12 pgoyette break;
10034 1.12 pgoyette /* sys_recvfrom */
10035 1.12 pgoyette case 29:
10036 1.12 pgoyette if (ndx == 0 || ndx == 1)
10037 1.12 pgoyette p = "ssize_t";
10038 1.12 pgoyette break;
10039 1.12 pgoyette /* sys_accept */
10040 1.12 pgoyette case 30:
10041 1.12 pgoyette if (ndx == 0 || ndx == 1)
10042 1.12 pgoyette p = "int";
10043 1.12 pgoyette break;
10044 1.12 pgoyette /* sys_getpeername */
10045 1.12 pgoyette case 31:
10046 1.12 pgoyette if (ndx == 0 || ndx == 1)
10047 1.12 pgoyette p = "int";
10048 1.12 pgoyette break;
10049 1.12 pgoyette /* sys_getsockname */
10050 1.12 pgoyette case 32:
10051 1.12 pgoyette if (ndx == 0 || ndx == 1)
10052 1.12 pgoyette p = "int";
10053 1.12 pgoyette break;
10054 1.12 pgoyette /* sys_access */
10055 1.12 pgoyette case 33:
10056 1.12 pgoyette if (ndx == 0 || ndx == 1)
10057 1.12 pgoyette p = "int";
10058 1.12 pgoyette break;
10059 1.12 pgoyette /* sys_chflags */
10060 1.12 pgoyette case 34:
10061 1.12 pgoyette if (ndx == 0 || ndx == 1)
10062 1.12 pgoyette p = "int";
10063 1.12 pgoyette break;
10064 1.12 pgoyette /* sys_fchflags */
10065 1.12 pgoyette case 35:
10066 1.12 pgoyette if (ndx == 0 || ndx == 1)
10067 1.12 pgoyette p = "int";
10068 1.12 pgoyette break;
10069 1.12 pgoyette /* sys_sync */
10070 1.12 pgoyette case 36:
10071 1.12 pgoyette /* sys_kill */
10072 1.12 pgoyette case 37:
10073 1.12 pgoyette if (ndx == 0 || ndx == 1)
10074 1.12 pgoyette p = "int";
10075 1.12 pgoyette break;
10076 1.12 pgoyette /* sys_stat */
10077 1.12 pgoyette case 38:
10078 1.12 pgoyette if (ndx == 0 || ndx == 1)
10079 1.12 pgoyette p = "int";
10080 1.12 pgoyette break;
10081 1.12 pgoyette /* sys_getppid */
10082 1.12 pgoyette case 39:
10083 1.12 pgoyette /* sys_lstat */
10084 1.12 pgoyette case 40:
10085 1.12 pgoyette if (ndx == 0 || ndx == 1)
10086 1.12 pgoyette p = "int";
10087 1.12 pgoyette break;
10088 1.12 pgoyette /* sys_dup */
10089 1.12 pgoyette case 41:
10090 1.12 pgoyette if (ndx == 0 || ndx == 1)
10091 1.12 pgoyette p = "int";
10092 1.12 pgoyette break;
10093 1.12 pgoyette /* sys_pipe */
10094 1.12 pgoyette case 42:
10095 1.12 pgoyette /* sys_getegid */
10096 1.12 pgoyette case 43:
10097 1.12 pgoyette /* sys_profil */
10098 1.12 pgoyette case 44:
10099 1.12 pgoyette if (ndx == 0 || ndx == 1)
10100 1.12 pgoyette p = "int";
10101 1.12 pgoyette break;
10102 1.12 pgoyette /* sys_ktrace */
10103 1.12 pgoyette case 45:
10104 1.12 pgoyette if (ndx == 0 || ndx == 1)
10105 1.12 pgoyette p = "int";
10106 1.12 pgoyette break;
10107 1.12 pgoyette /* sys_sigaction */
10108 1.12 pgoyette case 46:
10109 1.12 pgoyette if (ndx == 0 || ndx == 1)
10110 1.12 pgoyette p = "int";
10111 1.12 pgoyette break;
10112 1.12 pgoyette /* sys_getgid_with_egid */
10113 1.12 pgoyette case 47:
10114 1.12 pgoyette /* sys_sigprocmask */
10115 1.12 pgoyette case 48:
10116 1.12 pgoyette if (ndx == 0 || ndx == 1)
10117 1.12 pgoyette p = "int";
10118 1.12 pgoyette break;
10119 1.12 pgoyette /* sys___getlogin */
10120 1.12 pgoyette case 49:
10121 1.12 pgoyette if (ndx == 0 || ndx == 1)
10122 1.12 pgoyette p = "int";
10123 1.12 pgoyette break;
10124 1.12 pgoyette /* sys___setlogin */
10125 1.12 pgoyette case 50:
10126 1.12 pgoyette if (ndx == 0 || ndx == 1)
10127 1.12 pgoyette p = "int";
10128 1.12 pgoyette break;
10129 1.12 pgoyette /* sys_acct */
10130 1.12 pgoyette case 51:
10131 1.12 pgoyette if (ndx == 0 || ndx == 1)
10132 1.12 pgoyette p = "int";
10133 1.12 pgoyette break;
10134 1.12 pgoyette /* sys_sigpending */
10135 1.12 pgoyette case 52:
10136 1.12 pgoyette /* sys_sigaltstack */
10137 1.12 pgoyette case 53:
10138 1.12 pgoyette if (ndx == 0 || ndx == 1)
10139 1.12 pgoyette p = "int";
10140 1.12 pgoyette break;
10141 1.12 pgoyette /* sys_ioctl */
10142 1.12 pgoyette case 54:
10143 1.12 pgoyette if (ndx == 0 || ndx == 1)
10144 1.12 pgoyette p = "int";
10145 1.12 pgoyette break;
10146 1.12 pgoyette /* sys_reboot */
10147 1.12 pgoyette case 55:
10148 1.12 pgoyette if (ndx == 0 || ndx == 1)
10149 1.12 pgoyette p = "int";
10150 1.12 pgoyette break;
10151 1.12 pgoyette /* sys_revoke */
10152 1.12 pgoyette case 56:
10153 1.12 pgoyette if (ndx == 0 || ndx == 1)
10154 1.12 pgoyette p = "int";
10155 1.12 pgoyette break;
10156 1.12 pgoyette /* sys_symlink */
10157 1.12 pgoyette case 57:
10158 1.12 pgoyette if (ndx == 0 || ndx == 1)
10159 1.12 pgoyette p = "int";
10160 1.12 pgoyette break;
10161 1.12 pgoyette /* sys_readlink */
10162 1.12 pgoyette case 58:
10163 1.12 pgoyette if (ndx == 0 || ndx == 1)
10164 1.12 pgoyette p = "ssize_t";
10165 1.12 pgoyette break;
10166 1.12 pgoyette /* sys_execve */
10167 1.12 pgoyette case 59:
10168 1.12 pgoyette if (ndx == 0 || ndx == 1)
10169 1.12 pgoyette p = "int";
10170 1.12 pgoyette break;
10171 1.12 pgoyette /* sys_umask */
10172 1.12 pgoyette case 60:
10173 1.12 pgoyette if (ndx == 0 || ndx == 1)
10174 1.12 pgoyette p = "mode_t";
10175 1.12 pgoyette break;
10176 1.12 pgoyette /* sys_chroot */
10177 1.12 pgoyette case 61:
10178 1.12 pgoyette if (ndx == 0 || ndx == 1)
10179 1.12 pgoyette p = "int";
10180 1.12 pgoyette break;
10181 1.12 pgoyette /* sys_fstat */
10182 1.12 pgoyette case 62:
10183 1.12 pgoyette if (ndx == 0 || ndx == 1)
10184 1.12 pgoyette p = "int";
10185 1.12 pgoyette break;
10186 1.12 pgoyette /* sys_getkerninfo */
10187 1.12 pgoyette case 63:
10188 1.12 pgoyette if (ndx == 0 || ndx == 1)
10189 1.12 pgoyette p = "int";
10190 1.12 pgoyette break;
10191 1.12 pgoyette /* sys_getpagesize */
10192 1.12 pgoyette case 64:
10193 1.12 pgoyette /* sys_msync */
10194 1.12 pgoyette case 65:
10195 1.12 pgoyette if (ndx == 0 || ndx == 1)
10196 1.12 pgoyette p = "int";
10197 1.12 pgoyette break;
10198 1.12 pgoyette /* sys_vfork */
10199 1.12 pgoyette case 66:
10200 1.12 pgoyette /* sys_mmap */
10201 1.12 pgoyette case 71:
10202 1.12 pgoyette if (ndx == 0 || ndx == 1)
10203 1.12 pgoyette p = "int";
10204 1.12 pgoyette break;
10205 1.29 kamil /* sys_ovadvise */
10206 1.29 kamil case 72:
10207 1.29 kamil if (ndx == 0 || ndx == 1)
10208 1.29 kamil p = "int";
10209 1.29 kamil break;
10210 1.12 pgoyette /* sys_munmap */
10211 1.12 pgoyette case 73:
10212 1.12 pgoyette if (ndx == 0 || ndx == 1)
10213 1.12 pgoyette p = "int";
10214 1.12 pgoyette break;
10215 1.12 pgoyette /* sys_mprotect */
10216 1.12 pgoyette case 74:
10217 1.12 pgoyette if (ndx == 0 || ndx == 1)
10218 1.12 pgoyette p = "int";
10219 1.12 pgoyette break;
10220 1.12 pgoyette /* sys_madvise */
10221 1.12 pgoyette case 75:
10222 1.12 pgoyette if (ndx == 0 || ndx == 1)
10223 1.12 pgoyette p = "int";
10224 1.12 pgoyette break;
10225 1.12 pgoyette /* sys_mincore */
10226 1.12 pgoyette case 78:
10227 1.12 pgoyette if (ndx == 0 || ndx == 1)
10228 1.12 pgoyette p = "int";
10229 1.12 pgoyette break;
10230 1.12 pgoyette /* sys_getgroups */
10231 1.12 pgoyette case 79:
10232 1.12 pgoyette if (ndx == 0 || ndx == 1)
10233 1.12 pgoyette p = "int";
10234 1.12 pgoyette break;
10235 1.12 pgoyette /* sys_setgroups */
10236 1.12 pgoyette case 80:
10237 1.12 pgoyette if (ndx == 0 || ndx == 1)
10238 1.12 pgoyette p = "int";
10239 1.12 pgoyette break;
10240 1.12 pgoyette /* sys_getpgrp */
10241 1.12 pgoyette case 81:
10242 1.12 pgoyette /* sys_setpgid */
10243 1.12 pgoyette case 82:
10244 1.12 pgoyette if (ndx == 0 || ndx == 1)
10245 1.12 pgoyette p = "int";
10246 1.12 pgoyette break;
10247 1.12 pgoyette /* sys_setitimer */
10248 1.12 pgoyette case 83:
10249 1.12 pgoyette if (ndx == 0 || ndx == 1)
10250 1.12 pgoyette p = "int";
10251 1.12 pgoyette break;
10252 1.12 pgoyette /* sys_wait */
10253 1.12 pgoyette case 84:
10254 1.12 pgoyette /* sys_swapon */
10255 1.12 pgoyette case 85:
10256 1.12 pgoyette if (ndx == 0 || ndx == 1)
10257 1.12 pgoyette p = "int";
10258 1.12 pgoyette break;
10259 1.12 pgoyette /* sys_getitimer */
10260 1.12 pgoyette case 86:
10261 1.12 pgoyette if (ndx == 0 || ndx == 1)
10262 1.12 pgoyette p = "int";
10263 1.12 pgoyette break;
10264 1.12 pgoyette /* sys_gethostname */
10265 1.12 pgoyette case 87:
10266 1.12 pgoyette if (ndx == 0 || ndx == 1)
10267 1.12 pgoyette p = "int";
10268 1.12 pgoyette break;
10269 1.12 pgoyette /* sys_sethostname */
10270 1.12 pgoyette case 88:
10271 1.12 pgoyette if (ndx == 0 || ndx == 1)
10272 1.12 pgoyette p = "int";
10273 1.12 pgoyette break;
10274 1.12 pgoyette /* sys_getdtablesize */
10275 1.12 pgoyette case 89:
10276 1.12 pgoyette /* sys_dup2 */
10277 1.12 pgoyette case 90:
10278 1.12 pgoyette if (ndx == 0 || ndx == 1)
10279 1.12 pgoyette p = "int";
10280 1.12 pgoyette break;
10281 1.12 pgoyette /* sys_fcntl */
10282 1.12 pgoyette case 92:
10283 1.12 pgoyette if (ndx == 0 || ndx == 1)
10284 1.12 pgoyette p = "int";
10285 1.12 pgoyette break;
10286 1.12 pgoyette /* sys_select */
10287 1.12 pgoyette case 93:
10288 1.12 pgoyette if (ndx == 0 || ndx == 1)
10289 1.12 pgoyette p = "int";
10290 1.12 pgoyette break;
10291 1.12 pgoyette /* sys_fsync */
10292 1.12 pgoyette case 95:
10293 1.12 pgoyette if (ndx == 0 || ndx == 1)
10294 1.12 pgoyette p = "int";
10295 1.12 pgoyette break;
10296 1.12 pgoyette /* sys_setpriority */
10297 1.12 pgoyette case 96:
10298 1.12 pgoyette if (ndx == 0 || ndx == 1)
10299 1.12 pgoyette p = "int";
10300 1.12 pgoyette break;
10301 1.12 pgoyette /* sys_socket */
10302 1.12 pgoyette case 97:
10303 1.12 pgoyette if (ndx == 0 || ndx == 1)
10304 1.12 pgoyette p = "int";
10305 1.12 pgoyette break;
10306 1.12 pgoyette /* sys_connect */
10307 1.12 pgoyette case 98:
10308 1.12 pgoyette if (ndx == 0 || ndx == 1)
10309 1.12 pgoyette p = "int";
10310 1.12 pgoyette break;
10311 1.12 pgoyette /* sys_accept */
10312 1.12 pgoyette case 99:
10313 1.12 pgoyette if (ndx == 0 || ndx == 1)
10314 1.12 pgoyette p = "int";
10315 1.12 pgoyette break;
10316 1.12 pgoyette /* sys_getpriority */
10317 1.12 pgoyette case 100:
10318 1.12 pgoyette if (ndx == 0 || ndx == 1)
10319 1.12 pgoyette p = "int";
10320 1.12 pgoyette break;
10321 1.12 pgoyette /* sys_send */
10322 1.12 pgoyette case 101:
10323 1.12 pgoyette if (ndx == 0 || ndx == 1)
10324 1.12 pgoyette p = "int";
10325 1.12 pgoyette break;
10326 1.12 pgoyette /* sys_recv */
10327 1.12 pgoyette case 102:
10328 1.12 pgoyette if (ndx == 0 || ndx == 1)
10329 1.12 pgoyette p = "int";
10330 1.12 pgoyette break;
10331 1.12 pgoyette /* sys_sigreturn */
10332 1.12 pgoyette case 103:
10333 1.12 pgoyette if (ndx == 0 || ndx == 1)
10334 1.12 pgoyette p = "int";
10335 1.12 pgoyette break;
10336 1.12 pgoyette /* sys_bind */
10337 1.12 pgoyette case 104:
10338 1.12 pgoyette if (ndx == 0 || ndx == 1)
10339 1.12 pgoyette p = "int";
10340 1.12 pgoyette break;
10341 1.12 pgoyette /* sys_setsockopt */
10342 1.12 pgoyette case 105:
10343 1.12 pgoyette if (ndx == 0 || ndx == 1)
10344 1.12 pgoyette p = "int";
10345 1.12 pgoyette break;
10346 1.12 pgoyette /* sys_listen */
10347 1.12 pgoyette case 106:
10348 1.12 pgoyette if (ndx == 0 || ndx == 1)
10349 1.12 pgoyette p = "int";
10350 1.12 pgoyette break;
10351 1.12 pgoyette /* sys_sigvec */
10352 1.12 pgoyette case 108:
10353 1.12 pgoyette if (ndx == 0 || ndx == 1)
10354 1.12 pgoyette p = "int";
10355 1.12 pgoyette break;
10356 1.12 pgoyette /* sys_sigblock */
10357 1.12 pgoyette case 109:
10358 1.12 pgoyette if (ndx == 0 || ndx == 1)
10359 1.12 pgoyette p = "int";
10360 1.12 pgoyette break;
10361 1.12 pgoyette /* sys_sigsetmask */
10362 1.12 pgoyette case 110:
10363 1.12 pgoyette if (ndx == 0 || ndx == 1)
10364 1.12 pgoyette p = "int";
10365 1.12 pgoyette break;
10366 1.12 pgoyette /* sys_sigsuspend */
10367 1.12 pgoyette case 111:
10368 1.12 pgoyette if (ndx == 0 || ndx == 1)
10369 1.12 pgoyette p = "int";
10370 1.12 pgoyette break;
10371 1.12 pgoyette /* sys_sigstack */
10372 1.12 pgoyette case 112:
10373 1.12 pgoyette if (ndx == 0 || ndx == 1)
10374 1.12 pgoyette p = "int";
10375 1.12 pgoyette break;
10376 1.12 pgoyette /* sys_recvmsg */
10377 1.12 pgoyette case 113:
10378 1.12 pgoyette if (ndx == 0 || ndx == 1)
10379 1.12 pgoyette p = "int";
10380 1.12 pgoyette break;
10381 1.12 pgoyette /* sys_sendmsg */
10382 1.12 pgoyette case 114:
10383 1.12 pgoyette if (ndx == 0 || ndx == 1)
10384 1.12 pgoyette p = "int";
10385 1.12 pgoyette break;
10386 1.12 pgoyette /* sys_gettimeofday */
10387 1.12 pgoyette case 116:
10388 1.12 pgoyette if (ndx == 0 || ndx == 1)
10389 1.12 pgoyette p = "int";
10390 1.12 pgoyette break;
10391 1.12 pgoyette /* sys_getrusage */
10392 1.12 pgoyette case 117:
10393 1.12 pgoyette if (ndx == 0 || ndx == 1)
10394 1.12 pgoyette p = "int";
10395 1.12 pgoyette break;
10396 1.12 pgoyette /* sys_getsockopt */
10397 1.12 pgoyette case 118:
10398 1.12 pgoyette if (ndx == 0 || ndx == 1)
10399 1.12 pgoyette p = "int";
10400 1.12 pgoyette break;
10401 1.12 pgoyette /* sys_readv */
10402 1.12 pgoyette case 120:
10403 1.12 pgoyette if (ndx == 0 || ndx == 1)
10404 1.12 pgoyette p = "ssize_t";
10405 1.12 pgoyette break;
10406 1.12 pgoyette /* sys_writev */
10407 1.12 pgoyette case 121:
10408 1.12 pgoyette if (ndx == 0 || ndx == 1)
10409 1.12 pgoyette p = "ssize_t";
10410 1.12 pgoyette break;
10411 1.12 pgoyette /* sys_settimeofday */
10412 1.12 pgoyette case 122:
10413 1.12 pgoyette if (ndx == 0 || ndx == 1)
10414 1.12 pgoyette p = "int";
10415 1.12 pgoyette break;
10416 1.12 pgoyette /* sys_fchown */
10417 1.12 pgoyette case 123:
10418 1.12 pgoyette if (ndx == 0 || ndx == 1)
10419 1.12 pgoyette p = "int";
10420 1.12 pgoyette break;
10421 1.12 pgoyette /* sys_fchmod */
10422 1.12 pgoyette case 124:
10423 1.12 pgoyette if (ndx == 0 || ndx == 1)
10424 1.12 pgoyette p = "int";
10425 1.12 pgoyette break;
10426 1.12 pgoyette /* sys_recvfrom */
10427 1.12 pgoyette case 125:
10428 1.12 pgoyette if (ndx == 0 || ndx == 1)
10429 1.12 pgoyette p = "int";
10430 1.12 pgoyette break;
10431 1.12 pgoyette /* sys_setreuid */
10432 1.12 pgoyette case 126:
10433 1.12 pgoyette if (ndx == 0 || ndx == 1)
10434 1.12 pgoyette p = "int";
10435 1.12 pgoyette break;
10436 1.12 pgoyette /* sys_setregid */
10437 1.12 pgoyette case 127:
10438 1.12 pgoyette if (ndx == 0 || ndx == 1)
10439 1.12 pgoyette p = "int";
10440 1.12 pgoyette break;
10441 1.12 pgoyette /* sys_rename */
10442 1.12 pgoyette case 128:
10443 1.12 pgoyette if (ndx == 0 || ndx == 1)
10444 1.12 pgoyette p = "int";
10445 1.12 pgoyette break;
10446 1.12 pgoyette /* sys_truncate */
10447 1.12 pgoyette case 129:
10448 1.12 pgoyette if (ndx == 0 || ndx == 1)
10449 1.12 pgoyette p = "int";
10450 1.12 pgoyette break;
10451 1.12 pgoyette /* sys_ftruncate */
10452 1.12 pgoyette case 130:
10453 1.12 pgoyette if (ndx == 0 || ndx == 1)
10454 1.12 pgoyette p = "int";
10455 1.12 pgoyette break;
10456 1.12 pgoyette /* sys_flock */
10457 1.12 pgoyette case 131:
10458 1.12 pgoyette if (ndx == 0 || ndx == 1)
10459 1.12 pgoyette p = "int";
10460 1.12 pgoyette break;
10461 1.12 pgoyette /* sys_mkfifo */
10462 1.12 pgoyette case 132:
10463 1.12 pgoyette if (ndx == 0 || ndx == 1)
10464 1.12 pgoyette p = "int";
10465 1.12 pgoyette break;
10466 1.12 pgoyette /* sys_sendto */
10467 1.12 pgoyette case 133:
10468 1.12 pgoyette if (ndx == 0 || ndx == 1)
10469 1.12 pgoyette p = "ssize_t";
10470 1.12 pgoyette break;
10471 1.12 pgoyette /* sys_shutdown */
10472 1.12 pgoyette case 134:
10473 1.12 pgoyette if (ndx == 0 || ndx == 1)
10474 1.12 pgoyette p = "int";
10475 1.12 pgoyette break;
10476 1.12 pgoyette /* sys_socketpair */
10477 1.12 pgoyette case 135:
10478 1.12 pgoyette if (ndx == 0 || ndx == 1)
10479 1.12 pgoyette p = "int";
10480 1.12 pgoyette break;
10481 1.12 pgoyette /* sys_mkdir */
10482 1.12 pgoyette case 136:
10483 1.12 pgoyette if (ndx == 0 || ndx == 1)
10484 1.12 pgoyette p = "int";
10485 1.12 pgoyette break;
10486 1.12 pgoyette /* sys_rmdir */
10487 1.12 pgoyette case 137:
10488 1.12 pgoyette if (ndx == 0 || ndx == 1)
10489 1.12 pgoyette p = "int";
10490 1.12 pgoyette break;
10491 1.12 pgoyette /* sys_utimes */
10492 1.12 pgoyette case 138:
10493 1.12 pgoyette if (ndx == 0 || ndx == 1)
10494 1.12 pgoyette p = "int";
10495 1.12 pgoyette break;
10496 1.12 pgoyette /* sys_adjtime */
10497 1.12 pgoyette case 140:
10498 1.12 pgoyette if (ndx == 0 || ndx == 1)
10499 1.12 pgoyette p = "int";
10500 1.12 pgoyette break;
10501 1.12 pgoyette /* sys_getpeername */
10502 1.12 pgoyette case 141:
10503 1.12 pgoyette if (ndx == 0 || ndx == 1)
10504 1.12 pgoyette p = "int";
10505 1.12 pgoyette break;
10506 1.12 pgoyette /* sys_gethostid */
10507 1.12 pgoyette case 142:
10508 1.12 pgoyette /* sys_sethostid */
10509 1.12 pgoyette case 143:
10510 1.12 pgoyette if (ndx == 0 || ndx == 1)
10511 1.12 pgoyette p = "int";
10512 1.12 pgoyette break;
10513 1.12 pgoyette /* sys_getrlimit */
10514 1.12 pgoyette case 144:
10515 1.12 pgoyette if (ndx == 0 || ndx == 1)
10516 1.12 pgoyette p = "int";
10517 1.12 pgoyette break;
10518 1.12 pgoyette /* sys_setrlimit */
10519 1.12 pgoyette case 145:
10520 1.12 pgoyette if (ndx == 0 || ndx == 1)
10521 1.12 pgoyette p = "int";
10522 1.12 pgoyette break;
10523 1.12 pgoyette /* sys_killpg */
10524 1.12 pgoyette case 146:
10525 1.12 pgoyette if (ndx == 0 || ndx == 1)
10526 1.12 pgoyette p = "int";
10527 1.12 pgoyette break;
10528 1.12 pgoyette /* sys_setsid */
10529 1.12 pgoyette case 147:
10530 1.12 pgoyette /* sys_quotactl */
10531 1.12 pgoyette case 148:
10532 1.12 pgoyette if (ndx == 0 || ndx == 1)
10533 1.12 pgoyette p = "int";
10534 1.12 pgoyette break;
10535 1.12 pgoyette /* sys_quota */
10536 1.12 pgoyette case 149:
10537 1.12 pgoyette /* sys_getsockname */
10538 1.12 pgoyette case 150:
10539 1.12 pgoyette if (ndx == 0 || ndx == 1)
10540 1.12 pgoyette p = "int";
10541 1.12 pgoyette break;
10542 1.12 pgoyette /* sys_nfssvc */
10543 1.12 pgoyette case 155:
10544 1.12 pgoyette if (ndx == 0 || ndx == 1)
10545 1.12 pgoyette p = "int";
10546 1.12 pgoyette break;
10547 1.12 pgoyette /* sys_getdirentries */
10548 1.12 pgoyette case 156:
10549 1.12 pgoyette if (ndx == 0 || ndx == 1)
10550 1.12 pgoyette p = "int";
10551 1.12 pgoyette break;
10552 1.12 pgoyette /* sys_statfs */
10553 1.12 pgoyette case 157:
10554 1.12 pgoyette if (ndx == 0 || ndx == 1)
10555 1.12 pgoyette p = "int";
10556 1.12 pgoyette break;
10557 1.12 pgoyette /* sys_fstatfs */
10558 1.12 pgoyette case 158:
10559 1.12 pgoyette if (ndx == 0 || ndx == 1)
10560 1.12 pgoyette p = "int";
10561 1.12 pgoyette break;
10562 1.12 pgoyette /* sys_getfh */
10563 1.12 pgoyette case 161:
10564 1.12 pgoyette if (ndx == 0 || ndx == 1)
10565 1.12 pgoyette p = "int";
10566 1.12 pgoyette break;
10567 1.12 pgoyette /* sys_getdomainname */
10568 1.12 pgoyette case 162:
10569 1.12 pgoyette if (ndx == 0 || ndx == 1)
10570 1.12 pgoyette p = "int";
10571 1.12 pgoyette break;
10572 1.12 pgoyette /* sys_setdomainname */
10573 1.12 pgoyette case 163:
10574 1.12 pgoyette if (ndx == 0 || ndx == 1)
10575 1.12 pgoyette p = "int";
10576 1.12 pgoyette break;
10577 1.12 pgoyette /* sys_uname */
10578 1.12 pgoyette case 164:
10579 1.12 pgoyette if (ndx == 0 || ndx == 1)
10580 1.12 pgoyette p = "int";
10581 1.12 pgoyette break;
10582 1.12 pgoyette /* sys_sysarch */
10583 1.12 pgoyette case 165:
10584 1.12 pgoyette if (ndx == 0 || ndx == 1)
10585 1.12 pgoyette p = "int";
10586 1.12 pgoyette break;
10587 1.12 pgoyette #if !defined(_LP64)
10588 1.12 pgoyette /* sys_semsys */
10589 1.12 pgoyette case 169:
10590 1.12 pgoyette if (ndx == 0 || ndx == 1)
10591 1.12 pgoyette p = "int";
10592 1.12 pgoyette break;
10593 1.12 pgoyette #else
10594 1.12 pgoyette #endif
10595 1.12 pgoyette #if !defined(_LP64)
10596 1.12 pgoyette /* sys_msgsys */
10597 1.12 pgoyette case 170:
10598 1.12 pgoyette if (ndx == 0 || ndx == 1)
10599 1.12 pgoyette p = "int";
10600 1.12 pgoyette break;
10601 1.12 pgoyette #else
10602 1.12 pgoyette #endif
10603 1.12 pgoyette #if !defined(_LP64)
10604 1.12 pgoyette /* sys_shmsys */
10605 1.12 pgoyette case 171:
10606 1.12 pgoyette if (ndx == 0 || ndx == 1)
10607 1.12 pgoyette p = "int";
10608 1.12 pgoyette break;
10609 1.12 pgoyette #else
10610 1.12 pgoyette #endif
10611 1.12 pgoyette /* sys_pread */
10612 1.12 pgoyette case 173:
10613 1.12 pgoyette if (ndx == 0 || ndx == 1)
10614 1.12 pgoyette p = "ssize_t";
10615 1.12 pgoyette break;
10616 1.12 pgoyette /* sys_pwrite */
10617 1.12 pgoyette case 174:
10618 1.12 pgoyette if (ndx == 0 || ndx == 1)
10619 1.12 pgoyette p = "ssize_t";
10620 1.12 pgoyette break;
10621 1.12 pgoyette /* sys_ntp_gettime */
10622 1.12 pgoyette case 175:
10623 1.12 pgoyette if (ndx == 0 || ndx == 1)
10624 1.12 pgoyette p = "int";
10625 1.12 pgoyette break;
10626 1.12 pgoyette #if defined(NTP) || !defined(_KERNEL_OPT)
10627 1.12 pgoyette /* sys_ntp_adjtime */
10628 1.12 pgoyette case 176:
10629 1.12 pgoyette if (ndx == 0 || ndx == 1)
10630 1.12 pgoyette p = "int";
10631 1.12 pgoyette break;
10632 1.12 pgoyette #else
10633 1.12 pgoyette #endif
10634 1.12 pgoyette /* sys_setgid */
10635 1.12 pgoyette case 181:
10636 1.12 pgoyette if (ndx == 0 || ndx == 1)
10637 1.12 pgoyette p = "int";
10638 1.12 pgoyette break;
10639 1.12 pgoyette /* sys_setegid */
10640 1.12 pgoyette case 182:
10641 1.12 pgoyette if (ndx == 0 || ndx == 1)
10642 1.12 pgoyette p = "int";
10643 1.12 pgoyette break;
10644 1.12 pgoyette /* sys_seteuid */
10645 1.12 pgoyette case 183:
10646 1.12 pgoyette if (ndx == 0 || ndx == 1)
10647 1.12 pgoyette p = "int";
10648 1.12 pgoyette break;
10649 1.12 pgoyette /* sys_lfs_bmapv */
10650 1.12 pgoyette case 184:
10651 1.12 pgoyette if (ndx == 0 || ndx == 1)
10652 1.12 pgoyette p = "int";
10653 1.12 pgoyette break;
10654 1.12 pgoyette /* sys_lfs_markv */
10655 1.12 pgoyette case 185:
10656 1.12 pgoyette if (ndx == 0 || ndx == 1)
10657 1.12 pgoyette p = "int";
10658 1.12 pgoyette break;
10659 1.12 pgoyette /* sys_lfs_segclean */
10660 1.12 pgoyette case 186:
10661 1.12 pgoyette if (ndx == 0 || ndx == 1)
10662 1.12 pgoyette p = "int";
10663 1.12 pgoyette break;
10664 1.12 pgoyette /* sys_lfs_segwait */
10665 1.12 pgoyette case 187:
10666 1.12 pgoyette if (ndx == 0 || ndx == 1)
10667 1.12 pgoyette p = "int";
10668 1.12 pgoyette break;
10669 1.12 pgoyette /* sys_stat */
10670 1.12 pgoyette case 188:
10671 1.12 pgoyette if (ndx == 0 || ndx == 1)
10672 1.12 pgoyette p = "int";
10673 1.12 pgoyette break;
10674 1.12 pgoyette /* sys_fstat */
10675 1.12 pgoyette case 189:
10676 1.12 pgoyette if (ndx == 0 || ndx == 1)
10677 1.12 pgoyette p = "int";
10678 1.12 pgoyette break;
10679 1.12 pgoyette /* sys_lstat */
10680 1.12 pgoyette case 190:
10681 1.12 pgoyette if (ndx == 0 || ndx == 1)
10682 1.12 pgoyette p = "int";
10683 1.12 pgoyette break;
10684 1.12 pgoyette /* sys_pathconf */
10685 1.12 pgoyette case 191:
10686 1.12 pgoyette if (ndx == 0 || ndx == 1)
10687 1.12 pgoyette p = "long";
10688 1.12 pgoyette break;
10689 1.12 pgoyette /* sys_fpathconf */
10690 1.12 pgoyette case 192:
10691 1.12 pgoyette if (ndx == 0 || ndx == 1)
10692 1.12 pgoyette p = "long";
10693 1.12 pgoyette break;
10694 1.12 pgoyette /* sys_getrlimit */
10695 1.12 pgoyette case 194:
10696 1.12 pgoyette if (ndx == 0 || ndx == 1)
10697 1.12 pgoyette p = "int";
10698 1.12 pgoyette break;
10699 1.12 pgoyette /* sys_setrlimit */
10700 1.12 pgoyette case 195:
10701 1.12 pgoyette if (ndx == 0 || ndx == 1)
10702 1.12 pgoyette p = "int";
10703 1.12 pgoyette break;
10704 1.12 pgoyette /* sys_getdirentries */
10705 1.12 pgoyette case 196:
10706 1.12 pgoyette if (ndx == 0 || ndx == 1)
10707 1.12 pgoyette p = "int";
10708 1.12 pgoyette break;
10709 1.12 pgoyette /* sys_mmap */
10710 1.12 pgoyette case 197:
10711 1.12 pgoyette if (ndx == 0 || ndx == 1)
10712 1.12 pgoyette p = "void *";
10713 1.12 pgoyette break;
10714 1.12 pgoyette /* sys___syscall */
10715 1.12 pgoyette case 198:
10716 1.12 pgoyette if (ndx == 0 || ndx == 1)
10717 1.12 pgoyette p = "quad_t";
10718 1.12 pgoyette break;
10719 1.12 pgoyette /* sys_lseek */
10720 1.12 pgoyette case 199:
10721 1.12 pgoyette if (ndx == 0 || ndx == 1)
10722 1.12 pgoyette p = "off_t";
10723 1.12 pgoyette break;
10724 1.12 pgoyette /* sys_truncate */
10725 1.12 pgoyette case 200:
10726 1.12 pgoyette if (ndx == 0 || ndx == 1)
10727 1.12 pgoyette p = "int";
10728 1.12 pgoyette break;
10729 1.12 pgoyette /* sys_ftruncate */
10730 1.12 pgoyette case 201:
10731 1.12 pgoyette if (ndx == 0 || ndx == 1)
10732 1.12 pgoyette p = "int";
10733 1.12 pgoyette break;
10734 1.12 pgoyette /* sys___sysctl */
10735 1.12 pgoyette case 202:
10736 1.12 pgoyette if (ndx == 0 || ndx == 1)
10737 1.12 pgoyette p = "int";
10738 1.12 pgoyette break;
10739 1.12 pgoyette /* sys_mlock */
10740 1.12 pgoyette case 203:
10741 1.12 pgoyette if (ndx == 0 || ndx == 1)
10742 1.12 pgoyette p = "int";
10743 1.12 pgoyette break;
10744 1.12 pgoyette /* sys_munlock */
10745 1.12 pgoyette case 204:
10746 1.12 pgoyette if (ndx == 0 || ndx == 1)
10747 1.12 pgoyette p = "int";
10748 1.12 pgoyette break;
10749 1.12 pgoyette /* sys_undelete */
10750 1.12 pgoyette case 205:
10751 1.12 pgoyette if (ndx == 0 || ndx == 1)
10752 1.12 pgoyette p = "int";
10753 1.12 pgoyette break;
10754 1.12 pgoyette /* sys_futimes */
10755 1.12 pgoyette case 206:
10756 1.12 pgoyette if (ndx == 0 || ndx == 1)
10757 1.12 pgoyette p = "int";
10758 1.12 pgoyette break;
10759 1.12 pgoyette /* sys_getpgid */
10760 1.12 pgoyette case 207:
10761 1.12 pgoyette if (ndx == 0 || ndx == 1)
10762 1.12 pgoyette p = "pid_t";
10763 1.12 pgoyette break;
10764 1.12 pgoyette /* sys_reboot */
10765 1.12 pgoyette case 208:
10766 1.12 pgoyette if (ndx == 0 || ndx == 1)
10767 1.12 pgoyette p = "int";
10768 1.12 pgoyette break;
10769 1.12 pgoyette /* sys_poll */
10770 1.12 pgoyette case 209:
10771 1.12 pgoyette if (ndx == 0 || ndx == 1)
10772 1.12 pgoyette p = "int";
10773 1.12 pgoyette break;
10774 1.12 pgoyette /* sys_afssys */
10775 1.12 pgoyette case 210:
10776 1.12 pgoyette if (ndx == 0 || ndx == 1)
10777 1.12 pgoyette p = "int";
10778 1.12 pgoyette break;
10779 1.12 pgoyette /* sys___semctl */
10780 1.12 pgoyette case 220:
10781 1.12 pgoyette if (ndx == 0 || ndx == 1)
10782 1.12 pgoyette p = "int";
10783 1.12 pgoyette break;
10784 1.12 pgoyette /* sys_semget */
10785 1.12 pgoyette case 221:
10786 1.12 pgoyette if (ndx == 0 || ndx == 1)
10787 1.12 pgoyette p = "int";
10788 1.12 pgoyette break;
10789 1.12 pgoyette /* sys_semop */
10790 1.12 pgoyette case 222:
10791 1.12 pgoyette if (ndx == 0 || ndx == 1)
10792 1.12 pgoyette p = "int";
10793 1.12 pgoyette break;
10794 1.12 pgoyette /* sys_semconfig */
10795 1.12 pgoyette case 223:
10796 1.12 pgoyette if (ndx == 0 || ndx == 1)
10797 1.12 pgoyette p = "int";
10798 1.12 pgoyette break;
10799 1.12 pgoyette /* sys_msgctl */
10800 1.12 pgoyette case 224:
10801 1.12 pgoyette if (ndx == 0 || ndx == 1)
10802 1.12 pgoyette p = "int";
10803 1.12 pgoyette break;
10804 1.12 pgoyette /* sys_msgget */
10805 1.12 pgoyette case 225:
10806 1.12 pgoyette if (ndx == 0 || ndx == 1)
10807 1.12 pgoyette p = "int";
10808 1.12 pgoyette break;
10809 1.12 pgoyette /* sys_msgsnd */
10810 1.12 pgoyette case 226:
10811 1.12 pgoyette if (ndx == 0 || ndx == 1)
10812 1.12 pgoyette p = "int";
10813 1.12 pgoyette break;
10814 1.12 pgoyette /* sys_msgrcv */
10815 1.12 pgoyette case 227:
10816 1.12 pgoyette if (ndx == 0 || ndx == 1)
10817 1.12 pgoyette p = "ssize_t";
10818 1.12 pgoyette break;
10819 1.12 pgoyette /* sys_shmat */
10820 1.12 pgoyette case 228:
10821 1.12 pgoyette if (ndx == 0 || ndx == 1)
10822 1.12 pgoyette p = "void *";
10823 1.12 pgoyette break;
10824 1.12 pgoyette /* sys_shmctl */
10825 1.12 pgoyette case 229:
10826 1.12 pgoyette if (ndx == 0 || ndx == 1)
10827 1.12 pgoyette p = "int";
10828 1.12 pgoyette break;
10829 1.12 pgoyette /* sys_shmdt */
10830 1.12 pgoyette case 230:
10831 1.12 pgoyette if (ndx == 0 || ndx == 1)
10832 1.12 pgoyette p = "int";
10833 1.12 pgoyette break;
10834 1.12 pgoyette /* sys_shmget */
10835 1.12 pgoyette case 231:
10836 1.12 pgoyette if (ndx == 0 || ndx == 1)
10837 1.12 pgoyette p = "int";
10838 1.12 pgoyette break;
10839 1.12 pgoyette /* sys_clock_gettime */
10840 1.12 pgoyette case 232:
10841 1.12 pgoyette if (ndx == 0 || ndx == 1)
10842 1.12 pgoyette p = "int";
10843 1.12 pgoyette break;
10844 1.12 pgoyette /* sys_clock_settime */
10845 1.12 pgoyette case 233:
10846 1.12 pgoyette if (ndx == 0 || ndx == 1)
10847 1.12 pgoyette p = "int";
10848 1.12 pgoyette break;
10849 1.12 pgoyette /* sys_clock_getres */
10850 1.12 pgoyette case 234:
10851 1.12 pgoyette if (ndx == 0 || ndx == 1)
10852 1.12 pgoyette p = "int";
10853 1.12 pgoyette break;
10854 1.12 pgoyette /* sys_timer_create */
10855 1.12 pgoyette case 235:
10856 1.12 pgoyette if (ndx == 0 || ndx == 1)
10857 1.12 pgoyette p = "int";
10858 1.12 pgoyette break;
10859 1.12 pgoyette /* sys_timer_delete */
10860 1.12 pgoyette case 236:
10861 1.12 pgoyette if (ndx == 0 || ndx == 1)
10862 1.12 pgoyette p = "int";
10863 1.12 pgoyette break;
10864 1.12 pgoyette /* sys_timer_settime */
10865 1.12 pgoyette case 237:
10866 1.12 pgoyette if (ndx == 0 || ndx == 1)
10867 1.12 pgoyette p = "int";
10868 1.12 pgoyette break;
10869 1.12 pgoyette /* sys_timer_gettime */
10870 1.12 pgoyette case 238:
10871 1.12 pgoyette if (ndx == 0 || ndx == 1)
10872 1.12 pgoyette p = "int";
10873 1.12 pgoyette break;
10874 1.12 pgoyette /* sys_timer_getoverrun */
10875 1.12 pgoyette case 239:
10876 1.12 pgoyette if (ndx == 0 || ndx == 1)
10877 1.12 pgoyette p = "int";
10878 1.12 pgoyette break;
10879 1.12 pgoyette /* sys_nanosleep */
10880 1.12 pgoyette case 240:
10881 1.12 pgoyette if (ndx == 0 || ndx == 1)
10882 1.12 pgoyette p = "int";
10883 1.12 pgoyette break;
10884 1.12 pgoyette /* sys_fdatasync */
10885 1.12 pgoyette case 241:
10886 1.12 pgoyette if (ndx == 0 || ndx == 1)
10887 1.12 pgoyette p = "int";
10888 1.12 pgoyette break;
10889 1.12 pgoyette /* sys_mlockall */
10890 1.12 pgoyette case 242:
10891 1.12 pgoyette if (ndx == 0 || ndx == 1)
10892 1.12 pgoyette p = "int";
10893 1.12 pgoyette break;
10894 1.12 pgoyette /* sys_munlockall */
10895 1.12 pgoyette case 243:
10896 1.12 pgoyette /* sys___sigtimedwait */
10897 1.12 pgoyette case 244:
10898 1.12 pgoyette if (ndx == 0 || ndx == 1)
10899 1.12 pgoyette p = "int";
10900 1.12 pgoyette break;
10901 1.12 pgoyette /* sys_sigqueueinfo */
10902 1.12 pgoyette case 245:
10903 1.12 pgoyette if (ndx == 0 || ndx == 1)
10904 1.12 pgoyette p = "int";
10905 1.12 pgoyette break;
10906 1.12 pgoyette /* sys_modctl */
10907 1.12 pgoyette case 246:
10908 1.12 pgoyette if (ndx == 0 || ndx == 1)
10909 1.12 pgoyette p = "int";
10910 1.12 pgoyette break;
10911 1.12 pgoyette /* sys__ksem_init */
10912 1.12 pgoyette case 247:
10913 1.12 pgoyette if (ndx == 0 || ndx == 1)
10914 1.12 pgoyette p = "int";
10915 1.12 pgoyette break;
10916 1.12 pgoyette /* sys__ksem_open */
10917 1.12 pgoyette case 248:
10918 1.12 pgoyette if (ndx == 0 || ndx == 1)
10919 1.12 pgoyette p = "int";
10920 1.12 pgoyette break;
10921 1.12 pgoyette /* sys__ksem_unlink */
10922 1.12 pgoyette case 249:
10923 1.12 pgoyette if (ndx == 0 || ndx == 1)
10924 1.12 pgoyette p = "int";
10925 1.12 pgoyette break;
10926 1.12 pgoyette /* sys__ksem_close */
10927 1.12 pgoyette case 250:
10928 1.12 pgoyette if (ndx == 0 || ndx == 1)
10929 1.12 pgoyette p = "int";
10930 1.12 pgoyette break;
10931 1.12 pgoyette /* sys__ksem_post */
10932 1.12 pgoyette case 251:
10933 1.12 pgoyette if (ndx == 0 || ndx == 1)
10934 1.12 pgoyette p = "int";
10935 1.12 pgoyette break;
10936 1.12 pgoyette /* sys__ksem_wait */
10937 1.12 pgoyette case 252:
10938 1.12 pgoyette if (ndx == 0 || ndx == 1)
10939 1.12 pgoyette p = "int";
10940 1.12 pgoyette break;
10941 1.12 pgoyette /* sys__ksem_trywait */
10942 1.12 pgoyette case 253:
10943 1.12 pgoyette if (ndx == 0 || ndx == 1)
10944 1.12 pgoyette p = "int";
10945 1.12 pgoyette break;
10946 1.12 pgoyette /* sys__ksem_getvalue */
10947 1.12 pgoyette case 254:
10948 1.12 pgoyette if (ndx == 0 || ndx == 1)
10949 1.12 pgoyette p = "int";
10950 1.12 pgoyette break;
10951 1.12 pgoyette /* sys__ksem_destroy */
10952 1.12 pgoyette case 255:
10953 1.12 pgoyette if (ndx == 0 || ndx == 1)
10954 1.12 pgoyette p = "int";
10955 1.12 pgoyette break;
10956 1.12 pgoyette /* sys__ksem_timedwait */
10957 1.12 pgoyette case 256:
10958 1.12 pgoyette if (ndx == 0 || ndx == 1)
10959 1.12 pgoyette p = "int";
10960 1.12 pgoyette break;
10961 1.12 pgoyette /* sys_mq_open */
10962 1.12 pgoyette case 257:
10963 1.12 pgoyette if (ndx == 0 || ndx == 1)
10964 1.12 pgoyette p = "mqd_t";
10965 1.12 pgoyette break;
10966 1.12 pgoyette /* sys_mq_close */
10967 1.12 pgoyette case 258:
10968 1.12 pgoyette if (ndx == 0 || ndx == 1)
10969 1.12 pgoyette p = "int";
10970 1.12 pgoyette break;
10971 1.12 pgoyette /* sys_mq_unlink */
10972 1.12 pgoyette case 259:
10973 1.12 pgoyette if (ndx == 0 || ndx == 1)
10974 1.12 pgoyette p = "int";
10975 1.12 pgoyette break;
10976 1.12 pgoyette /* sys_mq_getattr */
10977 1.12 pgoyette case 260:
10978 1.12 pgoyette if (ndx == 0 || ndx == 1)
10979 1.12 pgoyette p = "int";
10980 1.12 pgoyette break;
10981 1.12 pgoyette /* sys_mq_setattr */
10982 1.12 pgoyette case 261:
10983 1.12 pgoyette if (ndx == 0 || ndx == 1)
10984 1.12 pgoyette p = "int";
10985 1.12 pgoyette break;
10986 1.12 pgoyette /* sys_mq_notify */
10987 1.12 pgoyette case 262:
10988 1.12 pgoyette if (ndx == 0 || ndx == 1)
10989 1.12 pgoyette p = "int";
10990 1.12 pgoyette break;
10991 1.12 pgoyette /* sys_mq_send */
10992 1.12 pgoyette case 263:
10993 1.12 pgoyette if (ndx == 0 || ndx == 1)
10994 1.12 pgoyette p = "int";
10995 1.12 pgoyette break;
10996 1.12 pgoyette /* sys_mq_receive */
10997 1.12 pgoyette case 264:
10998 1.12 pgoyette if (ndx == 0 || ndx == 1)
10999 1.12 pgoyette p = "ssize_t";
11000 1.12 pgoyette break;
11001 1.12 pgoyette /* sys_mq_timedsend */
11002 1.12 pgoyette case 265:
11003 1.12 pgoyette if (ndx == 0 || ndx == 1)
11004 1.12 pgoyette p = "int";
11005 1.12 pgoyette break;
11006 1.12 pgoyette /* sys_mq_timedreceive */
11007 1.12 pgoyette case 266:
11008 1.12 pgoyette if (ndx == 0 || ndx == 1)
11009 1.12 pgoyette p = "ssize_t";
11010 1.12 pgoyette break;
11011 1.12 pgoyette /* sys___posix_rename */
11012 1.12 pgoyette case 270:
11013 1.12 pgoyette if (ndx == 0 || ndx == 1)
11014 1.12 pgoyette p = "int";
11015 1.12 pgoyette break;
11016 1.12 pgoyette /* sys_swapctl */
11017 1.12 pgoyette case 271:
11018 1.12 pgoyette if (ndx == 0 || ndx == 1)
11019 1.12 pgoyette p = "int";
11020 1.12 pgoyette break;
11021 1.12 pgoyette /* sys_getdents */
11022 1.12 pgoyette case 272:
11023 1.12 pgoyette if (ndx == 0 || ndx == 1)
11024 1.12 pgoyette p = "int";
11025 1.12 pgoyette break;
11026 1.12 pgoyette /* sys_minherit */
11027 1.12 pgoyette case 273:
11028 1.12 pgoyette if (ndx == 0 || ndx == 1)
11029 1.12 pgoyette p = "int";
11030 1.12 pgoyette break;
11031 1.12 pgoyette /* sys_lchmod */
11032 1.12 pgoyette case 274:
11033 1.12 pgoyette if (ndx == 0 || ndx == 1)
11034 1.12 pgoyette p = "int";
11035 1.12 pgoyette break;
11036 1.12 pgoyette /* sys_lchown */
11037 1.12 pgoyette case 275:
11038 1.12 pgoyette if (ndx == 0 || ndx == 1)
11039 1.12 pgoyette p = "int";
11040 1.12 pgoyette break;
11041 1.12 pgoyette /* sys_lutimes */
11042 1.12 pgoyette case 276:
11043 1.12 pgoyette if (ndx == 0 || ndx == 1)
11044 1.12 pgoyette p = "int";
11045 1.12 pgoyette break;
11046 1.12 pgoyette /* sys___msync13 */
11047 1.12 pgoyette case 277:
11048 1.12 pgoyette if (ndx == 0 || ndx == 1)
11049 1.12 pgoyette p = "int";
11050 1.12 pgoyette break;
11051 1.12 pgoyette /* sys___stat13 */
11052 1.12 pgoyette case 278:
11053 1.12 pgoyette if (ndx == 0 || ndx == 1)
11054 1.12 pgoyette p = "int";
11055 1.12 pgoyette break;
11056 1.12 pgoyette /* sys___fstat13 */
11057 1.12 pgoyette case 279:
11058 1.12 pgoyette if (ndx == 0 || ndx == 1)
11059 1.12 pgoyette p = "int";
11060 1.12 pgoyette break;
11061 1.12 pgoyette /* sys___lstat13 */
11062 1.12 pgoyette case 280:
11063 1.12 pgoyette if (ndx == 0 || ndx == 1)
11064 1.12 pgoyette p = "int";
11065 1.12 pgoyette break;
11066 1.12 pgoyette /* sys___sigaltstack14 */
11067 1.12 pgoyette case 281:
11068 1.12 pgoyette if (ndx == 0 || ndx == 1)
11069 1.12 pgoyette p = "int";
11070 1.12 pgoyette break;
11071 1.12 pgoyette /* sys___vfork14 */
11072 1.12 pgoyette case 282:
11073 1.12 pgoyette /* sys___posix_chown */
11074 1.12 pgoyette case 283:
11075 1.12 pgoyette if (ndx == 0 || ndx == 1)
11076 1.12 pgoyette p = "int";
11077 1.12 pgoyette break;
11078 1.12 pgoyette /* sys___posix_fchown */
11079 1.12 pgoyette case 284:
11080 1.12 pgoyette if (ndx == 0 || ndx == 1)
11081 1.12 pgoyette p = "int";
11082 1.12 pgoyette break;
11083 1.12 pgoyette /* sys___posix_lchown */
11084 1.12 pgoyette case 285:
11085 1.12 pgoyette if (ndx == 0 || ndx == 1)
11086 1.12 pgoyette p = "int";
11087 1.12 pgoyette break;
11088 1.12 pgoyette /* sys_getsid */
11089 1.12 pgoyette case 286:
11090 1.12 pgoyette if (ndx == 0 || ndx == 1)
11091 1.12 pgoyette p = "pid_t";
11092 1.12 pgoyette break;
11093 1.12 pgoyette /* sys___clone */
11094 1.12 pgoyette case 287:
11095 1.12 pgoyette if (ndx == 0 || ndx == 1)
11096 1.12 pgoyette p = "pid_t";
11097 1.12 pgoyette break;
11098 1.12 pgoyette /* sys_fktrace */
11099 1.12 pgoyette case 288:
11100 1.12 pgoyette if (ndx == 0 || ndx == 1)
11101 1.12 pgoyette p = "int";
11102 1.12 pgoyette break;
11103 1.12 pgoyette /* sys_preadv */
11104 1.12 pgoyette case 289:
11105 1.12 pgoyette if (ndx == 0 || ndx == 1)
11106 1.12 pgoyette p = "ssize_t";
11107 1.12 pgoyette break;
11108 1.12 pgoyette /* sys_pwritev */
11109 1.12 pgoyette case 290:
11110 1.12 pgoyette if (ndx == 0 || ndx == 1)
11111 1.12 pgoyette p = "ssize_t";
11112 1.12 pgoyette break;
11113 1.12 pgoyette /* sys___sigaction14 */
11114 1.12 pgoyette case 291:
11115 1.12 pgoyette if (ndx == 0 || ndx == 1)
11116 1.12 pgoyette p = "int";
11117 1.12 pgoyette break;
11118 1.12 pgoyette /* sys___sigpending14 */
11119 1.12 pgoyette case 292:
11120 1.12 pgoyette if (ndx == 0 || ndx == 1)
11121 1.12 pgoyette p = "int";
11122 1.12 pgoyette break;
11123 1.12 pgoyette /* sys___sigprocmask14 */
11124 1.12 pgoyette case 293:
11125 1.12 pgoyette if (ndx == 0 || ndx == 1)
11126 1.12 pgoyette p = "int";
11127 1.12 pgoyette break;
11128 1.12 pgoyette /* sys___sigsuspend14 */
11129 1.12 pgoyette case 294:
11130 1.12 pgoyette if (ndx == 0 || ndx == 1)
11131 1.12 pgoyette p = "int";
11132 1.12 pgoyette break;
11133 1.12 pgoyette /* sys___sigreturn14 */
11134 1.12 pgoyette case 295:
11135 1.12 pgoyette if (ndx == 0 || ndx == 1)
11136 1.12 pgoyette p = "int";
11137 1.12 pgoyette break;
11138 1.12 pgoyette /* sys___getcwd */
11139 1.12 pgoyette case 296:
11140 1.12 pgoyette if (ndx == 0 || ndx == 1)
11141 1.12 pgoyette p = "int";
11142 1.12 pgoyette break;
11143 1.12 pgoyette /* sys_fchroot */
11144 1.12 pgoyette case 297:
11145 1.12 pgoyette if (ndx == 0 || ndx == 1)
11146 1.12 pgoyette p = "int";
11147 1.12 pgoyette break;
11148 1.12 pgoyette /* sys_fhopen */
11149 1.12 pgoyette case 298:
11150 1.12 pgoyette if (ndx == 0 || ndx == 1)
11151 1.12 pgoyette p = "int";
11152 1.12 pgoyette break;
11153 1.12 pgoyette /* sys_fhstat */
11154 1.12 pgoyette case 299:
11155 1.12 pgoyette if (ndx == 0 || ndx == 1)
11156 1.12 pgoyette p = "int";
11157 1.12 pgoyette break;
11158 1.12 pgoyette /* sys_fhstatfs */
11159 1.12 pgoyette case 300:
11160 1.12 pgoyette if (ndx == 0 || ndx == 1)
11161 1.12 pgoyette p = "int";
11162 1.12 pgoyette break;
11163 1.12 pgoyette /* sys_____semctl13 */
11164 1.12 pgoyette case 301:
11165 1.12 pgoyette if (ndx == 0 || ndx == 1)
11166 1.12 pgoyette p = "int";
11167 1.12 pgoyette break;
11168 1.12 pgoyette /* sys___msgctl13 */
11169 1.12 pgoyette case 302:
11170 1.12 pgoyette if (ndx == 0 || ndx == 1)
11171 1.12 pgoyette p = "int";
11172 1.12 pgoyette break;
11173 1.12 pgoyette /* sys___shmctl13 */
11174 1.12 pgoyette case 303:
11175 1.12 pgoyette if (ndx == 0 || ndx == 1)
11176 1.12 pgoyette p = "int";
11177 1.12 pgoyette break;
11178 1.12 pgoyette /* sys_lchflags */
11179 1.12 pgoyette case 304:
11180 1.12 pgoyette if (ndx == 0 || ndx == 1)
11181 1.12 pgoyette p = "int";
11182 1.12 pgoyette break;
11183 1.12 pgoyette /* sys_issetugid */
11184 1.12 pgoyette case 305:
11185 1.12 pgoyette /* sys_utrace */
11186 1.12 pgoyette case 306:
11187 1.12 pgoyette if (ndx == 0 || ndx == 1)
11188 1.12 pgoyette p = "int";
11189 1.12 pgoyette break;
11190 1.12 pgoyette /* sys_getcontext */
11191 1.12 pgoyette case 307:
11192 1.12 pgoyette if (ndx == 0 || ndx == 1)
11193 1.12 pgoyette p = "int";
11194 1.12 pgoyette break;
11195 1.12 pgoyette /* sys_setcontext */
11196 1.12 pgoyette case 308:
11197 1.12 pgoyette if (ndx == 0 || ndx == 1)
11198 1.12 pgoyette p = "int";
11199 1.12 pgoyette break;
11200 1.12 pgoyette /* sys__lwp_create */
11201 1.12 pgoyette case 309:
11202 1.12 pgoyette if (ndx == 0 || ndx == 1)
11203 1.12 pgoyette p = "int";
11204 1.12 pgoyette break;
11205 1.12 pgoyette /* sys__lwp_exit */
11206 1.12 pgoyette case 310:
11207 1.12 pgoyette /* sys__lwp_self */
11208 1.12 pgoyette case 311:
11209 1.12 pgoyette /* sys__lwp_wait */
11210 1.12 pgoyette case 312:
11211 1.12 pgoyette if (ndx == 0 || ndx == 1)
11212 1.12 pgoyette p = "int";
11213 1.12 pgoyette break;
11214 1.12 pgoyette /* sys__lwp_suspend */
11215 1.12 pgoyette case 313:
11216 1.12 pgoyette if (ndx == 0 || ndx == 1)
11217 1.12 pgoyette p = "int";
11218 1.12 pgoyette break;
11219 1.12 pgoyette /* sys__lwp_continue */
11220 1.12 pgoyette case 314:
11221 1.12 pgoyette if (ndx == 0 || ndx == 1)
11222 1.12 pgoyette p = "int";
11223 1.12 pgoyette break;
11224 1.12 pgoyette /* sys__lwp_wakeup */
11225 1.12 pgoyette case 315:
11226 1.12 pgoyette if (ndx == 0 || ndx == 1)
11227 1.12 pgoyette p = "int";
11228 1.12 pgoyette break;
11229 1.12 pgoyette /* sys__lwp_getprivate */
11230 1.12 pgoyette case 316:
11231 1.12 pgoyette /* sys__lwp_setprivate */
11232 1.12 pgoyette case 317:
11233 1.12 pgoyette if (ndx == 0 || ndx == 1)
11234 1.12 pgoyette p = "void";
11235 1.12 pgoyette break;
11236 1.12 pgoyette /* sys__lwp_kill */
11237 1.12 pgoyette case 318:
11238 1.12 pgoyette if (ndx == 0 || ndx == 1)
11239 1.12 pgoyette p = "int";
11240 1.12 pgoyette break;
11241 1.12 pgoyette /* sys__lwp_detach */
11242 1.12 pgoyette case 319:
11243 1.12 pgoyette if (ndx == 0 || ndx == 1)
11244 1.12 pgoyette p = "int";
11245 1.12 pgoyette break;
11246 1.12 pgoyette /* sys__lwp_park */
11247 1.12 pgoyette case 320:
11248 1.12 pgoyette if (ndx == 0 || ndx == 1)
11249 1.12 pgoyette p = "int";
11250 1.12 pgoyette break;
11251 1.12 pgoyette /* sys__lwp_unpark */
11252 1.12 pgoyette case 321:
11253 1.12 pgoyette if (ndx == 0 || ndx == 1)
11254 1.12 pgoyette p = "int";
11255 1.12 pgoyette break;
11256 1.12 pgoyette /* sys__lwp_unpark_all */
11257 1.12 pgoyette case 322:
11258 1.12 pgoyette if (ndx == 0 || ndx == 1)
11259 1.12 pgoyette p = "ssize_t";
11260 1.12 pgoyette break;
11261 1.12 pgoyette /* sys__lwp_setname */
11262 1.12 pgoyette case 323:
11263 1.12 pgoyette if (ndx == 0 || ndx == 1)
11264 1.12 pgoyette p = "int";
11265 1.12 pgoyette break;
11266 1.12 pgoyette /* sys__lwp_getname */
11267 1.12 pgoyette case 324:
11268 1.12 pgoyette if (ndx == 0 || ndx == 1)
11269 1.12 pgoyette p = "int";
11270 1.12 pgoyette break;
11271 1.12 pgoyette /* sys__lwp_ctl */
11272 1.12 pgoyette case 325:
11273 1.12 pgoyette if (ndx == 0 || ndx == 1)
11274 1.12 pgoyette p = "int";
11275 1.12 pgoyette break;
11276 1.12 pgoyette /* sys_sa_register */
11277 1.12 pgoyette case 330:
11278 1.12 pgoyette if (ndx == 0 || ndx == 1)
11279 1.12 pgoyette p = "int";
11280 1.12 pgoyette break;
11281 1.12 pgoyette /* sys_sa_stacks */
11282 1.12 pgoyette case 331:
11283 1.12 pgoyette if (ndx == 0 || ndx == 1)
11284 1.12 pgoyette p = "int";
11285 1.12 pgoyette break;
11286 1.12 pgoyette /* sys_sa_enable */
11287 1.12 pgoyette case 332:
11288 1.12 pgoyette /* sys_sa_setconcurrency */
11289 1.12 pgoyette case 333:
11290 1.12 pgoyette if (ndx == 0 || ndx == 1)
11291 1.12 pgoyette p = "int";
11292 1.12 pgoyette break;
11293 1.12 pgoyette /* sys_sa_yield */
11294 1.12 pgoyette case 334:
11295 1.12 pgoyette /* sys_sa_preempt */
11296 1.12 pgoyette case 335:
11297 1.12 pgoyette if (ndx == 0 || ndx == 1)
11298 1.12 pgoyette p = "int";
11299 1.12 pgoyette break;
11300 1.12 pgoyette /* sys___sigaction_sigtramp */
11301 1.12 pgoyette case 340:
11302 1.12 pgoyette if (ndx == 0 || ndx == 1)
11303 1.12 pgoyette p = "int";
11304 1.12 pgoyette break;
11305 1.12 pgoyette /* sys_pmc_get_info */
11306 1.12 pgoyette case 341:
11307 1.12 pgoyette if (ndx == 0 || ndx == 1)
11308 1.12 pgoyette p = "int";
11309 1.12 pgoyette break;
11310 1.12 pgoyette /* sys_pmc_control */
11311 1.12 pgoyette case 342:
11312 1.12 pgoyette if (ndx == 0 || ndx == 1)
11313 1.12 pgoyette p = "int";
11314 1.12 pgoyette break;
11315 1.12 pgoyette /* sys_rasctl */
11316 1.12 pgoyette case 343:
11317 1.12 pgoyette if (ndx == 0 || ndx == 1)
11318 1.12 pgoyette p = "int";
11319 1.12 pgoyette break;
11320 1.12 pgoyette /* sys_kqueue */
11321 1.12 pgoyette case 344:
11322 1.12 pgoyette /* sys_kevent */
11323 1.12 pgoyette case 345:
11324 1.12 pgoyette if (ndx == 0 || ndx == 1)
11325 1.12 pgoyette p = "int";
11326 1.12 pgoyette break;
11327 1.12 pgoyette /* sys__sched_setparam */
11328 1.12 pgoyette case 346:
11329 1.12 pgoyette if (ndx == 0 || ndx == 1)
11330 1.12 pgoyette p = "int";
11331 1.12 pgoyette break;
11332 1.12 pgoyette /* sys__sched_getparam */
11333 1.12 pgoyette case 347:
11334 1.12 pgoyette if (ndx == 0 || ndx == 1)
11335 1.12 pgoyette p = "int";
11336 1.12 pgoyette break;
11337 1.12 pgoyette /* sys__sched_setaffinity */
11338 1.12 pgoyette case 348:
11339 1.12 pgoyette if (ndx == 0 || ndx == 1)
11340 1.12 pgoyette p = "int";
11341 1.12 pgoyette break;
11342 1.12 pgoyette /* sys__sched_getaffinity */
11343 1.12 pgoyette case 349:
11344 1.12 pgoyette if (ndx == 0 || ndx == 1)
11345 1.12 pgoyette p = "int";
11346 1.12 pgoyette break;
11347 1.12 pgoyette /* sys_sched_yield */
11348 1.12 pgoyette case 350:
11349 1.21 christos /* sys__sched_protect */
11350 1.21 christos case 351:
11351 1.21 christos if (ndx == 0 || ndx == 1)
11352 1.21 christos p = "int";
11353 1.21 christos break;
11354 1.12 pgoyette /* sys_fsync_range */
11355 1.12 pgoyette case 354:
11356 1.12 pgoyette if (ndx == 0 || ndx == 1)
11357 1.12 pgoyette p = "int";
11358 1.12 pgoyette break;
11359 1.12 pgoyette /* sys_uuidgen */
11360 1.12 pgoyette case 355:
11361 1.12 pgoyette if (ndx == 0 || ndx == 1)
11362 1.12 pgoyette p = "int";
11363 1.12 pgoyette break;
11364 1.12 pgoyette /* sys_getvfsstat */
11365 1.12 pgoyette case 356:
11366 1.12 pgoyette if (ndx == 0 || ndx == 1)
11367 1.12 pgoyette p = "int";
11368 1.12 pgoyette break;
11369 1.12 pgoyette /* sys_statvfs1 */
11370 1.12 pgoyette case 357:
11371 1.12 pgoyette if (ndx == 0 || ndx == 1)
11372 1.12 pgoyette p = "int";
11373 1.12 pgoyette break;
11374 1.12 pgoyette /* sys_fstatvfs1 */
11375 1.12 pgoyette case 358:
11376 1.12 pgoyette if (ndx == 0 || ndx == 1)
11377 1.12 pgoyette p = "int";
11378 1.12 pgoyette break;
11379 1.12 pgoyette /* sys_fhstatvfs1 */
11380 1.12 pgoyette case 359:
11381 1.12 pgoyette if (ndx == 0 || ndx == 1)
11382 1.12 pgoyette p = "int";
11383 1.12 pgoyette break;
11384 1.12 pgoyette /* sys_extattrctl */
11385 1.12 pgoyette case 360:
11386 1.12 pgoyette if (ndx == 0 || ndx == 1)
11387 1.12 pgoyette p = "int";
11388 1.12 pgoyette break;
11389 1.12 pgoyette /* sys_extattr_set_file */
11390 1.12 pgoyette case 361:
11391 1.12 pgoyette if (ndx == 0 || ndx == 1)
11392 1.12 pgoyette p = "int";
11393 1.12 pgoyette break;
11394 1.12 pgoyette /* sys_extattr_get_file */
11395 1.12 pgoyette case 362:
11396 1.12 pgoyette if (ndx == 0 || ndx == 1)
11397 1.12 pgoyette p = "ssize_t";
11398 1.12 pgoyette break;
11399 1.12 pgoyette /* sys_extattr_delete_file */
11400 1.12 pgoyette case 363:
11401 1.12 pgoyette if (ndx == 0 || ndx == 1)
11402 1.12 pgoyette p = "int";
11403 1.12 pgoyette break;
11404 1.12 pgoyette /* sys_extattr_set_fd */
11405 1.12 pgoyette case 364:
11406 1.12 pgoyette if (ndx == 0 || ndx == 1)
11407 1.12 pgoyette p = "int";
11408 1.12 pgoyette break;
11409 1.12 pgoyette /* sys_extattr_get_fd */
11410 1.12 pgoyette case 365:
11411 1.12 pgoyette if (ndx == 0 || ndx == 1)
11412 1.12 pgoyette p = "ssize_t";
11413 1.12 pgoyette break;
11414 1.12 pgoyette /* sys_extattr_delete_fd */
11415 1.12 pgoyette case 366:
11416 1.12 pgoyette if (ndx == 0 || ndx == 1)
11417 1.12 pgoyette p = "int";
11418 1.12 pgoyette break;
11419 1.12 pgoyette /* sys_extattr_set_link */
11420 1.12 pgoyette case 367:
11421 1.12 pgoyette if (ndx == 0 || ndx == 1)
11422 1.12 pgoyette p = "int";
11423 1.12 pgoyette break;
11424 1.12 pgoyette /* sys_extattr_get_link */
11425 1.12 pgoyette case 368:
11426 1.12 pgoyette if (ndx == 0 || ndx == 1)
11427 1.12 pgoyette p = "ssize_t";
11428 1.12 pgoyette break;
11429 1.12 pgoyette /* sys_extattr_delete_link */
11430 1.12 pgoyette case 369:
11431 1.12 pgoyette if (ndx == 0 || ndx == 1)
11432 1.12 pgoyette p = "int";
11433 1.12 pgoyette break;
11434 1.12 pgoyette /* sys_extattr_list_fd */
11435 1.12 pgoyette case 370:
11436 1.12 pgoyette if (ndx == 0 || ndx == 1)
11437 1.12 pgoyette p = "ssize_t";
11438 1.12 pgoyette break;
11439 1.12 pgoyette /* sys_extattr_list_file */
11440 1.12 pgoyette case 371:
11441 1.12 pgoyette if (ndx == 0 || ndx == 1)
11442 1.12 pgoyette p = "ssize_t";
11443 1.12 pgoyette break;
11444 1.12 pgoyette /* sys_extattr_list_link */
11445 1.12 pgoyette case 372:
11446 1.12 pgoyette if (ndx == 0 || ndx == 1)
11447 1.12 pgoyette p = "ssize_t";
11448 1.12 pgoyette break;
11449 1.12 pgoyette /* sys_pselect */
11450 1.12 pgoyette case 373:
11451 1.12 pgoyette if (ndx == 0 || ndx == 1)
11452 1.12 pgoyette p = "int";
11453 1.12 pgoyette break;
11454 1.12 pgoyette /* sys_pollts */
11455 1.12 pgoyette case 374:
11456 1.12 pgoyette if (ndx == 0 || ndx == 1)
11457 1.12 pgoyette p = "int";
11458 1.12 pgoyette break;
11459 1.12 pgoyette /* sys_setxattr */
11460 1.12 pgoyette case 375:
11461 1.12 pgoyette if (ndx == 0 || ndx == 1)
11462 1.12 pgoyette p = "int";
11463 1.12 pgoyette break;
11464 1.12 pgoyette /* sys_lsetxattr */
11465 1.12 pgoyette case 376:
11466 1.12 pgoyette if (ndx == 0 || ndx == 1)
11467 1.12 pgoyette p = "int";
11468 1.12 pgoyette break;
11469 1.12 pgoyette /* sys_fsetxattr */
11470 1.12 pgoyette case 377:
11471 1.12 pgoyette if (ndx == 0 || ndx == 1)
11472 1.12 pgoyette p = "int";
11473 1.12 pgoyette break;
11474 1.12 pgoyette /* sys_getxattr */
11475 1.12 pgoyette case 378:
11476 1.12 pgoyette if (ndx == 0 || ndx == 1)
11477 1.12 pgoyette p = "int";
11478 1.12 pgoyette break;
11479 1.12 pgoyette /* sys_lgetxattr */
11480 1.12 pgoyette case 379:
11481 1.12 pgoyette if (ndx == 0 || ndx == 1)
11482 1.12 pgoyette p = "int";
11483 1.12 pgoyette break;
11484 1.12 pgoyette /* sys_fgetxattr */
11485 1.12 pgoyette case 380:
11486 1.12 pgoyette if (ndx == 0 || ndx == 1)
11487 1.12 pgoyette p = "int";
11488 1.12 pgoyette break;
11489 1.12 pgoyette /* sys_listxattr */
11490 1.12 pgoyette case 381:
11491 1.12 pgoyette if (ndx == 0 || ndx == 1)
11492 1.12 pgoyette p = "int";
11493 1.12 pgoyette break;
11494 1.12 pgoyette /* sys_llistxattr */
11495 1.12 pgoyette case 382:
11496 1.12 pgoyette if (ndx == 0 || ndx == 1)
11497 1.12 pgoyette p = "int";
11498 1.12 pgoyette break;
11499 1.12 pgoyette /* sys_flistxattr */
11500 1.12 pgoyette case 383:
11501 1.12 pgoyette if (ndx == 0 || ndx == 1)
11502 1.12 pgoyette p = "int";
11503 1.12 pgoyette break;
11504 1.12 pgoyette /* sys_removexattr */
11505 1.12 pgoyette case 384:
11506 1.12 pgoyette if (ndx == 0 || ndx == 1)
11507 1.12 pgoyette p = "int";
11508 1.12 pgoyette break;
11509 1.12 pgoyette /* sys_lremovexattr */
11510 1.12 pgoyette case 385:
11511 1.12 pgoyette if (ndx == 0 || ndx == 1)
11512 1.12 pgoyette p = "int";
11513 1.12 pgoyette break;
11514 1.12 pgoyette /* sys_fremovexattr */
11515 1.12 pgoyette case 386:
11516 1.12 pgoyette if (ndx == 0 || ndx == 1)
11517 1.12 pgoyette p = "int";
11518 1.12 pgoyette break;
11519 1.12 pgoyette /* sys___stat30 */
11520 1.12 pgoyette case 387:
11521 1.12 pgoyette if (ndx == 0 || ndx == 1)
11522 1.12 pgoyette p = "int";
11523 1.12 pgoyette break;
11524 1.12 pgoyette /* sys___fstat30 */
11525 1.12 pgoyette case 388:
11526 1.12 pgoyette if (ndx == 0 || ndx == 1)
11527 1.12 pgoyette p = "int";
11528 1.12 pgoyette break;
11529 1.12 pgoyette /* sys___lstat30 */
11530 1.12 pgoyette case 389:
11531 1.12 pgoyette if (ndx == 0 || ndx == 1)
11532 1.12 pgoyette p = "int";
11533 1.12 pgoyette break;
11534 1.12 pgoyette /* sys___getdents30 */
11535 1.12 pgoyette case 390:
11536 1.12 pgoyette if (ndx == 0 || ndx == 1)
11537 1.12 pgoyette p = "int";
11538 1.12 pgoyette break;
11539 1.12 pgoyette /* sys___fhstat30 */
11540 1.12 pgoyette case 392:
11541 1.12 pgoyette if (ndx == 0 || ndx == 1)
11542 1.12 pgoyette p = "int";
11543 1.12 pgoyette break;
11544 1.12 pgoyette /* sys___ntp_gettime30 */
11545 1.12 pgoyette case 393:
11546 1.12 pgoyette if (ndx == 0 || ndx == 1)
11547 1.12 pgoyette p = "int";
11548 1.12 pgoyette break;
11549 1.12 pgoyette /* sys___socket30 */
11550 1.12 pgoyette case 394:
11551 1.12 pgoyette if (ndx == 0 || ndx == 1)
11552 1.12 pgoyette p = "int";
11553 1.12 pgoyette break;
11554 1.12 pgoyette /* sys___getfh30 */
11555 1.12 pgoyette case 395:
11556 1.12 pgoyette if (ndx == 0 || ndx == 1)
11557 1.12 pgoyette p = "int";
11558 1.12 pgoyette break;
11559 1.12 pgoyette /* sys___fhopen40 */
11560 1.12 pgoyette case 396:
11561 1.12 pgoyette if (ndx == 0 || ndx == 1)
11562 1.12 pgoyette p = "int";
11563 1.12 pgoyette break;
11564 1.12 pgoyette /* sys___fhstatvfs140 */
11565 1.12 pgoyette case 397:
11566 1.12 pgoyette if (ndx == 0 || ndx == 1)
11567 1.12 pgoyette p = "int";
11568 1.12 pgoyette break;
11569 1.12 pgoyette /* sys___fhstat40 */
11570 1.12 pgoyette case 398:
11571 1.12 pgoyette if (ndx == 0 || ndx == 1)
11572 1.12 pgoyette p = "int";
11573 1.12 pgoyette break;
11574 1.12 pgoyette /* sys_aio_cancel */
11575 1.12 pgoyette case 399:
11576 1.12 pgoyette if (ndx == 0 || ndx == 1)
11577 1.12 pgoyette p = "int";
11578 1.12 pgoyette break;
11579 1.12 pgoyette /* sys_aio_error */
11580 1.12 pgoyette case 400:
11581 1.12 pgoyette if (ndx == 0 || ndx == 1)
11582 1.12 pgoyette p = "int";
11583 1.12 pgoyette break;
11584 1.12 pgoyette /* sys_aio_fsync */
11585 1.12 pgoyette case 401:
11586 1.12 pgoyette if (ndx == 0 || ndx == 1)
11587 1.12 pgoyette p = "int";
11588 1.12 pgoyette break;
11589 1.12 pgoyette /* sys_aio_read */
11590 1.12 pgoyette case 402:
11591 1.12 pgoyette if (ndx == 0 || ndx == 1)
11592 1.12 pgoyette p = "int";
11593 1.12 pgoyette break;
11594 1.12 pgoyette /* sys_aio_return */
11595 1.12 pgoyette case 403:
11596 1.12 pgoyette if (ndx == 0 || ndx == 1)
11597 1.12 pgoyette p = "int";
11598 1.12 pgoyette break;
11599 1.12 pgoyette /* sys_aio_suspend */
11600 1.12 pgoyette case 404:
11601 1.12 pgoyette if (ndx == 0 || ndx == 1)
11602 1.12 pgoyette p = "int";
11603 1.12 pgoyette break;
11604 1.12 pgoyette /* sys_aio_write */
11605 1.12 pgoyette case 405:
11606 1.12 pgoyette if (ndx == 0 || ndx == 1)
11607 1.12 pgoyette p = "int";
11608 1.12 pgoyette break;
11609 1.12 pgoyette /* sys_lio_listio */
11610 1.12 pgoyette case 406:
11611 1.12 pgoyette if (ndx == 0 || ndx == 1)
11612 1.12 pgoyette p = "int";
11613 1.12 pgoyette break;
11614 1.12 pgoyette /* sys___mount50 */
11615 1.12 pgoyette case 410:
11616 1.12 pgoyette if (ndx == 0 || ndx == 1)
11617 1.12 pgoyette p = "int";
11618 1.12 pgoyette break;
11619 1.12 pgoyette /* sys_mremap */
11620 1.12 pgoyette case 411:
11621 1.12 pgoyette if (ndx == 0 || ndx == 1)
11622 1.12 pgoyette p = "void *";
11623 1.12 pgoyette break;
11624 1.12 pgoyette /* sys_pset_create */
11625 1.12 pgoyette case 412:
11626 1.12 pgoyette if (ndx == 0 || ndx == 1)
11627 1.12 pgoyette p = "int";
11628 1.12 pgoyette break;
11629 1.12 pgoyette /* sys_pset_destroy */
11630 1.12 pgoyette case 413:
11631 1.12 pgoyette if (ndx == 0 || ndx == 1)
11632 1.12 pgoyette p = "int";
11633 1.12 pgoyette break;
11634 1.12 pgoyette /* sys_pset_assign */
11635 1.12 pgoyette case 414:
11636 1.12 pgoyette if (ndx == 0 || ndx == 1)
11637 1.12 pgoyette p = "int";
11638 1.12 pgoyette break;
11639 1.12 pgoyette /* sys__pset_bind */
11640 1.12 pgoyette case 415:
11641 1.12 pgoyette if (ndx == 0 || ndx == 1)
11642 1.12 pgoyette p = "int";
11643 1.12 pgoyette break;
11644 1.12 pgoyette /* sys___posix_fadvise50 */
11645 1.12 pgoyette case 416:
11646 1.12 pgoyette if (ndx == 0 || ndx == 1)
11647 1.12 pgoyette p = "int";
11648 1.12 pgoyette break;
11649 1.12 pgoyette /* sys___select50 */
11650 1.12 pgoyette case 417:
11651 1.12 pgoyette if (ndx == 0 || ndx == 1)
11652 1.12 pgoyette p = "int";
11653 1.12 pgoyette break;
11654 1.12 pgoyette /* sys___gettimeofday50 */
11655 1.12 pgoyette case 418:
11656 1.12 pgoyette if (ndx == 0 || ndx == 1)
11657 1.12 pgoyette p = "int";
11658 1.12 pgoyette break;
11659 1.12 pgoyette /* sys___settimeofday50 */
11660 1.12 pgoyette case 419:
11661 1.12 pgoyette if (ndx == 0 || ndx == 1)
11662 1.12 pgoyette p = "int";
11663 1.12 pgoyette break;
11664 1.12 pgoyette /* sys___utimes50 */
11665 1.12 pgoyette case 420:
11666 1.12 pgoyette if (ndx == 0 || ndx == 1)
11667 1.12 pgoyette p = "int";
11668 1.12 pgoyette break;
11669 1.12 pgoyette /* sys___adjtime50 */
11670 1.12 pgoyette case 421:
11671 1.12 pgoyette if (ndx == 0 || ndx == 1)
11672 1.12 pgoyette p = "int";
11673 1.12 pgoyette break;
11674 1.12 pgoyette /* sys___lfs_segwait50 */
11675 1.12 pgoyette case 422:
11676 1.12 pgoyette if (ndx == 0 || ndx == 1)
11677 1.12 pgoyette p = "int";
11678 1.12 pgoyette break;
11679 1.12 pgoyette /* sys___futimes50 */
11680 1.12 pgoyette case 423:
11681 1.12 pgoyette if (ndx == 0 || ndx == 1)
11682 1.12 pgoyette p = "int";
11683 1.12 pgoyette break;
11684 1.12 pgoyette /* sys___lutimes50 */
11685 1.12 pgoyette case 424:
11686 1.12 pgoyette if (ndx == 0 || ndx == 1)
11687 1.12 pgoyette p = "int";
11688 1.12 pgoyette break;
11689 1.12 pgoyette /* sys___setitimer50 */
11690 1.12 pgoyette case 425:
11691 1.12 pgoyette if (ndx == 0 || ndx == 1)
11692 1.12 pgoyette p = "int";
11693 1.12 pgoyette break;
11694 1.12 pgoyette /* sys___getitimer50 */
11695 1.12 pgoyette case 426:
11696 1.12 pgoyette if (ndx == 0 || ndx == 1)
11697 1.12 pgoyette p = "int";
11698 1.12 pgoyette break;
11699 1.12 pgoyette /* sys___clock_gettime50 */
11700 1.12 pgoyette case 427:
11701 1.12 pgoyette if (ndx == 0 || ndx == 1)
11702 1.12 pgoyette p = "int";
11703 1.12 pgoyette break;
11704 1.12 pgoyette /* sys___clock_settime50 */
11705 1.12 pgoyette case 428:
11706 1.12 pgoyette if (ndx == 0 || ndx == 1)
11707 1.12 pgoyette p = "int";
11708 1.12 pgoyette break;
11709 1.12 pgoyette /* sys___clock_getres50 */
11710 1.12 pgoyette case 429:
11711 1.12 pgoyette if (ndx == 0 || ndx == 1)
11712 1.12 pgoyette p = "int";
11713 1.12 pgoyette break;
11714 1.12 pgoyette /* sys___nanosleep50 */
11715 1.12 pgoyette case 430:
11716 1.12 pgoyette if (ndx == 0 || ndx == 1)
11717 1.12 pgoyette p = "int";
11718 1.12 pgoyette break;
11719 1.12 pgoyette /* sys_____sigtimedwait50 */
11720 1.12 pgoyette case 431:
11721 1.12 pgoyette if (ndx == 0 || ndx == 1)
11722 1.12 pgoyette p = "int";
11723 1.12 pgoyette break;
11724 1.12 pgoyette /* sys___mq_timedsend50 */
11725 1.12 pgoyette case 432:
11726 1.12 pgoyette if (ndx == 0 || ndx == 1)
11727 1.12 pgoyette p = "int";
11728 1.12 pgoyette break;
11729 1.12 pgoyette /* sys___mq_timedreceive50 */
11730 1.12 pgoyette case 433:
11731 1.12 pgoyette if (ndx == 0 || ndx == 1)
11732 1.12 pgoyette p = "ssize_t";
11733 1.12 pgoyette break;
11734 1.12 pgoyette /* sys__lwp_park */
11735 1.12 pgoyette case 434:
11736 1.12 pgoyette if (ndx == 0 || ndx == 1)
11737 1.12 pgoyette p = "int";
11738 1.12 pgoyette break;
11739 1.12 pgoyette /* sys___kevent50 */
11740 1.12 pgoyette case 435:
11741 1.12 pgoyette if (ndx == 0 || ndx == 1)
11742 1.12 pgoyette p = "int";
11743 1.12 pgoyette break;
11744 1.12 pgoyette /* sys___pselect50 */
11745 1.12 pgoyette case 436:
11746 1.12 pgoyette if (ndx == 0 || ndx == 1)
11747 1.12 pgoyette p = "int";
11748 1.12 pgoyette break;
11749 1.12 pgoyette /* sys___pollts50 */
11750 1.12 pgoyette case 437:
11751 1.12 pgoyette if (ndx == 0 || ndx == 1)
11752 1.12 pgoyette p = "int";
11753 1.12 pgoyette break;
11754 1.12 pgoyette /* sys___aio_suspend50 */
11755 1.12 pgoyette case 438:
11756 1.12 pgoyette if (ndx == 0 || ndx == 1)
11757 1.12 pgoyette p = "int";
11758 1.12 pgoyette break;
11759 1.12 pgoyette /* sys___stat50 */
11760 1.12 pgoyette case 439:
11761 1.12 pgoyette if (ndx == 0 || ndx == 1)
11762 1.12 pgoyette p = "int";
11763 1.12 pgoyette break;
11764 1.12 pgoyette /* sys___fstat50 */
11765 1.12 pgoyette case 440:
11766 1.12 pgoyette if (ndx == 0 || ndx == 1)
11767 1.12 pgoyette p = "int";
11768 1.12 pgoyette break;
11769 1.12 pgoyette /* sys___lstat50 */
11770 1.12 pgoyette case 441:
11771 1.12 pgoyette if (ndx == 0 || ndx == 1)
11772 1.12 pgoyette p = "int";
11773 1.12 pgoyette break;
11774 1.12 pgoyette /* sys_____semctl50 */
11775 1.12 pgoyette case 442:
11776 1.12 pgoyette if (ndx == 0 || ndx == 1)
11777 1.12 pgoyette p = "int";
11778 1.12 pgoyette break;
11779 1.12 pgoyette /* sys___shmctl50 */
11780 1.12 pgoyette case 443:
11781 1.12 pgoyette if (ndx == 0 || ndx == 1)
11782 1.12 pgoyette p = "int";
11783 1.12 pgoyette break;
11784 1.12 pgoyette /* sys___msgctl50 */
11785 1.12 pgoyette case 444:
11786 1.12 pgoyette if (ndx == 0 || ndx == 1)
11787 1.12 pgoyette p = "int";
11788 1.12 pgoyette break;
11789 1.12 pgoyette /* sys___getrusage50 */
11790 1.12 pgoyette case 445:
11791 1.12 pgoyette if (ndx == 0 || ndx == 1)
11792 1.12 pgoyette p = "int";
11793 1.12 pgoyette break;
11794 1.12 pgoyette /* sys___timer_settime50 */
11795 1.12 pgoyette case 446:
11796 1.12 pgoyette if (ndx == 0 || ndx == 1)
11797 1.12 pgoyette p = "int";
11798 1.12 pgoyette break;
11799 1.12 pgoyette /* sys___timer_gettime50 */
11800 1.12 pgoyette case 447:
11801 1.12 pgoyette if (ndx == 0 || ndx == 1)
11802 1.12 pgoyette p = "int";
11803 1.12 pgoyette break;
11804 1.12 pgoyette #if defined(NTP) || !defined(_KERNEL_OPT)
11805 1.12 pgoyette /* sys___ntp_gettime50 */
11806 1.12 pgoyette case 448:
11807 1.12 pgoyette if (ndx == 0 || ndx == 1)
11808 1.12 pgoyette p = "int";
11809 1.12 pgoyette break;
11810 1.12 pgoyette #else
11811 1.12 pgoyette #endif
11812 1.12 pgoyette /* sys___wait450 */
11813 1.12 pgoyette case 449:
11814 1.12 pgoyette if (ndx == 0 || ndx == 1)
11815 1.12 pgoyette p = "int";
11816 1.12 pgoyette break;
11817 1.12 pgoyette /* sys___mknod50 */
11818 1.12 pgoyette case 450:
11819 1.12 pgoyette if (ndx == 0 || ndx == 1)
11820 1.12 pgoyette p = "int";
11821 1.12 pgoyette break;
11822 1.12 pgoyette /* sys___fhstat50 */
11823 1.12 pgoyette case 451:
11824 1.12 pgoyette if (ndx == 0 || ndx == 1)
11825 1.12 pgoyette p = "int";
11826 1.12 pgoyette break;
11827 1.12 pgoyette /* sys_pipe2 */
11828 1.12 pgoyette case 453:
11829 1.12 pgoyette if (ndx == 0 || ndx == 1)
11830 1.12 pgoyette p = "int";
11831 1.12 pgoyette break;
11832 1.12 pgoyette /* sys_dup3 */
11833 1.12 pgoyette case 454:
11834 1.12 pgoyette if (ndx == 0 || ndx == 1)
11835 1.12 pgoyette p = "int";
11836 1.12 pgoyette break;
11837 1.12 pgoyette /* sys_kqueue1 */
11838 1.12 pgoyette case 455:
11839 1.12 pgoyette if (ndx == 0 || ndx == 1)
11840 1.12 pgoyette p = "int";
11841 1.12 pgoyette break;
11842 1.12 pgoyette /* sys_paccept */
11843 1.12 pgoyette case 456:
11844 1.12 pgoyette if (ndx == 0 || ndx == 1)
11845 1.12 pgoyette p = "int";
11846 1.12 pgoyette break;
11847 1.12 pgoyette /* sys_linkat */
11848 1.12 pgoyette case 457:
11849 1.12 pgoyette if (ndx == 0 || ndx == 1)
11850 1.12 pgoyette p = "int";
11851 1.12 pgoyette break;
11852 1.12 pgoyette /* sys_renameat */
11853 1.12 pgoyette case 458:
11854 1.12 pgoyette if (ndx == 0 || ndx == 1)
11855 1.12 pgoyette p = "int";
11856 1.12 pgoyette break;
11857 1.12 pgoyette /* sys_mkfifoat */
11858 1.12 pgoyette case 459:
11859 1.12 pgoyette if (ndx == 0 || ndx == 1)
11860 1.12 pgoyette p = "int";
11861 1.12 pgoyette break;
11862 1.12 pgoyette /* sys_mknodat */
11863 1.12 pgoyette case 460:
11864 1.12 pgoyette if (ndx == 0 || ndx == 1)
11865 1.12 pgoyette p = "int";
11866 1.12 pgoyette break;
11867 1.12 pgoyette /* sys_mkdirat */
11868 1.12 pgoyette case 461:
11869 1.12 pgoyette if (ndx == 0 || ndx == 1)
11870 1.12 pgoyette p = "int";
11871 1.12 pgoyette break;
11872 1.12 pgoyette /* sys_faccessat */
11873 1.12 pgoyette case 462:
11874 1.12 pgoyette if (ndx == 0 || ndx == 1)
11875 1.12 pgoyette p = "int";
11876 1.12 pgoyette break;
11877 1.12 pgoyette /* sys_fchmodat */
11878 1.12 pgoyette case 463:
11879 1.12 pgoyette if (ndx == 0 || ndx == 1)
11880 1.12 pgoyette p = "int";
11881 1.12 pgoyette break;
11882 1.12 pgoyette /* sys_fchownat */
11883 1.12 pgoyette case 464:
11884 1.12 pgoyette if (ndx == 0 || ndx == 1)
11885 1.12 pgoyette p = "int";
11886 1.12 pgoyette break;
11887 1.12 pgoyette /* sys_fexecve */
11888 1.12 pgoyette case 465:
11889 1.12 pgoyette if (ndx == 0 || ndx == 1)
11890 1.12 pgoyette p = "int";
11891 1.12 pgoyette break;
11892 1.12 pgoyette /* sys_fstatat */
11893 1.12 pgoyette case 466:
11894 1.12 pgoyette if (ndx == 0 || ndx == 1)
11895 1.12 pgoyette p = "int";
11896 1.12 pgoyette break;
11897 1.12 pgoyette /* sys_utimensat */
11898 1.12 pgoyette case 467:
11899 1.12 pgoyette if (ndx == 0 || ndx == 1)
11900 1.12 pgoyette p = "int";
11901 1.12 pgoyette break;
11902 1.12 pgoyette /* sys_openat */
11903 1.12 pgoyette case 468:
11904 1.12 pgoyette if (ndx == 0 || ndx == 1)
11905 1.12 pgoyette p = "int";
11906 1.12 pgoyette break;
11907 1.12 pgoyette /* sys_readlinkat */
11908 1.12 pgoyette case 469:
11909 1.12 pgoyette if (ndx == 0 || ndx == 1)
11910 1.12 pgoyette p = "ssize_t";
11911 1.12 pgoyette break;
11912 1.12 pgoyette /* sys_symlinkat */
11913 1.12 pgoyette case 470:
11914 1.12 pgoyette if (ndx == 0 || ndx == 1)
11915 1.12 pgoyette p = "int";
11916 1.12 pgoyette break;
11917 1.12 pgoyette /* sys_unlinkat */
11918 1.12 pgoyette case 471:
11919 1.12 pgoyette if (ndx == 0 || ndx == 1)
11920 1.12 pgoyette p = "int";
11921 1.12 pgoyette break;
11922 1.12 pgoyette /* sys_futimens */
11923 1.12 pgoyette case 472:
11924 1.12 pgoyette if (ndx == 0 || ndx == 1)
11925 1.12 pgoyette p = "int";
11926 1.12 pgoyette break;
11927 1.12 pgoyette /* sys___quotactl */
11928 1.12 pgoyette case 473:
11929 1.12 pgoyette if (ndx == 0 || ndx == 1)
11930 1.12 pgoyette p = "int";
11931 1.12 pgoyette break;
11932 1.12 pgoyette /* sys_posix_spawn */
11933 1.12 pgoyette case 474:
11934 1.12 pgoyette if (ndx == 0 || ndx == 1)
11935 1.12 pgoyette p = "int";
11936 1.12 pgoyette break;
11937 1.12 pgoyette /* sys_recvmmsg */
11938 1.12 pgoyette case 475:
11939 1.12 pgoyette if (ndx == 0 || ndx == 1)
11940 1.12 pgoyette p = "int";
11941 1.12 pgoyette break;
11942 1.12 pgoyette /* sys_sendmmsg */
11943 1.12 pgoyette case 476:
11944 1.12 pgoyette if (ndx == 0 || ndx == 1)
11945 1.12 pgoyette p = "int";
11946 1.12 pgoyette break;
11947 1.12 pgoyette /* sys_clock_nanosleep */
11948 1.12 pgoyette case 477:
11949 1.12 pgoyette if (ndx == 0 || ndx == 1)
11950 1.12 pgoyette p = "int";
11951 1.12 pgoyette break;
11952 1.12 pgoyette /* sys____lwp_park60 */
11953 1.12 pgoyette case 478:
11954 1.12 pgoyette if (ndx == 0 || ndx == 1)
11955 1.12 pgoyette p = "int";
11956 1.12 pgoyette break;
11957 1.12 pgoyette /* sys_posix_fallocate */
11958 1.12 pgoyette case 479:
11959 1.12 pgoyette if (ndx == 0 || ndx == 1)
11960 1.12 pgoyette p = "int";
11961 1.12 pgoyette break;
11962 1.12 pgoyette /* sys_fdiscard */
11963 1.12 pgoyette case 480:
11964 1.12 pgoyette if (ndx == 0 || ndx == 1)
11965 1.12 pgoyette p = "int";
11966 1.12 pgoyette break;
11967 1.16 christos /* sys_wait6 */
11968 1.16 christos case 481:
11969 1.16 christos if (ndx == 0 || ndx == 1)
11970 1.16 christos p = "int";
11971 1.16 christos break;
11972 1.19 christos /* sys_clock_getcpuclockid2 */
11973 1.19 christos case 482:
11974 1.19 christos if (ndx == 0 || ndx == 1)
11975 1.19 christos p = "int";
11976 1.19 christos break;
11977 1.12 pgoyette default:
11978 1.12 pgoyette break;
11979 1.12 pgoyette };
11980 1.12 pgoyette if (p != NULL)
11981 1.12 pgoyette strlcpy(desc, p, descsz);
11982 1.12 pgoyette }
11983