netbsd32_systrace_args.c revision 1.44 1 1.31 christos /* $NetBSD: netbsd32_systrace_args.c,v 1.44 2020/05/16 18:31:48 christos 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 /* netbsd32_syscall */
16 1.1 christos case 0: {
17 1.17 christos const struct netbsd32_syscall_args *p = params;
18 1.1 christos iarg[0] = SCARG(p, code); /* int */
19 1.1 christos iarg[1] = SCARG(p, args[NETBSD32_SYS_MAXSYSARGS]); /* register32_t */
20 1.1 christos *n_args = 2;
21 1.1 christos break;
22 1.1 christos }
23 1.1 christos /* netbsd32_exit */
24 1.1 christos case 1: {
25 1.17 christos const struct netbsd32_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 /* netbsd32_read */
36 1.1 christos case 3: {
37 1.17 christos const struct netbsd32_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).i32; /* netbsd32_voidp */
40 1.1 christos iarg[2] = SCARG(p, nbyte); /* netbsd32_size_t */
41 1.1 christos *n_args = 3;
42 1.1 christos break;
43 1.1 christos }
44 1.1 christos /* netbsd32_write */
45 1.1 christos case 4: {
46 1.17 christos const struct netbsd32_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).i32; /* netbsd32_voidp */
49 1.1 christos iarg[2] = SCARG(p, nbyte); /* netbsd32_size_t */
50 1.1 christos *n_args = 3;
51 1.1 christos break;
52 1.1 christos }
53 1.1 christos /* netbsd32_open */
54 1.1 christos case 5: {
55 1.17 christos const struct netbsd32_open_args *p = params;
56 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
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 /* netbsd32_close */
63 1.1 christos case 6: {
64 1.17 christos const struct netbsd32_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 /* netbsd32_wait4 */
70 1.1 christos case 7: {
71 1.17 christos const struct compat_50_netbsd32_wait4_args *p = params;
72 1.1 christos iarg[0] = SCARG(p, pid); /* int */
73 1.1 christos uarg[1] = (intptr_t) SCARG(p, status).i32; /* netbsd32_intp */
74 1.1 christos iarg[2] = SCARG(p, options); /* int */
75 1.1 christos uarg[3] = (intptr_t) SCARG(p, rusage).i32; /* netbsd32_rusage50p_t */
76 1.1 christos *n_args = 4;
77 1.1 christos break;
78 1.1 christos }
79 1.1 christos /* netbsd32_ocreat */
80 1.1 christos case 8: {
81 1.17 christos const struct compat_43_netbsd32_ocreat_args *p = params;
82 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
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 /* netbsd32_link */
88 1.1 christos case 9: {
89 1.17 christos const struct netbsd32_link_args *p = params;
90 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
91 1.1 christos uarg[1] = (intptr_t) SCARG(p, link).i32; /* netbsd32_charp */
92 1.1 christos *n_args = 2;
93 1.1 christos break;
94 1.1 christos }
95 1.1 christos /* netbsd32_unlink */
96 1.1 christos case 10: {
97 1.17 christos const struct netbsd32_unlink_args *p = params;
98 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
99 1.1 christos *n_args = 1;
100 1.1 christos break;
101 1.1 christos }
102 1.1 christos /* netbsd32_chdir */
103 1.1 christos case 12: {
104 1.17 christos const struct netbsd32_chdir_args *p = params;
105 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
106 1.1 christos *n_args = 1;
107 1.1 christos break;
108 1.1 christos }
109 1.1 christos /* netbsd32_fchdir */
110 1.1 christos case 13: {
111 1.17 christos const struct netbsd32_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 /* netbsd32_mknod */
117 1.1 christos case 14: {
118 1.17 christos const struct compat_50_netbsd32_mknod_args *p = params;
119 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
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 /* netbsd32_chmod */
126 1.1 christos case 15: {
127 1.17 christos const struct netbsd32_chmod_args *p = params;
128 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
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 /* netbsd32_chown */
134 1.1 christos case 16: {
135 1.17 christos const struct netbsd32_chown_args *p = params;
136 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
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 /* netbsd32_break */
143 1.1 christos case 17: {
144 1.17 christos const struct netbsd32_break_args *p = params;
145 1.1 christos uarg[0] = (intptr_t) SCARG(p, nsize).i32; /* netbsd32_charp */
146 1.1 christos *n_args = 1;
147 1.1 christos break;
148 1.1 christos }
149 1.1 christos /* netbsd32_getfsstat */
150 1.1 christos case 18: {
151 1.17 christos const struct compat_20_netbsd32_getfsstat_args *p = params;
152 1.1 christos uarg[0] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statfsp_t */
153 1.1 christos iarg[1] = SCARG(p, bufsize); /* netbsd32_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 /* netbsd32_olseek */
159 1.1 christos case 19: {
160 1.17 christos const struct compat_43_netbsd32_olseek_args *p = params;
161 1.1 christos iarg[0] = SCARG(p, fd); /* int */
162 1.1 christos iarg[1] = SCARG(p, offset); /* netbsd32_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.37 kamil /* 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 /* netbsd32_mount */
173 1.1 christos case 21: {
174 1.28 mrg const struct compat_40_netbsd32_mount_args *p = params;
175 1.1 christos uarg[0] = (intptr_t) SCARG(p, type).i32; /* netbsd32_charp */
176 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
177 1.1 christos iarg[2] = SCARG(p, flags); /* int */
178 1.1 christos uarg[3] = (intptr_t) SCARG(p, data).i32; /* netbsd32_voidp */
179 1.1 christos *n_args = 4;
180 1.1 christos break;
181 1.1 christos }
182 1.1 christos /* netbsd32_unmount */
183 1.1 christos case 22: {
184 1.17 christos const struct netbsd32_unmount_args *p = params;
185 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
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 /* netbsd32_setuid */
191 1.1 christos case 23: {
192 1.17 christos const struct netbsd32_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.37 kamil /* 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 /* netbsd32_ptrace */
208 1.1 christos case 26: {
209 1.17 christos const struct netbsd32_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).i32; /* netbsd32_voidp */
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 /* netbsd32_recvmsg */
218 1.1 christos case 27: {
219 1.17 christos const struct netbsd32_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).i32; /* netbsd32_msghdrp_t */
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 /* netbsd32_sendmsg */
227 1.1 christos case 28: {
228 1.17 christos const struct netbsd32_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).i32; /* netbsd32_msghdrp_t */
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 /* netbsd32_recvfrom */
236 1.1 christos case 29: {
237 1.17 christos const struct netbsd32_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).i32; /* netbsd32_voidp */
240 1.1 christos iarg[2] = SCARG(p, len); /* netbsd32_size_t */
241 1.1 christos iarg[3] = SCARG(p, flags); /* int */
242 1.1 christos uarg[4] = (intptr_t) SCARG(p, from).i32; /* netbsd32_sockaddrp_t */
243 1.1 christos uarg[5] = (intptr_t) SCARG(p, fromlenaddr).i32; /* netbsd32_intp */
244 1.1 christos *n_args = 6;
245 1.1 christos break;
246 1.1 christos }
247 1.1 christos /* netbsd32_accept */
248 1.1 christos case 30: {
249 1.17 christos const struct netbsd32_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).i32; /* netbsd32_sockaddrp_t */
252 1.1 christos uarg[2] = (intptr_t) SCARG(p, anamelen).i32; /* netbsd32_intp */
253 1.1 christos *n_args = 3;
254 1.1 christos break;
255 1.1 christos }
256 1.1 christos /* netbsd32_getpeername */
257 1.1 christos case 31: {
258 1.17 christos const struct netbsd32_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).i32; /* netbsd32_sockaddrp_t */
261 1.1 christos uarg[2] = (intptr_t) SCARG(p, alen).i32; /* netbsd32_intp */
262 1.1 christos *n_args = 3;
263 1.1 christos break;
264 1.1 christos }
265 1.1 christos /* netbsd32_getsockname */
266 1.1 christos case 32: {
267 1.17 christos const struct netbsd32_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).i32; /* netbsd32_sockaddrp_t */
270 1.1 christos uarg[2] = (intptr_t) SCARG(p, alen).i32; /* netbsd32_intp */
271 1.1 christos *n_args = 3;
272 1.1 christos break;
273 1.1 christos }
274 1.1 christos /* netbsd32_access */
275 1.1 christos case 33: {
276 1.17 christos const struct netbsd32_access_args *p = params;
277 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
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 /* netbsd32_chflags */
283 1.1 christos case 34: {
284 1.17 christos const struct netbsd32_chflags_args *p = params;
285 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
286 1.1 christos iarg[1] = SCARG(p, flags); /* netbsd32_u_long */
287 1.1 christos *n_args = 2;
288 1.1 christos break;
289 1.1 christos }
290 1.1 christos /* netbsd32_fchflags */
291 1.1 christos case 35: {
292 1.17 christos const struct netbsd32_fchflags_args *p = params;
293 1.1 christos iarg[0] = SCARG(p, fd); /* int */
294 1.1 christos iarg[1] = SCARG(p, flags); /* netbsd32_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 /* netbsd32_kill */
304 1.1 christos case 37: {
305 1.17 christos const struct netbsd32_kill_args *p = params;
306 1.1 christos iarg[0] = SCARG(p, pid); /* int */
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 /* netbsd32_stat43 */
312 1.1 christos case 38: {
313 1.17 christos const struct compat_43_netbsd32_stat43_args *p = params;
314 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
315 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub).i32; /* netbsd32_stat43p_t */
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 /* netbsd32_lstat43 */
325 1.1 christos case 40: {
326 1.17 christos const struct compat_43_netbsd32_lstat43_args *p = params;
327 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
328 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub).i32; /* netbsd32_stat43p_t */
329 1.1 christos *n_args = 2;
330 1.1 christos break;
331 1.1 christos }
332 1.1 christos /* netbsd32_dup */
333 1.1 christos case 41: {
334 1.17 christos const struct netbsd32_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 /* netbsd32_profil */
350 1.1 christos case 44: {
351 1.17 christos const struct netbsd32_profil_args *p = params;
352 1.1 christos uarg[0] = (intptr_t) SCARG(p, samples).i32; /* netbsd32_voidp */
353 1.1 christos iarg[1] = SCARG(p, size); /* netbsd32_size_t */
354 1.1 christos iarg[2] = SCARG(p, offset); /* netbsd32_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 /* netbsd32_ktrace */
360 1.1 christos case 45: {
361 1.17 christos const struct netbsd32_ktrace_args *p = params;
362 1.1 christos uarg[0] = (intptr_t) SCARG(p, fname).i32; /* netbsd32_charp */
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); /* int */
366 1.1 christos *n_args = 4;
367 1.1 christos break;
368 1.1 christos }
369 1.1 christos /* netbsd32_sigaction */
370 1.1 christos case 46: {
371 1.17 christos const struct netbsd32_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).i32; /* netbsd32_sigactionp_t */
374 1.1 christos uarg[2] = (intptr_t) SCARG(p, osa).i32; /* netbsd32_sigactionp_t */
375 1.1 christos *n_args = 3;
376 1.1 christos break;
377 1.1 christos }
378 1.37 kamil /* 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 /* netbsd32_sigprocmask */
384 1.1 christos case 48: {
385 1.17 christos const struct compat_13_netbsd32_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 /* netbsd32___getlogin */
392 1.1 christos case 49: {
393 1.17 christos const struct netbsd32___getlogin_args *p = params;
394 1.1 christos uarg[0] = (intptr_t) SCARG(p, namebuf).i32; /* netbsd32_charp */
395 1.1 christos uarg[1] = SCARG(p, namelen); /* u_int */
396 1.1 christos *n_args = 2;
397 1.1 christos break;
398 1.1 christos }
399 1.1 christos /* netbsd32_setlogin */
400 1.1 christos case 50: {
401 1.17 christos const struct netbsd32_setlogin_args *p = params;
402 1.1 christos uarg[0] = (intptr_t) SCARG(p, namebuf).i32; /* netbsd32_charp */
403 1.1 christos *n_args = 1;
404 1.1 christos break;
405 1.1 christos }
406 1.1 christos /* netbsd32_acct */
407 1.1 christos case 51: {
408 1.17 christos const struct netbsd32_acct_args *p = params;
409 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
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 /* netbsd32_sigaltstack13 */
419 1.1 christos case 53: {
420 1.17 christos const struct compat_13_netbsd32_sigaltstack13_args *p = params;
421 1.1 christos uarg[0] = (intptr_t) SCARG(p, nss).i32; /* netbsd32_sigaltstack13p_t */
422 1.1 christos uarg[1] = (intptr_t) SCARG(p, oss).i32; /* netbsd32_sigaltstack13p_t */
423 1.1 christos *n_args = 2;
424 1.1 christos break;
425 1.1 christos }
426 1.1 christos /* netbsd32_ioctl */
427 1.1 christos case 54: {
428 1.17 christos const struct netbsd32_ioctl_args *p = params;
429 1.1 christos iarg[0] = SCARG(p, fd); /* int */
430 1.1 christos iarg[1] = SCARG(p, com); /* netbsd32_u_long */
431 1.1 christos uarg[2] = (intptr_t) SCARG(p, data).i32; /* netbsd32_voidp */
432 1.1 christos *n_args = 3;
433 1.1 christos break;
434 1.1 christos }
435 1.1 christos /* netbsd32_reboot */
436 1.1 christos case 55: {
437 1.17 christos const struct compat_12_netbsd32_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 /* netbsd32_revoke */
443 1.1 christos case 56: {
444 1.17 christos const struct netbsd32_revoke_args *p = params;
445 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
446 1.1 christos *n_args = 1;
447 1.1 christos break;
448 1.1 christos }
449 1.1 christos /* netbsd32_symlink */
450 1.1 christos case 57: {
451 1.17 christos const struct netbsd32_symlink_args *p = params;
452 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
453 1.1 christos uarg[1] = (intptr_t) SCARG(p, link).i32; /* netbsd32_charp */
454 1.1 christos *n_args = 2;
455 1.1 christos break;
456 1.1 christos }
457 1.1 christos /* netbsd32_readlink */
458 1.1 christos case 58: {
459 1.17 christos const struct netbsd32_readlink_args *p = params;
460 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
461 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_charp */
462 1.1 christos iarg[2] = SCARG(p, count); /* netbsd32_size_t */
463 1.1 christos *n_args = 3;
464 1.1 christos break;
465 1.1 christos }
466 1.1 christos /* netbsd32_execve */
467 1.1 christos case 59: {
468 1.17 christos const struct netbsd32_execve_args *p = params;
469 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
470 1.1 christos uarg[1] = (intptr_t) SCARG(p, argp).i32; /* netbsd32_charpp */
471 1.1 christos uarg[2] = (intptr_t) SCARG(p, envp).i32; /* netbsd32_charpp */
472 1.1 christos *n_args = 3;
473 1.1 christos break;
474 1.1 christos }
475 1.1 christos /* netbsd32_umask */
476 1.1 christos case 60: {
477 1.17 christos const struct netbsd32_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 /* netbsd32_chroot */
483 1.1 christos case 61: {
484 1.17 christos const struct netbsd32_chroot_args *p = params;
485 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
486 1.1 christos *n_args = 1;
487 1.1 christos break;
488 1.1 christos }
489 1.1 christos /* netbsd32_fstat43 */
490 1.1 christos case 62: {
491 1.17 christos const struct compat_43_netbsd32_fstat43_args *p = params;
492 1.1 christos iarg[0] = SCARG(p, fd); /* int */
493 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb).i32; /* netbsd32_stat43p_t */
494 1.1 christos *n_args = 2;
495 1.1 christos break;
496 1.1 christos }
497 1.1 christos /* netbsd32_ogetkerninfo */
498 1.1 christos case 63: {
499 1.17 christos const struct compat_43_netbsd32_ogetkerninfo_args *p = params;
500 1.1 christos iarg[0] = SCARG(p, op); /* int */
501 1.1 christos uarg[1] = (intptr_t) SCARG(p, where).i32; /* netbsd32_charp */
502 1.1 christos uarg[2] = (intptr_t) SCARG(p, size).i32; /* netbsd32_intp */
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 /* netbsd32_msync */
513 1.1 christos case 65: {
514 1.17 christos const struct compat_12_netbsd32_msync_args *p = params;
515 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
516 1.1 christos iarg[1] = SCARG(p, len); /* netbsd32_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 /* netbsd32_ommap */
526 1.1 christos case 71: {
527 1.17 christos const struct compat_43_netbsd32_ommap_args *p = params;
528 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
529 1.1 christos iarg[1] = SCARG(p, len); /* netbsd32_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); /* netbsd32_long */
534 1.1 christos *n_args = 6;
535 1.1 christos break;
536 1.1 christos }
537 1.24 kamil /* netbsd32_ovadvise */
538 1.24 kamil case 72: {
539 1.24 kamil const struct netbsd32_ovadvise_args *p = params;
540 1.24 kamil iarg[0] = SCARG(p, anom); /* int */
541 1.24 kamil *n_args = 1;
542 1.24 kamil break;
543 1.24 kamil }
544 1.1 christos /* netbsd32_munmap */
545 1.1 christos case 73: {
546 1.17 christos const struct netbsd32_munmap_args *p = params;
547 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
548 1.1 christos iarg[1] = SCARG(p, len); /* netbsd32_size_t */
549 1.1 christos *n_args = 2;
550 1.1 christos break;
551 1.1 christos }
552 1.1 christos /* netbsd32_mprotect */
553 1.1 christos case 74: {
554 1.17 christos const struct netbsd32_mprotect_args *p = params;
555 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
556 1.1 christos iarg[1] = SCARG(p, len); /* netbsd32_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 /* netbsd32_madvise */
562 1.1 christos case 75: {
563 1.17 christos const struct netbsd32_madvise_args *p = params;
564 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
565 1.1 christos iarg[1] = SCARG(p, len); /* netbsd32_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 /* netbsd32_mincore */
571 1.1 christos case 78: {
572 1.17 christos const struct netbsd32_mincore_args *p = params;
573 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
574 1.1 christos iarg[1] = SCARG(p, len); /* netbsd32_size_t */
575 1.1 christos uarg[2] = (intptr_t) SCARG(p, vec).i32; /* netbsd32_charp */
576 1.1 christos *n_args = 3;
577 1.1 christos break;
578 1.1 christos }
579 1.1 christos /* netbsd32_getgroups */
580 1.1 christos case 79: {
581 1.17 christos const struct netbsd32_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).i32; /* netbsd32_gid_tp */
584 1.1 christos *n_args = 2;
585 1.1 christos break;
586 1.1 christos }
587 1.1 christos /* netbsd32_setgroups */
588 1.1 christos case 80: {
589 1.17 christos const struct netbsd32_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).i32; /* netbsd32_gid_tp */
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 /* netbsd32_setpgid */
601 1.1 christos case 82: {
602 1.17 christos const struct netbsd32_setpgid_args *p = params;
603 1.1 christos iarg[0] = SCARG(p, pid); /* int */
604 1.1 christos iarg[1] = SCARG(p, pgid); /* int */
605 1.1 christos *n_args = 2;
606 1.1 christos break;
607 1.1 christos }
608 1.1 christos /* netbsd32_setitimer */
609 1.1 christos case 83: {
610 1.17 christos const struct compat_50_netbsd32_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).i32; /* netbsd32_itimerval50p_t */
613 1.1 christos uarg[2] = (intptr_t) SCARG(p, oitv).i32; /* netbsd32_itimerval50p_t */
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 /* netbsd32_oswapon */
623 1.1 christos case 85: {
624 1.17 christos const struct compat_12_netbsd32_oswapon_args *p = params;
625 1.1 christos uarg[0] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
626 1.1 christos *n_args = 1;
627 1.1 christos break;
628 1.1 christos }
629 1.1 christos /* netbsd32_getitimer */
630 1.1 christos case 86: {
631 1.17 christos const struct compat_50_netbsd32_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).i32; /* netbsd32_itimerval50p_t */
634 1.1 christos *n_args = 2;
635 1.1 christos break;
636 1.1 christos }
637 1.1 christos /* netbsd32_ogethostname */
638 1.1 christos case 87: {
639 1.17 christos const struct compat_43_netbsd32_ogethostname_args *p = params;
640 1.1 christos uarg[0] = (intptr_t) SCARG(p, hostname).i32; /* netbsd32_charp */
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 /* netbsd32_osethostname */
646 1.1 christos case 88: {
647 1.17 christos const struct compat_43_netbsd32_osethostname_args *p = params;
648 1.1 christos uarg[0] = (intptr_t) SCARG(p, hostname).i32; /* netbsd32_charp */
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 /* netbsd32_dup2 */
659 1.1 christos case 90: {
660 1.17 christos const struct netbsd32_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 /* netbsd32_fcntl */
667 1.1 christos case 92: {
668 1.17 christos const struct netbsd32_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).i32; /* netbsd32_voidp */
672 1.1 christos *n_args = 3;
673 1.1 christos break;
674 1.1 christos }
675 1.1 christos /* netbsd32_select */
676 1.1 christos case 93: {
677 1.17 christos const struct compat_50_netbsd32_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).i32; /* netbsd32_fd_setp_t */
680 1.1 christos uarg[2] = (intptr_t) SCARG(p, ou).i32; /* netbsd32_fd_setp_t */
681 1.1 christos uarg[3] = (intptr_t) SCARG(p, ex).i32; /* netbsd32_fd_setp_t */
682 1.1 christos uarg[4] = (intptr_t) SCARG(p, tv).i32; /* netbsd32_timeval50p_t */
683 1.1 christos *n_args = 5;
684 1.1 christos break;
685 1.1 christos }
686 1.1 christos /* netbsd32_fsync */
687 1.1 christos case 95: {
688 1.17 christos const struct netbsd32_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 /* netbsd32_setpriority */
694 1.1 christos case 96: {
695 1.17 christos const struct netbsd32_setpriority_args *p = params;
696 1.1 christos iarg[0] = SCARG(p, which); /* int */
697 1.1 christos iarg[1] = SCARG(p, who); /* int */
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 /* netbsd32_socket */
703 1.1 christos case 97: {
704 1.17 christos const struct compat_30_netbsd32_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 /* netbsd32_connect */
712 1.1 christos case 98: {
713 1.17 christos const struct netbsd32_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).i32; /* netbsd32_sockaddrp_t */
716 1.1 christos iarg[2] = SCARG(p, namelen); /* int */
717 1.1 christos *n_args = 3;
718 1.1 christos break;
719 1.1 christos }
720 1.1 christos /* netbsd32_oaccept */
721 1.1 christos case 99: {
722 1.17 christos const struct compat_43_netbsd32_oaccept_args *p = params;
723 1.1 christos iarg[0] = SCARG(p, s); /* int */
724 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_voidp */
725 1.1 christos uarg[2] = (intptr_t) SCARG(p, anamelen).i32; /* netbsd32_intp */
726 1.1 christos *n_args = 3;
727 1.1 christos break;
728 1.1 christos }
729 1.1 christos /* netbsd32_getpriority */
730 1.1 christos case 100: {
731 1.17 christos const struct netbsd32_getpriority_args *p = params;
732 1.1 christos iarg[0] = SCARG(p, which); /* int */
733 1.1 christos iarg[1] = SCARG(p, who); /* int */
734 1.1 christos *n_args = 2;
735 1.1 christos break;
736 1.1 christos }
737 1.1 christos /* netbsd32_osend */
738 1.1 christos case 101: {
739 1.17 christos const struct compat_43_netbsd32_osend_args *p = params;
740 1.1 christos iarg[0] = SCARG(p, s); /* int */
741 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_voidp */
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 /* netbsd32_orecv */
748 1.1 christos case 102: {
749 1.17 christos const struct compat_43_netbsd32_orecv_args *p = params;
750 1.1 christos iarg[0] = SCARG(p, s); /* int */
751 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_voidp */
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 /* netbsd32_sigreturn */
758 1.1 christos case 103: {
759 1.17 christos const struct compat_13_netbsd32_sigreturn_args *p = params;
760 1.1 christos uarg[0] = (intptr_t) SCARG(p, sigcntxp).i32; /* netbsd32_sigcontextp_t */
761 1.1 christos *n_args = 1;
762 1.1 christos break;
763 1.1 christos }
764 1.1 christos /* netbsd32_bind */
765 1.1 christos case 104: {
766 1.17 christos const struct netbsd32_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).i32; /* netbsd32_sockaddrp_t */
769 1.1 christos iarg[2] = SCARG(p, namelen); /* int */
770 1.1 christos *n_args = 3;
771 1.1 christos break;
772 1.1 christos }
773 1.1 christos /* netbsd32_setsockopt */
774 1.1 christos case 105: {
775 1.17 christos const struct netbsd32_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).i32; /* netbsd32_voidp */
780 1.1 christos iarg[4] = SCARG(p, valsize); /* int */
781 1.1 christos *n_args = 5;
782 1.1 christos break;
783 1.1 christos }
784 1.1 christos /* netbsd32_listen */
785 1.1 christos case 106: {
786 1.17 christos const struct netbsd32_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 /* netbsd32_osigvec */
793 1.1 christos case 108: {
794 1.17 christos const struct compat_43_netbsd32_osigvec_args *p = params;
795 1.1 christos iarg[0] = SCARG(p, signum); /* int */
796 1.1 christos uarg[1] = (intptr_t) SCARG(p, nsv).i32; /* netbsd32_sigvecp_t */
797 1.1 christos uarg[2] = (intptr_t) SCARG(p, osv).i32; /* netbsd32_sigvecp_t */
798 1.1 christos *n_args = 3;
799 1.1 christos break;
800 1.1 christos }
801 1.1 christos /* netbsd32_sigblock */
802 1.1 christos case 109: {
803 1.17 christos const struct compat_43_netbsd32_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 /* netbsd32_sigsetmask */
809 1.1 christos case 110: {
810 1.17 christos const struct compat_43_netbsd32_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 /* netbsd32_sigsuspend */
816 1.1 christos case 111: {
817 1.17 christos const struct compat_13_netbsd32_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 /* netbsd32_osigstack */
823 1.1 christos case 112: {
824 1.17 christos const struct compat_43_netbsd32_osigstack_args *p = params;
825 1.1 christos uarg[0] = (intptr_t) SCARG(p, nss).i32; /* netbsd32_sigstackp_t */
826 1.1 christos uarg[1] = (intptr_t) SCARG(p, oss).i32; /* netbsd32_sigstackp_t */
827 1.1 christos *n_args = 2;
828 1.1 christos break;
829 1.1 christos }
830 1.1 christos /* netbsd32_orecvmsg */
831 1.1 christos case 113: {
832 1.17 christos const struct compat_43_netbsd32_orecvmsg_args *p = params;
833 1.1 christos iarg[0] = SCARG(p, s); /* int */
834 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg).i32; /* netbsd32_omsghdrp_t */
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 /* netbsd32_osendmsg */
840 1.1 christos case 114: {
841 1.17 christos const struct compat_43_netbsd32_osendmsg_args *p = params;
842 1.1 christos iarg[0] = SCARG(p, s); /* int */
843 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg).i32; /* netbsd32_voidp */
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 /* netbsd32_gettimeofday */
849 1.1 christos case 116: {
850 1.17 christos const struct compat_50_netbsd32_gettimeofday_args *p = params;
851 1.1 christos uarg[0] = (intptr_t) SCARG(p, tp).i32; /* netbsd32_timeval50p_t */
852 1.1 christos uarg[1] = (intptr_t) SCARG(p, tzp).i32; /* netbsd32_timezonep_t */
853 1.1 christos *n_args = 2;
854 1.1 christos break;
855 1.1 christos }
856 1.1 christos /* netbsd32_getrusage */
857 1.1 christos case 117: {
858 1.17 christos const struct compat_50_netbsd32_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).i32; /* netbsd32_rusage50p_t */
861 1.1 christos *n_args = 2;
862 1.1 christos break;
863 1.1 christos }
864 1.1 christos /* netbsd32_getsockopt */
865 1.1 christos case 118: {
866 1.17 christos const struct netbsd32_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).i32; /* netbsd32_voidp */
871 1.1 christos uarg[4] = (intptr_t) SCARG(p, avalsize).i32; /* netbsd32_intp */
872 1.1 christos *n_args = 5;
873 1.1 christos break;
874 1.1 christos }
875 1.1 christos /* netbsd32_readv */
876 1.1 christos case 120: {
877 1.17 christos const struct netbsd32_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).i32; /* netbsd32_iovecp_t */
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 /* netbsd32_writev */
885 1.1 christos case 121: {
886 1.17 christos const struct netbsd32_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).i32; /* netbsd32_iovecp_t */
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 /* netbsd32_settimeofday */
894 1.1 christos case 122: {
895 1.17 christos const struct compat_50_netbsd32_settimeofday_args *p = params;
896 1.1 christos uarg[0] = (intptr_t) SCARG(p, tv).i32; /* netbsd32_timeval50p_t */
897 1.1 christos uarg[1] = (intptr_t) SCARG(p, tzp).i32; /* netbsd32_timezonep_t */
898 1.1 christos *n_args = 2;
899 1.1 christos break;
900 1.1 christos }
901 1.1 christos /* netbsd32_fchown */
902 1.1 christos case 123: {
903 1.17 christos const struct netbsd32_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 /* netbsd32_fchmod */
911 1.1 christos case 124: {
912 1.17 christos const struct netbsd32_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 /* netbsd32_orecvfrom */
919 1.1 christos case 125: {
920 1.17 christos const struct compat_43_netbsd32_orecvfrom_args *p = params;
921 1.1 christos iarg[0] = SCARG(p, s); /* int */
922 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_voidp */
923 1.1 christos iarg[2] = SCARG(p, len); /* netbsd32_size_t */
924 1.1 christos iarg[3] = SCARG(p, flags); /* int */
925 1.1 christos uarg[4] = (intptr_t) SCARG(p, from).i32; /* netbsd32_voidp */
926 1.1 christos uarg[5] = (intptr_t) SCARG(p, fromlenaddr).i32; /* netbsd32_intp */
927 1.1 christos *n_args = 6;
928 1.1 christos break;
929 1.1 christos }
930 1.1 christos /* netbsd32_setreuid */
931 1.1 christos case 126: {
932 1.17 christos const struct netbsd32_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 /* netbsd32_setregid */
939 1.1 christos case 127: {
940 1.17 christos const struct netbsd32_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 /* netbsd32_rename */
947 1.1 christos case 128: {
948 1.17 christos const struct netbsd32_rename_args *p = params;
949 1.1 christos uarg[0] = (intptr_t) SCARG(p, from).i32; /* netbsd32_charp */
950 1.1 christos uarg[1] = (intptr_t) SCARG(p, to).i32; /* netbsd32_charp */
951 1.1 christos *n_args = 2;
952 1.1 christos break;
953 1.1 christos }
954 1.1 christos /* netbsd32_otruncate */
955 1.1 christos case 129: {
956 1.17 christos const struct compat_43_netbsd32_otruncate_args *p = params;
957 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
958 1.1 christos iarg[1] = SCARG(p, length); /* netbsd32_long */
959 1.1 christos *n_args = 2;
960 1.1 christos break;
961 1.1 christos }
962 1.1 christos /* netbsd32_oftruncate */
963 1.1 christos case 130: {
964 1.17 christos const struct compat_43_netbsd32_oftruncate_args *p = params;
965 1.1 christos iarg[0] = SCARG(p, fd); /* int */
966 1.1 christos iarg[1] = SCARG(p, length); /* netbsd32_long */
967 1.1 christos *n_args = 2;
968 1.1 christos break;
969 1.1 christos }
970 1.1 christos /* netbsd32_flock */
971 1.1 christos case 131: {
972 1.17 christos const struct netbsd32_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 /* netbsd32_mkfifo */
979 1.1 christos case 132: {
980 1.17 christos const struct netbsd32_mkfifo_args *p = params;
981 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
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 /* netbsd32_sendto */
987 1.1 christos case 133: {
988 1.17 christos const struct netbsd32_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).i32; /* netbsd32_voidp */
991 1.1 christos iarg[2] = SCARG(p, len); /* netbsd32_size_t */
992 1.1 christos iarg[3] = SCARG(p, flags); /* int */
993 1.1 christos uarg[4] = (intptr_t) SCARG(p, to).i32; /* netbsd32_sockaddrp_t */
994 1.1 christos iarg[5] = SCARG(p, tolen); /* int */
995 1.1 christos *n_args = 6;
996 1.1 christos break;
997 1.1 christos }
998 1.1 christos /* netbsd32_shutdown */
999 1.1 christos case 134: {
1000 1.17 christos const struct netbsd32_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 /* netbsd32_socketpair */
1007 1.1 christos case 135: {
1008 1.17 christos const struct netbsd32_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).i32; /* netbsd32_intp */
1013 1.1 christos *n_args = 4;
1014 1.1 christos break;
1015 1.1 christos }
1016 1.1 christos /* netbsd32_mkdir */
1017 1.1 christos case 136: {
1018 1.17 christos const struct netbsd32_mkdir_args *p = params;
1019 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
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 /* netbsd32_rmdir */
1025 1.1 christos case 137: {
1026 1.17 christos const struct netbsd32_rmdir_args *p = params;
1027 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1028 1.1 christos *n_args = 1;
1029 1.1 christos break;
1030 1.1 christos }
1031 1.1 christos /* netbsd32_utimes */
1032 1.1 christos case 138: {
1033 1.17 christos const struct compat_50_netbsd32_utimes_args *p = params;
1034 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1035 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr).i32; /* netbsd32_timeval50p_t */
1036 1.1 christos *n_args = 2;
1037 1.1 christos break;
1038 1.1 christos }
1039 1.1 christos /* netbsd32_adjtime */
1040 1.1 christos case 140: {
1041 1.17 christos const struct compat_50_netbsd32_adjtime_args *p = params;
1042 1.1 christos uarg[0] = (intptr_t) SCARG(p, delta).i32; /* netbsd32_timeval50p_t */
1043 1.1 christos uarg[1] = (intptr_t) SCARG(p, olddelta).i32; /* netbsd32_timeval50p_t */
1044 1.1 christos *n_args = 2;
1045 1.1 christos break;
1046 1.1 christos }
1047 1.1 christos /* netbsd32_ogetpeername */
1048 1.1 christos case 141: {
1049 1.17 christos const struct compat_43_netbsd32_ogetpeername_args *p = params;
1050 1.1 christos iarg[0] = SCARG(p, fdes); /* int */
1051 1.1 christos uarg[1] = (intptr_t) SCARG(p, asa).i32; /* netbsd32_voidp */
1052 1.1 christos uarg[2] = (intptr_t) SCARG(p, alen).i32; /* netbsd32_intp */
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 /* netbsd32_sethostid */
1062 1.1 christos case 143: {
1063 1.17 christos const struct compat_43_netbsd32_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 /* netbsd32_ogetrlimit */
1069 1.1 christos case 144: {
1070 1.17 christos const struct compat_43_netbsd32_ogetrlimit_args *p = params;
1071 1.1 christos iarg[0] = SCARG(p, which); /* int */
1072 1.1 christos uarg[1] = (intptr_t) SCARG(p, rlp).i32; /* netbsd32_orlimitp_t */
1073 1.1 christos *n_args = 2;
1074 1.1 christos break;
1075 1.1 christos }
1076 1.1 christos /* netbsd32_osetrlimit */
1077 1.1 christos case 145: {
1078 1.17 christos const struct compat_43_netbsd32_osetrlimit_args *p = params;
1079 1.1 christos iarg[0] = SCARG(p, which); /* int */
1080 1.1 christos uarg[1] = (intptr_t) SCARG(p, rlp).i32; /* netbsd32_orlimitp_t */
1081 1.1 christos *n_args = 2;
1082 1.1 christos break;
1083 1.1 christos }
1084 1.1 christos /* netbsd32_killpg */
1085 1.1 christos case 146: {
1086 1.17 christos const struct compat_43_netbsd32_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 /* netbsd32_quotactl */
1098 1.1 christos case 148: {
1099 1.17 christos const struct compat_50_netbsd32_quotactl_args *p = params;
1100 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
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).i32; /* netbsd32_voidp */
1104 1.1 christos *n_args = 4;
1105 1.1 christos break;
1106 1.1 christos }
1107 1.1 christos /* netbsd32_ogetsockname */
1108 1.1 christos case 150: {
1109 1.17 christos const struct compat_43_netbsd32_ogetsockname_args *p = params;
1110 1.1 christos iarg[0] = SCARG(p, fdec); /* int */
1111 1.1 christos uarg[1] = (intptr_t) SCARG(p, asa).i32; /* netbsd32_voidp */
1112 1.1 christos uarg[2] = (intptr_t) SCARG(p, alen).i32; /* netbsd32_intp */
1113 1.1 christos *n_args = 3;
1114 1.1 christos break;
1115 1.1 christos }
1116 1.6 mrg /* netbsd32_nfssvc */
1117 1.6 mrg case 155: {
1118 1.17 christos const struct netbsd32_nfssvc_args *p = params;
1119 1.6 mrg iarg[0] = SCARG(p, flag); /* int */
1120 1.6 mrg uarg[1] = (intptr_t) SCARG(p, argp).i32; /* netbsd32_voidp */
1121 1.6 mrg *n_args = 2;
1122 1.6 mrg break;
1123 1.6 mrg }
1124 1.1 christos /* netbsd32_ogetdirentries */
1125 1.1 christos case 156: {
1126 1.17 christos const struct compat_43_netbsd32_ogetdirentries_args *p = params;
1127 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1128 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_charp */
1129 1.1 christos uarg[2] = SCARG(p, count); /* u_int */
1130 1.1 christos uarg[3] = (intptr_t) SCARG(p, basep).i32; /* netbsd32_longp */
1131 1.1 christos *n_args = 4;
1132 1.1 christos break;
1133 1.1 christos }
1134 1.1 christos /* netbsd32_statfs */
1135 1.1 christos case 157: {
1136 1.17 christos const struct compat_20_netbsd32_statfs_args *p = params;
1137 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1138 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statfsp_t */
1139 1.1 christos *n_args = 2;
1140 1.1 christos break;
1141 1.1 christos }
1142 1.1 christos /* netbsd32_fstatfs */
1143 1.1 christos case 158: {
1144 1.17 christos const struct compat_20_netbsd32_fstatfs_args *p = params;
1145 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1146 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statfsp_t */
1147 1.1 christos *n_args = 2;
1148 1.1 christos break;
1149 1.1 christos }
1150 1.1 christos /* netbsd32_getfh */
1151 1.1 christos case 161: {
1152 1.17 christos const struct compat_30_netbsd32_getfh_args *p = params;
1153 1.1 christos uarg[0] = (intptr_t) SCARG(p, fname).i32; /* netbsd32_charp */
1154 1.1 christos uarg[1] = (intptr_t) SCARG(p, fhp).i32; /* netbsd32_compat_30_fhandlep_t */
1155 1.1 christos *n_args = 2;
1156 1.1 christos break;
1157 1.1 christos }
1158 1.1 christos /* netbsd32_ogetdomainname */
1159 1.1 christos case 162: {
1160 1.17 christos const struct compat_09_netbsd32_ogetdomainname_args *p = params;
1161 1.1 christos uarg[0] = (intptr_t) SCARG(p, domainname).i32; /* netbsd32_charp */
1162 1.1 christos iarg[1] = SCARG(p, len); /* int */
1163 1.1 christos *n_args = 2;
1164 1.1 christos break;
1165 1.1 christos }
1166 1.1 christos /* netbsd32_osetdomainname */
1167 1.1 christos case 163: {
1168 1.17 christos const struct compat_09_netbsd32_osetdomainname_args *p = params;
1169 1.1 christos uarg[0] = (intptr_t) SCARG(p, domainname).i32; /* netbsd32_charp */
1170 1.1 christos iarg[1] = SCARG(p, len); /* int */
1171 1.1 christos *n_args = 2;
1172 1.1 christos break;
1173 1.1 christos }
1174 1.1 christos /* netbsd32_uname */
1175 1.1 christos case 164: {
1176 1.17 christos const struct compat_09_netbsd32_uname_args *p = params;
1177 1.1 christos uarg[0] = (intptr_t) SCARG(p, name).i32; /* netbsd32_outsnamep_t */
1178 1.1 christos *n_args = 1;
1179 1.1 christos break;
1180 1.1 christos }
1181 1.1 christos /* netbsd32_sysarch */
1182 1.1 christos case 165: {
1183 1.17 christos const struct netbsd32_sysarch_args *p = params;
1184 1.1 christos iarg[0] = SCARG(p, op); /* int */
1185 1.1 christos uarg[1] = (intptr_t) SCARG(p, parms).i32; /* netbsd32_voidp */
1186 1.1 christos *n_args = 2;
1187 1.1 christos break;
1188 1.1 christos }
1189 1.43 thorpej /* netbsd32___futex */
1190 1.43 thorpej case 166: {
1191 1.43 thorpej const struct netbsd32___futex_args *p = params;
1192 1.43 thorpej uarg[0] = (intptr_t) SCARG(p, uaddr).i32; /* netbsd32_intp */
1193 1.43 thorpej iarg[1] = SCARG(p, op); /* int */
1194 1.43 thorpej iarg[2] = SCARG(p, val); /* int */
1195 1.43 thorpej uarg[3] = (intptr_t) SCARG(p, timeout).i32; /* const netbsd32_timespecp_t */
1196 1.43 thorpej uarg[4] = (intptr_t) SCARG(p, uaddr2).i32; /* netbsd32_intp */
1197 1.43 thorpej iarg[5] = SCARG(p, val2); /* int */
1198 1.43 thorpej iarg[6] = SCARG(p, val3); /* int */
1199 1.43 thorpej *n_args = 7;
1200 1.43 thorpej break;
1201 1.43 thorpej }
1202 1.43 thorpej /* netbsd32___futex_set_robust_list */
1203 1.43 thorpej case 167: {
1204 1.43 thorpej const struct netbsd32___futex_set_robust_list_args *p = params;
1205 1.43 thorpej uarg[0] = (intptr_t) SCARG(p, head).i32; /* netbsd32_voidp */
1206 1.43 thorpej iarg[1] = SCARG(p, len); /* netbsd32_size_t */
1207 1.43 thorpej *n_args = 2;
1208 1.43 thorpej break;
1209 1.43 thorpej }
1210 1.43 thorpej /* netbsd32___futex_get_robust_list */
1211 1.43 thorpej case 168: {
1212 1.43 thorpej const struct netbsd32___futex_get_robust_list_args *p = params;
1213 1.43 thorpej iarg[0] = SCARG(p, lwpid); /* lwpid_t */
1214 1.43 thorpej uarg[1] = (intptr_t) SCARG(p, headp).i32; /* netbsd32_voidp */
1215 1.43 thorpej uarg[2] = (intptr_t) SCARG(p, lenp).i32; /* netbsd32_size_tp */
1216 1.43 thorpej *n_args = 3;
1217 1.43 thorpej break;
1218 1.43 thorpej }
1219 1.1 christos /* netbsd32_semsys */
1220 1.1 christos case 169: {
1221 1.17 christos const struct compat_10_netbsd32_semsys_args *p = params;
1222 1.1 christos iarg[0] = SCARG(p, which); /* int */
1223 1.1 christos iarg[1] = SCARG(p, a2); /* int */
1224 1.1 christos iarg[2] = SCARG(p, a3); /* int */
1225 1.1 christos iarg[3] = SCARG(p, a4); /* int */
1226 1.1 christos iarg[4] = SCARG(p, a5); /* int */
1227 1.1 christos *n_args = 5;
1228 1.1 christos break;
1229 1.1 christos }
1230 1.1 christos /* netbsd32_msgsys */
1231 1.1 christos case 170: {
1232 1.17 christos const struct compat_10_netbsd32_msgsys_args *p = params;
1233 1.1 christos iarg[0] = SCARG(p, which); /* int */
1234 1.1 christos iarg[1] = SCARG(p, a2); /* int */
1235 1.1 christos iarg[2] = SCARG(p, a3); /* int */
1236 1.1 christos iarg[3] = SCARG(p, a4); /* int */
1237 1.1 christos iarg[4] = SCARG(p, a5); /* int */
1238 1.1 christos iarg[5] = SCARG(p, a6); /* int */
1239 1.1 christos *n_args = 6;
1240 1.1 christos break;
1241 1.1 christos }
1242 1.1 christos /* netbsd32_shmsys */
1243 1.1 christos case 171: {
1244 1.17 christos const struct compat_10_netbsd32_shmsys_args *p = params;
1245 1.1 christos iarg[0] = SCARG(p, which); /* int */
1246 1.1 christos iarg[1] = SCARG(p, a2); /* int */
1247 1.1 christos iarg[2] = SCARG(p, a3); /* int */
1248 1.1 christos iarg[3] = SCARG(p, a4); /* int */
1249 1.1 christos *n_args = 4;
1250 1.1 christos break;
1251 1.1 christos }
1252 1.1 christos /* netbsd32_pread */
1253 1.1 christos case 173: {
1254 1.17 christos const struct netbsd32_pread_args *p = params;
1255 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1256 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_voidp */
1257 1.1 christos iarg[2] = SCARG(p, nbyte); /* netbsd32_size_t */
1258 1.1 christos iarg[3] = SCARG(p, PAD); /* int */
1259 1.1 christos iarg[4] = SCARG(p, offset); /* netbsd32_off_t */
1260 1.1 christos *n_args = 5;
1261 1.1 christos break;
1262 1.1 christos }
1263 1.1 christos /* netbsd32_pwrite */
1264 1.1 christos case 174: {
1265 1.17 christos const struct netbsd32_pwrite_args *p = params;
1266 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1267 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_voidp */
1268 1.1 christos iarg[2] = SCARG(p, nbyte); /* netbsd32_size_t */
1269 1.1 christos iarg[3] = SCARG(p, PAD); /* int */
1270 1.1 christos iarg[4] = SCARG(p, offset); /* netbsd32_off_t */
1271 1.1 christos *n_args = 5;
1272 1.1 christos break;
1273 1.1 christos }
1274 1.1 christos /* netbsd32_ntp_gettime */
1275 1.1 christos case 175: {
1276 1.17 christos const struct compat_30_netbsd32_ntp_gettime_args *p = params;
1277 1.1 christos uarg[0] = (intptr_t) SCARG(p, ntvp).i32; /* netbsd32_ntptimeval50p_t */
1278 1.1 christos *n_args = 1;
1279 1.1 christos break;
1280 1.1 christos }
1281 1.30 pgoyette #if defined(NTP) || !defined(_KERNEL_OPT)
1282 1.1 christos /* netbsd32_ntp_adjtime */
1283 1.1 christos case 176: {
1284 1.17 christos const struct netbsd32_ntp_adjtime_args *p = params;
1285 1.1 christos uarg[0] = (intptr_t) SCARG(p, tp).i32; /* netbsd32_timexp_t */
1286 1.1 christos *n_args = 1;
1287 1.1 christos break;
1288 1.1 christos }
1289 1.1 christos #else
1290 1.1 christos #endif
1291 1.1 christos /* netbsd32_setgid */
1292 1.1 christos case 181: {
1293 1.17 christos const struct netbsd32_setgid_args *p = params;
1294 1.1 christos iarg[0] = SCARG(p, gid); /* gid_t */
1295 1.1 christos *n_args = 1;
1296 1.1 christos break;
1297 1.1 christos }
1298 1.1 christos /* netbsd32_setegid */
1299 1.1 christos case 182: {
1300 1.17 christos const struct netbsd32_setegid_args *p = params;
1301 1.1 christos iarg[0] = SCARG(p, egid); /* gid_t */
1302 1.1 christos *n_args = 1;
1303 1.1 christos break;
1304 1.1 christos }
1305 1.1 christos /* netbsd32_seteuid */
1306 1.1 christos case 183: {
1307 1.17 christos const struct netbsd32_seteuid_args *p = params;
1308 1.1 christos uarg[0] = SCARG(p, euid); /* uid_t */
1309 1.1 christos *n_args = 1;
1310 1.1 christos break;
1311 1.1 christos }
1312 1.1 christos /* netbsd32_stat12 */
1313 1.1 christos case 188: {
1314 1.17 christos const struct compat_12_netbsd32_stat12_args *p = params;
1315 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1316 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub).i32; /* netbsd32_stat12p_t */
1317 1.1 christos *n_args = 2;
1318 1.1 christos break;
1319 1.1 christos }
1320 1.1 christos /* netbsd32_fstat12 */
1321 1.1 christos case 189: {
1322 1.17 christos const struct compat_12_netbsd32_fstat12_args *p = params;
1323 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1324 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb).i32; /* netbsd32_stat12p_t */
1325 1.1 christos *n_args = 2;
1326 1.1 christos break;
1327 1.1 christos }
1328 1.1 christos /* netbsd32_lstat12 */
1329 1.1 christos case 190: {
1330 1.17 christos const struct compat_12_netbsd32_lstat12_args *p = params;
1331 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1332 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub).i32; /* netbsd32_stat12p_t */
1333 1.1 christos *n_args = 2;
1334 1.1 christos break;
1335 1.1 christos }
1336 1.1 christos /* netbsd32_pathconf */
1337 1.1 christos case 191: {
1338 1.17 christos const struct netbsd32_pathconf_args *p = params;
1339 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1340 1.1 christos iarg[1] = SCARG(p, name); /* int */
1341 1.1 christos *n_args = 2;
1342 1.1 christos break;
1343 1.1 christos }
1344 1.1 christos /* netbsd32_fpathconf */
1345 1.1 christos case 192: {
1346 1.17 christos const struct netbsd32_fpathconf_args *p = params;
1347 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1348 1.1 christos iarg[1] = SCARG(p, name); /* int */
1349 1.1 christos *n_args = 2;
1350 1.1 christos break;
1351 1.1 christos }
1352 1.26 rjs /* netbsd32_getsockopt2 */
1353 1.26 rjs case 193: {
1354 1.26 rjs const struct netbsd32_getsockopt2_args *p = params;
1355 1.26 rjs iarg[0] = SCARG(p, s); /* int */
1356 1.26 rjs iarg[1] = SCARG(p, level); /* int */
1357 1.26 rjs iarg[2] = SCARG(p, name); /* int */
1358 1.26 rjs uarg[3] = (intptr_t) SCARG(p, val).i32; /* netbsd32_voidp */
1359 1.26 rjs uarg[4] = (intptr_t) SCARG(p, avalsize).i32; /* netbsd32_intp */
1360 1.26 rjs *n_args = 5;
1361 1.26 rjs break;
1362 1.26 rjs }
1363 1.1 christos /* netbsd32_getrlimit */
1364 1.1 christos case 194: {
1365 1.17 christos const struct netbsd32_getrlimit_args *p = params;
1366 1.1 christos iarg[0] = SCARG(p, which); /* int */
1367 1.1 christos uarg[1] = (intptr_t) SCARG(p, rlp).i32; /* netbsd32_rlimitp_t */
1368 1.1 christos *n_args = 2;
1369 1.1 christos break;
1370 1.1 christos }
1371 1.1 christos /* netbsd32_setrlimit */
1372 1.1 christos case 195: {
1373 1.17 christos const struct netbsd32_setrlimit_args *p = params;
1374 1.1 christos iarg[0] = SCARG(p, which); /* int */
1375 1.1 christos uarg[1] = (intptr_t) SCARG(p, rlp).i32; /* netbsd32_rlimitp_t */
1376 1.1 christos *n_args = 2;
1377 1.1 christos break;
1378 1.1 christos }
1379 1.1 christos /* netbsd32_getdirentries */
1380 1.1 christos case 196: {
1381 1.17 christos const struct compat_12_netbsd32_getdirentries_args *p = params;
1382 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1383 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_charp */
1384 1.1 christos uarg[2] = SCARG(p, count); /* u_int */
1385 1.1 christos uarg[3] = (intptr_t) SCARG(p, basep).i32; /* netbsd32_longp */
1386 1.1 christos *n_args = 4;
1387 1.1 christos break;
1388 1.1 christos }
1389 1.1 christos /* netbsd32_mmap */
1390 1.1 christos case 197: {
1391 1.17 christos const struct netbsd32_mmap_args *p = params;
1392 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
1393 1.1 christos iarg[1] = SCARG(p, len); /* netbsd32_size_t */
1394 1.1 christos iarg[2] = SCARG(p, prot); /* int */
1395 1.1 christos iarg[3] = SCARG(p, flags); /* int */
1396 1.1 christos iarg[4] = SCARG(p, fd); /* int */
1397 1.1 christos iarg[5] = SCARG(p, PAD); /* netbsd32_long */
1398 1.1 christos iarg[6] = SCARG(p, pos); /* netbsd32_off_t */
1399 1.1 christos *n_args = 7;
1400 1.1 christos break;
1401 1.1 christos }
1402 1.1 christos /* netbsd32____syscall */
1403 1.1 christos case 198: {
1404 1.17 christos const struct netbsd32____syscall_args *p = params;
1405 1.1 christos iarg[0] = SCARG(p, code); /* quad_t */
1406 1.1 christos iarg[1] = SCARG(p, args[NETBSD32_SYS_MAXSYSARGS]); /* register32_t */
1407 1.1 christos *n_args = 2;
1408 1.1 christos break;
1409 1.1 christos }
1410 1.1 christos /* netbsd32_lseek */
1411 1.1 christos case 199: {
1412 1.17 christos const struct netbsd32_lseek_args *p = params;
1413 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1414 1.1 christos iarg[1] = SCARG(p, PAD); /* int */
1415 1.1 christos iarg[2] = SCARG(p, offset); /* netbsd32_off_t */
1416 1.1 christos iarg[3] = SCARG(p, whence); /* int */
1417 1.1 christos *n_args = 4;
1418 1.1 christos break;
1419 1.1 christos }
1420 1.1 christos /* netbsd32_truncate */
1421 1.1 christos case 200: {
1422 1.17 christos const struct netbsd32_truncate_args *p = params;
1423 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1424 1.1 christos iarg[1] = SCARG(p, PAD); /* int */
1425 1.1 christos iarg[2] = SCARG(p, length); /* netbsd32_off_t */
1426 1.1 christos *n_args = 3;
1427 1.1 christos break;
1428 1.1 christos }
1429 1.1 christos /* netbsd32_ftruncate */
1430 1.1 christos case 201: {
1431 1.17 christos const struct netbsd32_ftruncate_args *p = params;
1432 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1433 1.1 christos iarg[1] = SCARG(p, PAD); /* int */
1434 1.1 christos iarg[2] = SCARG(p, length); /* netbsd32_off_t */
1435 1.1 christos *n_args = 3;
1436 1.1 christos break;
1437 1.1 christos }
1438 1.1 christos /* netbsd32___sysctl */
1439 1.1 christos case 202: {
1440 1.17 christos const struct netbsd32___sysctl_args *p = params;
1441 1.1 christos uarg[0] = (intptr_t) SCARG(p, name).i32; /* netbsd32_intp */
1442 1.1 christos uarg[1] = SCARG(p, namelen); /* u_int */
1443 1.1 christos uarg[2] = (intptr_t) SCARG(p, oldv).i32; /* netbsd32_voidp */
1444 1.1 christos uarg[3] = (intptr_t) SCARG(p, oldlenp).i32; /* netbsd32_size_tp */
1445 1.1 christos uarg[4] = (intptr_t) SCARG(p, newv).i32; /* netbsd32_voidp */
1446 1.1 christos iarg[5] = SCARG(p, newlen); /* netbsd32_size_t */
1447 1.1 christos *n_args = 6;
1448 1.1 christos break;
1449 1.1 christos }
1450 1.1 christos /* netbsd32_mlock */
1451 1.1 christos case 203: {
1452 1.17 christos const struct netbsd32_mlock_args *p = params;
1453 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
1454 1.1 christos iarg[1] = SCARG(p, len); /* netbsd32_size_t */
1455 1.1 christos *n_args = 2;
1456 1.1 christos break;
1457 1.1 christos }
1458 1.1 christos /* netbsd32_munlock */
1459 1.1 christos case 204: {
1460 1.17 christos const struct netbsd32_munlock_args *p = params;
1461 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
1462 1.1 christos iarg[1] = SCARG(p, len); /* netbsd32_size_t */
1463 1.1 christos *n_args = 2;
1464 1.1 christos break;
1465 1.1 christos }
1466 1.1 christos /* netbsd32_undelete */
1467 1.1 christos case 205: {
1468 1.17 christos const struct netbsd32_undelete_args *p = params;
1469 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1470 1.1 christos *n_args = 1;
1471 1.1 christos break;
1472 1.1 christos }
1473 1.1 christos /* netbsd32_futimes */
1474 1.1 christos case 206: {
1475 1.17 christos const struct compat_50_netbsd32_futimes_args *p = params;
1476 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1477 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr).i32; /* netbsd32_timeval50p_t */
1478 1.1 christos *n_args = 2;
1479 1.1 christos break;
1480 1.1 christos }
1481 1.1 christos /* netbsd32_getpgid */
1482 1.1 christos case 207: {
1483 1.17 christos const struct netbsd32_getpgid_args *p = params;
1484 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
1485 1.1 christos *n_args = 1;
1486 1.1 christos break;
1487 1.1 christos }
1488 1.1 christos /* netbsd32_reboot */
1489 1.1 christos case 208: {
1490 1.17 christos const struct netbsd32_reboot_args *p = params;
1491 1.1 christos iarg[0] = SCARG(p, opt); /* int */
1492 1.1 christos uarg[1] = (intptr_t) SCARG(p, bootstr).i32; /* netbsd32_charp */
1493 1.1 christos *n_args = 2;
1494 1.1 christos break;
1495 1.1 christos }
1496 1.1 christos /* netbsd32_poll */
1497 1.1 christos case 209: {
1498 1.17 christos const struct netbsd32_poll_args *p = params;
1499 1.1 christos uarg[0] = (intptr_t) SCARG(p, fds).i32; /* netbsd32_pollfdp_t */
1500 1.1 christos uarg[1] = SCARG(p, nfds); /* u_int */
1501 1.1 christos iarg[2] = SCARG(p, timeout); /* int */
1502 1.1 christos *n_args = 3;
1503 1.1 christos break;
1504 1.1 christos }
1505 1.1 christos /* netbsd32___semctl */
1506 1.1 christos case 220: {
1507 1.17 christos const struct compat_14_netbsd32___semctl_args *p = params;
1508 1.1 christos iarg[0] = SCARG(p, semid); /* int */
1509 1.1 christos iarg[1] = SCARG(p, semnum); /* int */
1510 1.1 christos iarg[2] = SCARG(p, cmd); /* int */
1511 1.1 christos iarg[3] = SCARG(p, arg); /* netbsd32_semunu_t */
1512 1.1 christos *n_args = 4;
1513 1.1 christos break;
1514 1.1 christos }
1515 1.1 christos /* netbsd32_semget */
1516 1.1 christos case 221: {
1517 1.17 christos const struct netbsd32_semget_args *p = params;
1518 1.1 christos iarg[0] = SCARG(p, key); /* netbsd32_key_t */
1519 1.1 christos iarg[1] = SCARG(p, nsems); /* int */
1520 1.1 christos iarg[2] = SCARG(p, semflg); /* int */
1521 1.1 christos *n_args = 3;
1522 1.1 christos break;
1523 1.1 christos }
1524 1.1 christos /* netbsd32_semop */
1525 1.1 christos case 222: {
1526 1.17 christos const struct netbsd32_semop_args *p = params;
1527 1.1 christos iarg[0] = SCARG(p, semid); /* int */
1528 1.1 christos uarg[1] = (intptr_t) SCARG(p, sops).i32; /* netbsd32_sembufp_t */
1529 1.1 christos iarg[2] = SCARG(p, nsops); /* netbsd32_size_t */
1530 1.1 christos *n_args = 3;
1531 1.1 christos break;
1532 1.1 christos }
1533 1.1 christos /* netbsd32_semconfig */
1534 1.1 christos case 223: {
1535 1.17 christos const struct netbsd32_semconfig_args *p = params;
1536 1.1 christos iarg[0] = SCARG(p, flag); /* int */
1537 1.1 christos *n_args = 1;
1538 1.1 christos break;
1539 1.1 christos }
1540 1.1 christos /* netbsd32_msgctl */
1541 1.1 christos case 224: {
1542 1.17 christos const struct compat_14_netbsd32_msgctl_args *p = params;
1543 1.1 christos iarg[0] = SCARG(p, msqid); /* int */
1544 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
1545 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_msqid_ds14p_t */
1546 1.1 christos *n_args = 3;
1547 1.1 christos break;
1548 1.1 christos }
1549 1.1 christos /* netbsd32_msgget */
1550 1.1 christos case 225: {
1551 1.17 christos const struct netbsd32_msgget_args *p = params;
1552 1.1 christos iarg[0] = SCARG(p, key); /* netbsd32_key_t */
1553 1.1 christos iarg[1] = SCARG(p, msgflg); /* int */
1554 1.1 christos *n_args = 2;
1555 1.1 christos break;
1556 1.1 christos }
1557 1.1 christos /* netbsd32_msgsnd */
1558 1.1 christos case 226: {
1559 1.17 christos const struct netbsd32_msgsnd_args *p = params;
1560 1.1 christos iarg[0] = SCARG(p, msqid); /* int */
1561 1.1 christos uarg[1] = (intptr_t) SCARG(p, msgp).i32; /* netbsd32_voidp */
1562 1.1 christos iarg[2] = SCARG(p, msgsz); /* netbsd32_size_t */
1563 1.1 christos iarg[3] = SCARG(p, msgflg); /* int */
1564 1.1 christos *n_args = 4;
1565 1.1 christos break;
1566 1.1 christos }
1567 1.1 christos /* netbsd32_msgrcv */
1568 1.1 christos case 227: {
1569 1.17 christos const struct netbsd32_msgrcv_args *p = params;
1570 1.1 christos iarg[0] = SCARG(p, msqid); /* int */
1571 1.1 christos uarg[1] = (intptr_t) SCARG(p, msgp).i32; /* netbsd32_voidp */
1572 1.1 christos iarg[2] = SCARG(p, msgsz); /* netbsd32_size_t */
1573 1.1 christos iarg[3] = SCARG(p, msgtyp); /* netbsd32_long */
1574 1.1 christos iarg[4] = SCARG(p, msgflg); /* int */
1575 1.1 christos *n_args = 5;
1576 1.1 christos break;
1577 1.1 christos }
1578 1.1 christos /* netbsd32_shmat */
1579 1.1 christos case 228: {
1580 1.17 christos const struct netbsd32_shmat_args *p = params;
1581 1.1 christos iarg[0] = SCARG(p, shmid); /* int */
1582 1.1 christos uarg[1] = (intptr_t) SCARG(p, shmaddr).i32; /* netbsd32_voidp */
1583 1.1 christos iarg[2] = SCARG(p, shmflg); /* int */
1584 1.1 christos *n_args = 3;
1585 1.1 christos break;
1586 1.1 christos }
1587 1.1 christos /* netbsd32_shmctl */
1588 1.1 christos case 229: {
1589 1.17 christos const struct compat_14_netbsd32_shmctl_args *p = params;
1590 1.1 christos iarg[0] = SCARG(p, shmid); /* int */
1591 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
1592 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_shmid_dsp_t */
1593 1.1 christos *n_args = 3;
1594 1.1 christos break;
1595 1.1 christos }
1596 1.1 christos /* netbsd32_shmdt */
1597 1.1 christos case 230: {
1598 1.17 christos const struct netbsd32_shmdt_args *p = params;
1599 1.1 christos uarg[0] = (intptr_t) SCARG(p, shmaddr).i32; /* netbsd32_voidp */
1600 1.1 christos *n_args = 1;
1601 1.1 christos break;
1602 1.1 christos }
1603 1.1 christos /* netbsd32_shmget */
1604 1.1 christos case 231: {
1605 1.17 christos const struct netbsd32_shmget_args *p = params;
1606 1.1 christos iarg[0] = SCARG(p, key); /* netbsd32_key_t */
1607 1.1 christos iarg[1] = SCARG(p, size); /* netbsd32_size_t */
1608 1.1 christos iarg[2] = SCARG(p, shmflg); /* int */
1609 1.1 christos *n_args = 3;
1610 1.1 christos break;
1611 1.1 christos }
1612 1.1 christos /* netbsd32_clock_gettime */
1613 1.1 christos case 232: {
1614 1.17 christos const struct compat_50_netbsd32_clock_gettime_args *p = params;
1615 1.1 christos iarg[0] = SCARG(p, clock_id); /* netbsd32_clockid_t */
1616 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp).i32; /* netbsd32_timespec50p_t */
1617 1.1 christos *n_args = 2;
1618 1.1 christos break;
1619 1.1 christos }
1620 1.1 christos /* netbsd32_clock_settime */
1621 1.1 christos case 233: {
1622 1.17 christos const struct compat_50_netbsd32_clock_settime_args *p = params;
1623 1.1 christos iarg[0] = SCARG(p, clock_id); /* netbsd32_clockid_t */
1624 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp).i32; /* netbsd32_timespec50p_t */
1625 1.1 christos *n_args = 2;
1626 1.1 christos break;
1627 1.1 christos }
1628 1.1 christos /* netbsd32_clock_getres */
1629 1.1 christos case 234: {
1630 1.17 christos const struct compat_50_netbsd32_clock_getres_args *p = params;
1631 1.1 christos iarg[0] = SCARG(p, clock_id); /* netbsd32_clockid_t */
1632 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp).i32; /* netbsd32_timespec50p_t */
1633 1.1 christos *n_args = 2;
1634 1.1 christos break;
1635 1.1 christos }
1636 1.1 christos /* netbsd32_timer_create */
1637 1.1 christos case 235: {
1638 1.17 christos const struct netbsd32_timer_create_args *p = params;
1639 1.1 christos iarg[0] = SCARG(p, clock_id); /* netbsd32_clockid_t */
1640 1.1 christos uarg[1] = (intptr_t) SCARG(p, evp).i32; /* netbsd32_sigeventp_t */
1641 1.1 christos uarg[2] = (intptr_t) SCARG(p, timerid).i32; /* netbsd32_timerp_t */
1642 1.1 christos *n_args = 3;
1643 1.1 christos break;
1644 1.1 christos }
1645 1.1 christos /* netbsd32_timer_delete */
1646 1.1 christos case 236: {
1647 1.17 christos const struct netbsd32_timer_delete_args *p = params;
1648 1.1 christos iarg[0] = SCARG(p, timerid); /* netbsd32_timer_t */
1649 1.1 christos *n_args = 1;
1650 1.1 christos break;
1651 1.1 christos }
1652 1.1 christos /* netbsd32_timer_settime */
1653 1.1 christos case 237: {
1654 1.17 christos const struct compat_50_netbsd32_timer_settime_args *p = params;
1655 1.1 christos iarg[0] = SCARG(p, timerid); /* netbsd32_timer_t */
1656 1.1 christos iarg[1] = SCARG(p, flags); /* int */
1657 1.1 christos uarg[2] = (intptr_t) SCARG(p, value).i32; /* netbsd32_itimerspec50p_t */
1658 1.1 christos uarg[3] = (intptr_t) SCARG(p, ovalue).i32; /* netbsd32_itimerspec50p_t */
1659 1.1 christos *n_args = 4;
1660 1.1 christos break;
1661 1.1 christos }
1662 1.1 christos /* netbsd32_timer_gettime */
1663 1.1 christos case 238: {
1664 1.17 christos const struct compat_50_netbsd32_timer_gettime_args *p = params;
1665 1.1 christos iarg[0] = SCARG(p, timerid); /* netbsd32_timer_t */
1666 1.1 christos uarg[1] = (intptr_t) SCARG(p, value).i32; /* netbsd32_itimerspec50p_t */
1667 1.1 christos *n_args = 2;
1668 1.1 christos break;
1669 1.1 christos }
1670 1.1 christos /* netbsd32_timer_getoverrun */
1671 1.1 christos case 239: {
1672 1.17 christos const struct netbsd32_timer_getoverrun_args *p = params;
1673 1.1 christos iarg[0] = SCARG(p, timerid); /* netbsd32_timer_t */
1674 1.1 christos *n_args = 1;
1675 1.1 christos break;
1676 1.1 christos }
1677 1.1 christos /* netbsd32_nanosleep */
1678 1.1 christos case 240: {
1679 1.17 christos const struct compat_50_netbsd32_nanosleep_args *p = params;
1680 1.1 christos uarg[0] = (intptr_t) SCARG(p, rqtp).i32; /* netbsd32_timespec50p_t */
1681 1.1 christos uarg[1] = (intptr_t) SCARG(p, rmtp).i32; /* netbsd32_timespec50p_t */
1682 1.1 christos *n_args = 2;
1683 1.1 christos break;
1684 1.1 christos }
1685 1.1 christos /* netbsd32_fdatasync */
1686 1.1 christos case 241: {
1687 1.17 christos const struct netbsd32_fdatasync_args *p = params;
1688 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1689 1.1 christos *n_args = 1;
1690 1.1 christos break;
1691 1.1 christos }
1692 1.1 christos /* netbsd32_mlockall */
1693 1.1 christos case 242: {
1694 1.17 christos const struct netbsd32_mlockall_args *p = params;
1695 1.1 christos iarg[0] = SCARG(p, flags); /* int */
1696 1.1 christos *n_args = 1;
1697 1.1 christos break;
1698 1.1 christos }
1699 1.1 christos /* sys_munlockall */
1700 1.1 christos case 243: {
1701 1.1 christos *n_args = 0;
1702 1.1 christos break;
1703 1.1 christos }
1704 1.1 christos /* netbsd32___sigtimedwait */
1705 1.1 christos case 244: {
1706 1.17 christos const struct compat_50_netbsd32___sigtimedwait_args *p = params;
1707 1.1 christos uarg[0] = (intptr_t) SCARG(p, set).i32; /* netbsd32_sigsetp_t */
1708 1.1 christos uarg[1] = (intptr_t) SCARG(p, info).i32; /* netbsd32_siginfop_t */
1709 1.1 christos uarg[2] = (intptr_t) SCARG(p, timeout).i32; /* netbsd32_timespec50p_t */
1710 1.1 christos *n_args = 3;
1711 1.1 christos break;
1712 1.1 christos }
1713 1.3 martin /* netbsd32_sigqueueinfo */
1714 1.3 martin case 245: {
1715 1.17 christos const struct netbsd32_sigqueueinfo_args *p = params;
1716 1.3 martin iarg[0] = SCARG(p, pid); /* pid_t */
1717 1.3 martin uarg[1] = (intptr_t) SCARG(p, info).i32; /* const netbsd32_siginfop_t */
1718 1.3 martin *n_args = 2;
1719 1.3 martin break;
1720 1.3 martin }
1721 1.3 martin /* netbsd32_modctl */
1722 1.3 martin case 246: {
1723 1.17 christos const struct netbsd32_modctl_args *p = params;
1724 1.3 martin iarg[0] = SCARG(p, cmd); /* int */
1725 1.3 martin uarg[1] = (intptr_t) SCARG(p, arg).i32; /* netbsd32_voidp */
1726 1.3 martin *n_args = 2;
1727 1.3 martin break;
1728 1.3 martin }
1729 1.1 christos /* netbsd32__ksem_init */
1730 1.1 christos case 247: {
1731 1.17 christos const struct netbsd32__ksem_init_args *p = params;
1732 1.1 christos uarg[0] = SCARG(p, value); /* unsigned int */
1733 1.1 christos uarg[1] = (intptr_t) SCARG(p, idp).i32; /* netbsd32_semidp_t */
1734 1.1 christos *n_args = 2;
1735 1.1 christos break;
1736 1.1 christos }
1737 1.1 christos /* netbsd32__ksem_open */
1738 1.1 christos case 248: {
1739 1.17 christos const struct netbsd32__ksem_open_args *p = params;
1740 1.1 christos uarg[0] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
1741 1.1 christos iarg[1] = SCARG(p, oflag); /* int */
1742 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */
1743 1.1 christos uarg[3] = SCARG(p, value); /* unsigned int */
1744 1.1 christos uarg[4] = (intptr_t) SCARG(p, idp).i32; /* netbsd32_semidp_t */
1745 1.1 christos *n_args = 5;
1746 1.1 christos break;
1747 1.1 christos }
1748 1.1 christos /* netbsd32__ksem_unlink */
1749 1.1 christos case 249: {
1750 1.17 christos const struct netbsd32__ksem_unlink_args *p = params;
1751 1.1 christos uarg[0] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
1752 1.1 christos *n_args = 1;
1753 1.1 christos break;
1754 1.1 christos }
1755 1.1 christos /* netbsd32__ksem_close */
1756 1.1 christos case 250: {
1757 1.17 christos const struct netbsd32__ksem_close_args *p = params;
1758 1.1 christos iarg[0] = SCARG(p, id); /* netbsd32_intptr_t */
1759 1.1 christos *n_args = 1;
1760 1.1 christos break;
1761 1.1 christos }
1762 1.1 christos /* netbsd32__ksem_post */
1763 1.1 christos case 251: {
1764 1.17 christos const struct netbsd32__ksem_post_args *p = params;
1765 1.1 christos iarg[0] = SCARG(p, id); /* netbsd32_intptr_t */
1766 1.1 christos *n_args = 1;
1767 1.1 christos break;
1768 1.1 christos }
1769 1.1 christos /* netbsd32__ksem_wait */
1770 1.1 christos case 252: {
1771 1.17 christos const struct netbsd32__ksem_wait_args *p = params;
1772 1.1 christos iarg[0] = SCARG(p, id); /* netbsd32_intptr_t */
1773 1.1 christos *n_args = 1;
1774 1.1 christos break;
1775 1.1 christos }
1776 1.1 christos /* netbsd32__ksem_trywait */
1777 1.1 christos case 253: {
1778 1.17 christos const struct netbsd32__ksem_trywait_args *p = params;
1779 1.1 christos iarg[0] = SCARG(p, id); /* netbsd32_intptr_t */
1780 1.1 christos *n_args = 1;
1781 1.1 christos break;
1782 1.1 christos }
1783 1.1 christos /* netbsd32__ksem_getvalue */
1784 1.1 christos case 254: {
1785 1.17 christos const struct netbsd32__ksem_getvalue_args *p = params;
1786 1.1 christos iarg[0] = SCARG(p, id); /* netbsd32_intptr_t */
1787 1.1 christos uarg[1] = (intptr_t) SCARG(p, value).i32; /* netbsd32_intp */
1788 1.1 christos *n_args = 2;
1789 1.1 christos break;
1790 1.1 christos }
1791 1.1 christos /* netbsd32__ksem_destroy */
1792 1.1 christos case 255: {
1793 1.17 christos const struct netbsd32__ksem_destroy_args *p = params;
1794 1.1 christos iarg[0] = SCARG(p, id); /* netbsd32_intptr_t */
1795 1.1 christos *n_args = 1;
1796 1.1 christos break;
1797 1.1 christos }
1798 1.1 christos /* netbsd32__ksem_timedwait */
1799 1.1 christos case 256: {
1800 1.17 christos const struct netbsd32__ksem_timedwait_args *p = params;
1801 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */
1802 1.1 christos uarg[1] = (intptr_t) SCARG(p, abstime).i32; /* const netbsd32_timespecp_t */
1803 1.1 christos *n_args = 2;
1804 1.1 christos break;
1805 1.1 christos }
1806 1.3 martin /* netbsd32_mq_open */
1807 1.3 martin case 257: {
1808 1.17 christos const struct netbsd32_mq_open_args *p = params;
1809 1.3 martin uarg[0] = (intptr_t) SCARG(p, name).i32; /* const netbsd32_charp */
1810 1.3 martin iarg[1] = SCARG(p, oflag); /* int */
1811 1.3 martin iarg[2] = SCARG(p, mode); /* mode_t */
1812 1.3 martin uarg[3] = (intptr_t) SCARG(p, attr).i32; /* netbsd32_mq_attrp_t */
1813 1.3 martin *n_args = 4;
1814 1.3 martin break;
1815 1.3 martin }
1816 1.3 martin /* netbsd32_mq_close */
1817 1.3 martin case 258: {
1818 1.17 christos const struct netbsd32_mq_close_args *p = params;
1819 1.3 martin iarg[0] = SCARG(p, mqdes); /* mqd_t */
1820 1.3 martin *n_args = 1;
1821 1.3 martin break;
1822 1.3 martin }
1823 1.3 martin /* netbsd32_mq_unlink */
1824 1.3 martin case 259: {
1825 1.17 christos const struct netbsd32_mq_unlink_args *p = params;
1826 1.3 martin uarg[0] = (intptr_t) SCARG(p, name).i32; /* const netbsd32_charp */
1827 1.3 martin *n_args = 1;
1828 1.3 martin break;
1829 1.3 martin }
1830 1.3 martin /* netbsd32_mq_getattr */
1831 1.3 martin case 260: {
1832 1.17 christos const struct netbsd32_mq_getattr_args *p = params;
1833 1.3 martin iarg[0] = SCARG(p, mqdes); /* mqd_t */
1834 1.3 martin uarg[1] = (intptr_t) SCARG(p, mqstat).i32; /* netbsd32_mq_attrp_t */
1835 1.3 martin *n_args = 2;
1836 1.3 martin break;
1837 1.3 martin }
1838 1.3 martin /* netbsd32_mq_setattr */
1839 1.3 martin case 261: {
1840 1.17 christos const struct netbsd32_mq_setattr_args *p = params;
1841 1.3 martin iarg[0] = SCARG(p, mqdes); /* mqd_t */
1842 1.3 martin uarg[1] = (intptr_t) SCARG(p, mqstat).i32; /* const netbsd32_mq_attrp_t */
1843 1.3 martin uarg[2] = (intptr_t) SCARG(p, omqstat).i32; /* netbsd32_mq_attrp_t */
1844 1.3 martin *n_args = 3;
1845 1.3 martin break;
1846 1.3 martin }
1847 1.3 martin /* netbsd32_mq_notify */
1848 1.3 martin case 262: {
1849 1.17 christos const struct netbsd32_mq_notify_args *p = params;
1850 1.3 martin iarg[0] = SCARG(p, mqdes); /* mqd_t */
1851 1.3 martin uarg[1] = (intptr_t) SCARG(p, notification).i32; /* const netbsd32_sigeventp_t */
1852 1.3 martin *n_args = 2;
1853 1.3 martin break;
1854 1.3 martin }
1855 1.3 martin /* netbsd32_mq_send */
1856 1.3 martin case 263: {
1857 1.17 christos const struct netbsd32_mq_send_args *p = params;
1858 1.3 martin iarg[0] = SCARG(p, mqdes); /* mqd_t */
1859 1.3 martin uarg[1] = (intptr_t) SCARG(p, msg_ptr).i32; /* const netbsd32_charp */
1860 1.3 martin iarg[2] = SCARG(p, msg_len); /* netbsd32_size_t */
1861 1.3 martin uarg[3] = SCARG(p, msg_prio); /* unsigned */
1862 1.3 martin *n_args = 4;
1863 1.3 martin break;
1864 1.3 martin }
1865 1.3 martin /* netbsd32_mq_receive */
1866 1.3 martin case 264: {
1867 1.17 christos const struct netbsd32_mq_receive_args *p = params;
1868 1.3 martin iarg[0] = SCARG(p, mqdes); /* mqd_t */
1869 1.3 martin uarg[1] = (intptr_t) SCARG(p, msg_ptr).i32; /* netbsd32_charp */
1870 1.3 martin iarg[2] = SCARG(p, msg_len); /* netbsd32_size_t */
1871 1.3 martin uarg[3] = (intptr_t) SCARG(p, msg_prio).i32; /* netbsd32_uintp */
1872 1.3 martin *n_args = 4;
1873 1.3 martin break;
1874 1.3 martin }
1875 1.3 martin /* netbsd32_mq_timedsend */
1876 1.3 martin case 265: {
1877 1.17 christos const struct compat_50_netbsd32_mq_timedsend_args *p = params;
1878 1.3 martin iarg[0] = SCARG(p, mqdes); /* mqd_t */
1879 1.3 martin uarg[1] = (intptr_t) SCARG(p, msg_ptr).i32; /* const netbsd32_charp */
1880 1.3 martin iarg[2] = SCARG(p, msg_len); /* netbsd32_size_t */
1881 1.3 martin uarg[3] = SCARG(p, msg_prio); /* unsigned */
1882 1.3 martin uarg[4] = (intptr_t) SCARG(p, abs_timeout).i32; /* const netbsd32_timespec50p_t */
1883 1.3 martin *n_args = 5;
1884 1.3 martin break;
1885 1.3 martin }
1886 1.3 martin /* netbsd32_mq_timedreceive */
1887 1.3 martin case 266: {
1888 1.17 christos const struct compat_50_netbsd32_mq_timedreceive_args *p = params;
1889 1.3 martin iarg[0] = SCARG(p, mqdes); /* mqd_t */
1890 1.3 martin uarg[1] = (intptr_t) SCARG(p, msg_ptr).i32; /* netbsd32_charp */
1891 1.3 martin iarg[2] = SCARG(p, msg_len); /* netbsd32_size_t */
1892 1.3 martin uarg[3] = (intptr_t) SCARG(p, msg_prio).i32; /* netbsd32_uintp */
1893 1.3 martin uarg[4] = (intptr_t) SCARG(p, abs_timeout).i32; /* const netbsd32_timespec50p_t */
1894 1.3 martin *n_args = 5;
1895 1.3 martin break;
1896 1.3 martin }
1897 1.1 christos /* netbsd32___posix_rename */
1898 1.1 christos case 270: {
1899 1.17 christos const struct netbsd32___posix_rename_args *p = params;
1900 1.1 christos uarg[0] = (intptr_t) SCARG(p, from).i32; /* netbsd32_charp */
1901 1.1 christos uarg[1] = (intptr_t) SCARG(p, to).i32; /* netbsd32_charp */
1902 1.1 christos *n_args = 2;
1903 1.1 christos break;
1904 1.1 christos }
1905 1.1 christos /* netbsd32_swapctl */
1906 1.1 christos case 271: {
1907 1.17 christos const struct netbsd32_swapctl_args *p = params;
1908 1.1 christos iarg[0] = SCARG(p, cmd); /* int */
1909 1.1 christos uarg[1] = (intptr_t) SCARG(p, arg).i32; /* netbsd32_voidp */
1910 1.1 christos iarg[2] = SCARG(p, misc); /* int */
1911 1.1 christos *n_args = 3;
1912 1.1 christos break;
1913 1.1 christos }
1914 1.1 christos /* netbsd32_getdents */
1915 1.1 christos case 272: {
1916 1.17 christos const struct compat_30_netbsd32_getdents_args *p = params;
1917 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1918 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_charp */
1919 1.1 christos iarg[2] = SCARG(p, count); /* netbsd32_size_t */
1920 1.1 christos *n_args = 3;
1921 1.1 christos break;
1922 1.1 christos }
1923 1.1 christos /* netbsd32_minherit */
1924 1.1 christos case 273: {
1925 1.17 christos const struct netbsd32_minherit_args *p = params;
1926 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
1927 1.1 christos iarg[1] = SCARG(p, len); /* netbsd32_size_t */
1928 1.1 christos iarg[2] = SCARG(p, inherit); /* int */
1929 1.1 christos *n_args = 3;
1930 1.1 christos break;
1931 1.1 christos }
1932 1.1 christos /* netbsd32_lchmod */
1933 1.1 christos case 274: {
1934 1.17 christos const struct netbsd32_lchmod_args *p = params;
1935 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1936 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */
1937 1.1 christos *n_args = 2;
1938 1.1 christos break;
1939 1.1 christos }
1940 1.1 christos /* netbsd32_lchown */
1941 1.1 christos case 275: {
1942 1.17 christos const struct netbsd32_lchown_args *p = params;
1943 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1944 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */
1945 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */
1946 1.1 christos *n_args = 3;
1947 1.1 christos break;
1948 1.1 christos }
1949 1.1 christos /* netbsd32_lutimes */
1950 1.1 christos case 276: {
1951 1.17 christos const struct compat_50_netbsd32_lutimes_args *p = params;
1952 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1953 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr).i32; /* netbsd32_timeval50p_t */
1954 1.1 christos *n_args = 2;
1955 1.1 christos break;
1956 1.1 christos }
1957 1.1 christos /* netbsd32___msync13 */
1958 1.1 christos case 277: {
1959 1.17 christos const struct netbsd32___msync13_args *p = params;
1960 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
1961 1.1 christos iarg[1] = SCARG(p, len); /* netbsd32_size_t */
1962 1.1 christos iarg[2] = SCARG(p, flags); /* int */
1963 1.1 christos *n_args = 3;
1964 1.1 christos break;
1965 1.1 christos }
1966 1.1 christos /* netbsd32___stat13 */
1967 1.1 christos case 278: {
1968 1.17 christos const struct compat_30_netbsd32___stat13_args *p = params;
1969 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1970 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub).i32; /* netbsd32_stat13p_t */
1971 1.1 christos *n_args = 2;
1972 1.1 christos break;
1973 1.1 christos }
1974 1.1 christos /* netbsd32___fstat13 */
1975 1.1 christos case 279: {
1976 1.17 christos const struct compat_30_netbsd32___fstat13_args *p = params;
1977 1.1 christos iarg[0] = SCARG(p, fd); /* int */
1978 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb).i32; /* netbsd32_stat13p_t */
1979 1.1 christos *n_args = 2;
1980 1.1 christos break;
1981 1.1 christos }
1982 1.1 christos /* netbsd32___lstat13 */
1983 1.1 christos case 280: {
1984 1.17 christos const struct compat_30_netbsd32___lstat13_args *p = params;
1985 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
1986 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub).i32; /* netbsd32_stat13p_t */
1987 1.1 christos *n_args = 2;
1988 1.1 christos break;
1989 1.1 christos }
1990 1.1 christos /* netbsd32___sigaltstack14 */
1991 1.1 christos case 281: {
1992 1.17 christos const struct netbsd32___sigaltstack14_args *p = params;
1993 1.1 christos uarg[0] = (intptr_t) SCARG(p, nss).i32; /* netbsd32_sigaltstackp_t */
1994 1.1 christos uarg[1] = (intptr_t) SCARG(p, oss).i32; /* netbsd32_sigaltstackp_t */
1995 1.1 christos *n_args = 2;
1996 1.1 christos break;
1997 1.1 christos }
1998 1.1 christos /* sys___vfork14 */
1999 1.1 christos case 282: {
2000 1.1 christos *n_args = 0;
2001 1.1 christos break;
2002 1.1 christos }
2003 1.1 christos /* netbsd32___posix_chown */
2004 1.1 christos case 283: {
2005 1.17 christos const struct netbsd32___posix_chown_args *p = params;
2006 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2007 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */
2008 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */
2009 1.1 christos *n_args = 3;
2010 1.1 christos break;
2011 1.1 christos }
2012 1.1 christos /* netbsd32___posix_fchown */
2013 1.1 christos case 284: {
2014 1.17 christos const struct netbsd32___posix_fchown_args *p = params;
2015 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2016 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */
2017 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */
2018 1.1 christos *n_args = 3;
2019 1.1 christos break;
2020 1.1 christos }
2021 1.1 christos /* netbsd32___posix_lchown */
2022 1.1 christos case 285: {
2023 1.17 christos const struct netbsd32___posix_lchown_args *p = params;
2024 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2025 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */
2026 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */
2027 1.1 christos *n_args = 3;
2028 1.1 christos break;
2029 1.1 christos }
2030 1.1 christos /* netbsd32_getsid */
2031 1.1 christos case 286: {
2032 1.17 christos const struct netbsd32_getsid_args *p = params;
2033 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
2034 1.1 christos *n_args = 1;
2035 1.1 christos break;
2036 1.1 christos }
2037 1.1 christos /* netbsd32___clone */
2038 1.1 christos case 287: {
2039 1.17 christos const struct netbsd32___clone_args *p = params;
2040 1.1 christos iarg[0] = SCARG(p, flags); /* int */
2041 1.1 christos uarg[1] = (intptr_t) SCARG(p, stack).i32; /* netbsd32_voidp */
2042 1.1 christos *n_args = 2;
2043 1.1 christos break;
2044 1.1 christos }
2045 1.1 christos /* netbsd32_fktrace */
2046 1.1 christos case 288: {
2047 1.17 christos const struct netbsd32_fktrace_args *p = params;
2048 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2049 1.1 christos iarg[1] = SCARG(p, ops); /* int */
2050 1.1 christos iarg[2] = SCARG(p, facs); /* int */
2051 1.1 christos iarg[3] = SCARG(p, pid); /* int */
2052 1.1 christos *n_args = 4;
2053 1.1 christos break;
2054 1.1 christos }
2055 1.1 christos /* netbsd32_preadv */
2056 1.1 christos case 289: {
2057 1.17 christos const struct netbsd32_preadv_args *p = params;
2058 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2059 1.1 christos uarg[1] = (intptr_t) SCARG(p, iovp).i32; /* netbsd32_iovecp_t */
2060 1.1 christos iarg[2] = SCARG(p, iovcnt); /* int */
2061 1.1 christos iarg[3] = SCARG(p, PAD); /* int */
2062 1.1 christos iarg[4] = SCARG(p, offset); /* netbsd32_off_t */
2063 1.1 christos *n_args = 5;
2064 1.1 christos break;
2065 1.1 christos }
2066 1.1 christos /* netbsd32_pwritev */
2067 1.1 christos case 290: {
2068 1.17 christos const struct netbsd32_pwritev_args *p = params;
2069 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2070 1.1 christos uarg[1] = (intptr_t) SCARG(p, iovp).i32; /* netbsd32_iovecp_t */
2071 1.1 christos iarg[2] = SCARG(p, iovcnt); /* int */
2072 1.1 christos iarg[3] = SCARG(p, PAD); /* int */
2073 1.1 christos iarg[4] = SCARG(p, offset); /* netbsd32_off_t */
2074 1.1 christos *n_args = 5;
2075 1.1 christos break;
2076 1.1 christos }
2077 1.1 christos /* netbsd32___sigaction14 */
2078 1.1 christos case 291: {
2079 1.17 christos const struct netbsd32___sigaction14_args *p = params;
2080 1.1 christos iarg[0] = SCARG(p, signum); /* int */
2081 1.1 christos uarg[1] = (intptr_t) SCARG(p, nsa).i32; /* netbsd32_sigactionp_t */
2082 1.1 christos uarg[2] = (intptr_t) SCARG(p, osa).i32; /* netbsd32_sigactionp_t */
2083 1.1 christos *n_args = 3;
2084 1.1 christos break;
2085 1.1 christos }
2086 1.1 christos /* netbsd32___sigpending14 */
2087 1.1 christos case 292: {
2088 1.17 christos const struct netbsd32___sigpending14_args *p = params;
2089 1.1 christos uarg[0] = (intptr_t) SCARG(p, set).i32; /* netbsd32_sigsetp_t */
2090 1.1 christos *n_args = 1;
2091 1.1 christos break;
2092 1.1 christos }
2093 1.1 christos /* netbsd32___sigprocmask14 */
2094 1.1 christos case 293: {
2095 1.17 christos const struct netbsd32___sigprocmask14_args *p = params;
2096 1.1 christos iarg[0] = SCARG(p, how); /* int */
2097 1.1 christos uarg[1] = (intptr_t) SCARG(p, set).i32; /* netbsd32_sigsetp_t */
2098 1.1 christos uarg[2] = (intptr_t) SCARG(p, oset).i32; /* netbsd32_sigsetp_t */
2099 1.1 christos *n_args = 3;
2100 1.1 christos break;
2101 1.1 christos }
2102 1.1 christos /* netbsd32___sigsuspend14 */
2103 1.1 christos case 294: {
2104 1.17 christos const struct netbsd32___sigsuspend14_args *p = params;
2105 1.1 christos uarg[0] = (intptr_t) SCARG(p, set).i32; /* netbsd32_sigsetp_t */
2106 1.1 christos *n_args = 1;
2107 1.1 christos break;
2108 1.1 christos }
2109 1.1 christos /* netbsd32___sigreturn14 */
2110 1.1 christos case 295: {
2111 1.17 christos const struct compat_16_netbsd32___sigreturn14_args *p = params;
2112 1.1 christos uarg[0] = (intptr_t) SCARG(p, sigcntxp).i32; /* netbsd32_sigcontextp_t */
2113 1.1 christos *n_args = 1;
2114 1.1 christos break;
2115 1.1 christos }
2116 1.1 christos /* netbsd32___getcwd */
2117 1.1 christos case 296: {
2118 1.17 christos const struct netbsd32___getcwd_args *p = params;
2119 1.1 christos uarg[0] = (intptr_t) SCARG(p, bufp).i32; /* netbsd32_charp */
2120 1.1 christos iarg[1] = SCARG(p, length); /* netbsd32_size_t */
2121 1.1 christos *n_args = 2;
2122 1.1 christos break;
2123 1.1 christos }
2124 1.1 christos /* netbsd32_fchroot */
2125 1.1 christos case 297: {
2126 1.17 christos const struct netbsd32_fchroot_args *p = params;
2127 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2128 1.1 christos *n_args = 1;
2129 1.1 christos break;
2130 1.1 christos }
2131 1.1 christos /* netbsd32_fhopen */
2132 1.1 christos case 298: {
2133 1.17 christos const struct compat_30_netbsd32_fhopen_args *p = params;
2134 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp).i32; /* netbsd32_fhandlep_t */
2135 1.1 christos iarg[1] = SCARG(p, flags); /* int */
2136 1.1 christos *n_args = 2;
2137 1.1 christos break;
2138 1.1 christos }
2139 1.1 christos /* netbsd32_fhstat */
2140 1.1 christos case 299: {
2141 1.17 christos const struct compat_30_netbsd32_fhstat_args *p = params;
2142 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp).i32; /* netbsd32_fhandlep_t */
2143 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb).i32; /* netbsd32_stat13p_t */
2144 1.1 christos *n_args = 2;
2145 1.1 christos break;
2146 1.1 christos }
2147 1.1 christos /* netbsd32_fhstatfs */
2148 1.1 christos case 300: {
2149 1.17 christos const struct compat_20_netbsd32_fhstatfs_args *p = params;
2150 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp).i32; /* netbsd32_fhandlep_t */
2151 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_stat50p_t */
2152 1.1 christos *n_args = 2;
2153 1.1 christos break;
2154 1.1 christos }
2155 1.1 christos /* netbsd32___semctl14 */
2156 1.1 christos case 301: {
2157 1.17 christos const struct compat_50_netbsd32___semctl14_args *p = params;
2158 1.1 christos iarg[0] = SCARG(p, semid); /* int */
2159 1.1 christos iarg[1] = SCARG(p, semnum); /* int */
2160 1.1 christos iarg[2] = SCARG(p, cmd); /* int */
2161 1.1 christos uarg[3] = (intptr_t) SCARG(p, arg).i32; /* netbsd32_semun50p_t */
2162 1.1 christos *n_args = 4;
2163 1.1 christos break;
2164 1.1 christos }
2165 1.1 christos /* netbsd32___msgctl13 */
2166 1.1 christos case 302: {
2167 1.17 christos const struct compat_50_netbsd32___msgctl13_args *p = params;
2168 1.1 christos iarg[0] = SCARG(p, msqid); /* int */
2169 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
2170 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_msqid_ds50p_t */
2171 1.1 christos *n_args = 3;
2172 1.1 christos break;
2173 1.1 christos }
2174 1.1 christos /* netbsd32___shmctl13 */
2175 1.1 christos case 303: {
2176 1.17 christos const struct compat_50_netbsd32___shmctl13_args *p = params;
2177 1.1 christos iarg[0] = SCARG(p, shmid); /* int */
2178 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
2179 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_shmid_ds50p_t */
2180 1.1 christos *n_args = 3;
2181 1.1 christos break;
2182 1.1 christos }
2183 1.1 christos /* netbsd32_lchflags */
2184 1.1 christos case 304: {
2185 1.17 christos const struct netbsd32_lchflags_args *p = params;
2186 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2187 1.1 christos iarg[1] = SCARG(p, flags); /* netbsd32_u_long */
2188 1.1 christos *n_args = 2;
2189 1.1 christos break;
2190 1.1 christos }
2191 1.1 christos /* sys_issetugid */
2192 1.1 christos case 305: {
2193 1.1 christos *n_args = 0;
2194 1.1 christos break;
2195 1.1 christos }
2196 1.1 christos /* netbsd32_utrace */
2197 1.1 christos case 306: {
2198 1.17 christos const struct netbsd32_utrace_args *p = params;
2199 1.1 christos uarg[0] = (intptr_t) SCARG(p, label).i32; /* netbsd32_charp */
2200 1.1 christos uarg[1] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
2201 1.1 christos iarg[2] = SCARG(p, len); /* netbsd32_size_t */
2202 1.1 christos *n_args = 3;
2203 1.1 christos break;
2204 1.1 christos }
2205 1.1 christos /* netbsd32_getcontext */
2206 1.1 christos case 307: {
2207 1.17 christos const struct netbsd32_getcontext_args *p = params;
2208 1.1 christos uarg[0] = (intptr_t) SCARG(p, ucp).i32; /* netbsd32_ucontextp */
2209 1.1 christos *n_args = 1;
2210 1.1 christos break;
2211 1.1 christos }
2212 1.1 christos /* netbsd32_setcontext */
2213 1.1 christos case 308: {
2214 1.17 christos const struct netbsd32_setcontext_args *p = params;
2215 1.1 christos uarg[0] = (intptr_t) SCARG(p, ucp).i32; /* netbsd32_ucontextp */
2216 1.1 christos *n_args = 1;
2217 1.1 christos break;
2218 1.1 christos }
2219 1.1 christos /* netbsd32__lwp_create */
2220 1.1 christos case 309: {
2221 1.17 christos const struct netbsd32__lwp_create_args *p = params;
2222 1.1 christos uarg[0] = (intptr_t) SCARG(p, ucp).i32; /* netbsd32_ucontextp */
2223 1.1 christos iarg[1] = SCARG(p, flags); /* netbsd32_u_long */
2224 1.1 christos uarg[2] = (intptr_t) SCARG(p, new_lwp).i32; /* netbsd32_lwpidp */
2225 1.1 christos *n_args = 3;
2226 1.1 christos break;
2227 1.1 christos }
2228 1.1 christos /* sys__lwp_exit */
2229 1.1 christos case 310: {
2230 1.1 christos *n_args = 0;
2231 1.1 christos break;
2232 1.1 christos }
2233 1.1 christos /* sys__lwp_self */
2234 1.1 christos case 311: {
2235 1.1 christos *n_args = 0;
2236 1.1 christos break;
2237 1.1 christos }
2238 1.1 christos /* netbsd32__lwp_wait */
2239 1.1 christos case 312: {
2240 1.17 christos const struct netbsd32__lwp_wait_args *p = params;
2241 1.1 christos iarg[0] = SCARG(p, wait_for); /* lwpid_t */
2242 1.1 christos uarg[1] = (intptr_t) SCARG(p, departed).i32; /* netbsd32_lwpidp */
2243 1.1 christos *n_args = 2;
2244 1.1 christos break;
2245 1.1 christos }
2246 1.1 christos /* netbsd32__lwp_suspend */
2247 1.1 christos case 313: {
2248 1.17 christos const struct netbsd32__lwp_suspend_args *p = params;
2249 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2250 1.1 christos *n_args = 1;
2251 1.1 christos break;
2252 1.1 christos }
2253 1.1 christos /* netbsd32__lwp_continue */
2254 1.1 christos case 314: {
2255 1.17 christos const struct netbsd32__lwp_continue_args *p = params;
2256 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2257 1.1 christos *n_args = 1;
2258 1.1 christos break;
2259 1.1 christos }
2260 1.1 christos /* netbsd32__lwp_wakeup */
2261 1.1 christos case 315: {
2262 1.17 christos const struct netbsd32__lwp_wakeup_args *p = params;
2263 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2264 1.1 christos *n_args = 1;
2265 1.1 christos break;
2266 1.1 christos }
2267 1.1 christos /* sys__lwp_getprivate */
2268 1.1 christos case 316: {
2269 1.1 christos *n_args = 0;
2270 1.1 christos break;
2271 1.1 christos }
2272 1.1 christos /* netbsd32__lwp_setprivate */
2273 1.1 christos case 317: {
2274 1.17 christos const struct netbsd32__lwp_setprivate_args *p = params;
2275 1.1 christos uarg[0] = (intptr_t) SCARG(p, ptr).i32; /* netbsd32_voidp */
2276 1.1 christos *n_args = 1;
2277 1.1 christos break;
2278 1.1 christos }
2279 1.1 christos /* netbsd32__lwp_kill */
2280 1.1 christos case 318: {
2281 1.17 christos const struct netbsd32__lwp_kill_args *p = params;
2282 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2283 1.1 christos iarg[1] = SCARG(p, signo); /* int */
2284 1.1 christos *n_args = 2;
2285 1.1 christos break;
2286 1.1 christos }
2287 1.1 christos /* netbsd32__lwp_detach */
2288 1.1 christos case 319: {
2289 1.17 christos const struct netbsd32__lwp_detach_args *p = params;
2290 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2291 1.1 christos *n_args = 1;
2292 1.1 christos break;
2293 1.1 christos }
2294 1.1 christos /* netbsd32__lwp_park */
2295 1.1 christos case 320: {
2296 1.17 christos const struct compat_50_netbsd32__lwp_park_args *p = params;
2297 1.1 christos uarg[0] = (intptr_t) SCARG(p, ts).i32; /* netbsd32_timespec50p_t */
2298 1.1 christos iarg[1] = SCARG(p, unpark); /* lwpid_t */
2299 1.1 christos uarg[2] = (intptr_t) SCARG(p, hint).i32; /* netbsd32_voidp */
2300 1.1 christos uarg[3] = (intptr_t) SCARG(p, unparkhint).i32; /* netbsd32_voidp */
2301 1.1 christos *n_args = 4;
2302 1.1 christos break;
2303 1.1 christos }
2304 1.1 christos /* netbsd32__lwp_unpark */
2305 1.1 christos case 321: {
2306 1.17 christos const struct netbsd32__lwp_unpark_args *p = params;
2307 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2308 1.1 christos uarg[1] = (intptr_t) SCARG(p, hint).i32; /* netbsd32_voidp */
2309 1.1 christos *n_args = 2;
2310 1.1 christos break;
2311 1.1 christos }
2312 1.1 christos /* netbsd32__lwp_unpark_all */
2313 1.1 christos case 322: {
2314 1.17 christos const struct netbsd32__lwp_unpark_all_args *p = params;
2315 1.1 christos uarg[0] = (intptr_t) SCARG(p, targets).i32; /* netbsd32_lwpidp */
2316 1.1 christos iarg[1] = SCARG(p, ntargets); /* netbsd32_size_t */
2317 1.1 christos uarg[2] = (intptr_t) SCARG(p, hint).i32; /* netbsd32_voidp */
2318 1.1 christos *n_args = 3;
2319 1.1 christos break;
2320 1.1 christos }
2321 1.1 christos /* netbsd32__lwp_setname */
2322 1.1 christos case 323: {
2323 1.17 christos const struct netbsd32__lwp_setname_args *p = params;
2324 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2325 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
2326 1.1 christos *n_args = 2;
2327 1.1 christos break;
2328 1.1 christos }
2329 1.1 christos /* netbsd32__lwp_getname */
2330 1.1 christos case 324: {
2331 1.17 christos const struct netbsd32__lwp_getname_args *p = params;
2332 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */
2333 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
2334 1.1 christos iarg[2] = SCARG(p, len); /* netbsd32_size_t */
2335 1.1 christos *n_args = 3;
2336 1.1 christos break;
2337 1.1 christos }
2338 1.1 christos /* netbsd32__lwp_ctl */
2339 1.1 christos case 325: {
2340 1.17 christos const struct netbsd32__lwp_ctl_args *p = params;
2341 1.1 christos iarg[0] = SCARG(p, features); /* int */
2342 1.1 christos uarg[1] = (intptr_t) SCARG(p, address).i32; /* netbsd32_pointer_t */
2343 1.1 christos *n_args = 2;
2344 1.1 christos break;
2345 1.1 christos }
2346 1.1 christos /* netbsd32___sigaction_sigtramp */
2347 1.1 christos case 340: {
2348 1.17 christos const struct netbsd32___sigaction_sigtramp_args *p = params;
2349 1.1 christos iarg[0] = SCARG(p, signum); /* int */
2350 1.1 christos uarg[1] = (intptr_t) SCARG(p, nsa).i32; /* netbsd32_sigactionp_t */
2351 1.1 christos uarg[2] = (intptr_t) SCARG(p, osa).i32; /* netbsd32_sigactionp_t */
2352 1.1 christos uarg[3] = (intptr_t) SCARG(p, tramp).i32; /* netbsd32_voidp */
2353 1.1 christos iarg[4] = SCARG(p, vers); /* int */
2354 1.1 christos *n_args = 5;
2355 1.1 christos break;
2356 1.1 christos }
2357 1.1 christos /* netbsd32_rasctl */
2358 1.1 christos case 343: {
2359 1.17 christos const struct netbsd32_rasctl_args *p = params;
2360 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr).i32; /* netbsd32_voidp */
2361 1.1 christos iarg[1] = SCARG(p, len); /* netbsd32_size_t */
2362 1.1 christos iarg[2] = SCARG(p, op); /* int */
2363 1.1 christos *n_args = 3;
2364 1.1 christos break;
2365 1.1 christos }
2366 1.1 christos /* sys_kqueue */
2367 1.1 christos case 344: {
2368 1.1 christos *n_args = 0;
2369 1.1 christos break;
2370 1.1 christos }
2371 1.1 christos /* netbsd32_kevent */
2372 1.1 christos case 345: {
2373 1.17 christos const struct compat_50_netbsd32_kevent_args *p = params;
2374 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2375 1.1 christos uarg[1] = (intptr_t) SCARG(p, changelist).i32; /* netbsd32_keventp_t */
2376 1.1 christos iarg[2] = SCARG(p, nchanges); /* netbsd32_size_t */
2377 1.1 christos uarg[3] = (intptr_t) SCARG(p, eventlist).i32; /* netbsd32_keventp_t */
2378 1.1 christos iarg[4] = SCARG(p, nevents); /* netbsd32_size_t */
2379 1.1 christos uarg[5] = (intptr_t) SCARG(p, timeout).i32; /* netbsd32_timespec50p_t */
2380 1.1 christos *n_args = 6;
2381 1.1 christos break;
2382 1.1 christos }
2383 1.1 christos /* netbsd32__sched_setparam */
2384 1.1 christos case 346: {
2385 1.17 christos const struct netbsd32__sched_setparam_args *p = params;
2386 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
2387 1.1 christos iarg[1] = SCARG(p, lid); /* lwpid_t */
2388 1.1 christos iarg[2] = SCARG(p, policy); /* int */
2389 1.1 christos uarg[3] = (intptr_t) SCARG(p, params).i32; /* const netbsd32_sched_paramp_t */
2390 1.1 christos *n_args = 4;
2391 1.1 christos break;
2392 1.1 christos }
2393 1.1 christos /* netbsd32__sched_getparam */
2394 1.1 christos case 347: {
2395 1.17 christos const struct netbsd32__sched_getparam_args *p = params;
2396 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
2397 1.1 christos iarg[1] = SCARG(p, lid); /* lwpid_t */
2398 1.1 christos uarg[2] = (intptr_t) SCARG(p, policy).i32; /* netbsd32_intp */
2399 1.1 christos uarg[3] = (intptr_t) SCARG(p, params).i32; /* netbsd32_sched_paramp_t */
2400 1.1 christos *n_args = 4;
2401 1.1 christos break;
2402 1.1 christos }
2403 1.1 christos /* netbsd32__sched_setaffinity */
2404 1.1 christos case 348: {
2405 1.17 christos const struct netbsd32__sched_setaffinity_args *p = params;
2406 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
2407 1.1 christos iarg[1] = SCARG(p, lid); /* lwpid_t */
2408 1.1 christos iarg[2] = SCARG(p, size); /* netbsd32_size_t */
2409 1.1 christos uarg[3] = (intptr_t) SCARG(p, cpuset).i32; /* const netbsd32_cpusetp_t */
2410 1.1 christos *n_args = 4;
2411 1.1 christos break;
2412 1.1 christos }
2413 1.1 christos /* netbsd32__sched_getaffinity */
2414 1.1 christos case 349: {
2415 1.17 christos const struct netbsd32__sched_getaffinity_args *p = params;
2416 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */
2417 1.1 christos iarg[1] = SCARG(p, lid); /* lwpid_t */
2418 1.1 christos iarg[2] = SCARG(p, size); /* netbsd32_size_t */
2419 1.1 christos uarg[3] = (intptr_t) SCARG(p, cpuset).i32; /* netbsd32_cpusetp_t */
2420 1.1 christos *n_args = 4;
2421 1.1 christos break;
2422 1.1 christos }
2423 1.1 christos /* sys_sched_yield */
2424 1.1 christos case 350: {
2425 1.1 christos *n_args = 0;
2426 1.1 christos break;
2427 1.1 christos }
2428 1.13 skrll /* netbsd32__sched_protect */
2429 1.13 skrll case 351: {
2430 1.17 christos const struct netbsd32__sched_protect_args *p = params;
2431 1.13 skrll iarg[0] = SCARG(p, priority); /* int */
2432 1.13 skrll *n_args = 1;
2433 1.13 skrll break;
2434 1.13 skrll }
2435 1.1 christos /* netbsd32_fsync_range */
2436 1.1 christos case 354: {
2437 1.17 christos const struct netbsd32_fsync_range_args *p = params;
2438 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2439 1.1 christos iarg[1] = SCARG(p, flags); /* int */
2440 1.1 christos iarg[2] = SCARG(p, start); /* netbsd32_off_t */
2441 1.1 christos iarg[3] = SCARG(p, length); /* netbsd32_off_t */
2442 1.1 christos *n_args = 4;
2443 1.1 christos break;
2444 1.1 christos }
2445 1.1 christos /* netbsd32_uuidgen */
2446 1.1 christos case 355: {
2447 1.17 christos const struct netbsd32_uuidgen_args *p = params;
2448 1.1 christos uarg[0] = (intptr_t) SCARG(p, store).i32; /* netbsd32_uuidp_t */
2449 1.1 christos iarg[1] = SCARG(p, count); /* int */
2450 1.1 christos *n_args = 2;
2451 1.1 christos break;
2452 1.1 christos }
2453 1.1 christos /* netbsd32_getvfsstat */
2454 1.1 christos case 356: {
2455 1.33 christos const struct compat_90_netbsd32_getvfsstat_args *p = params;
2456 1.33 christos uarg[0] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statvfs90p_t */
2457 1.1 christos iarg[1] = SCARG(p, bufsize); /* netbsd32_size_t */
2458 1.1 christos iarg[2] = SCARG(p, flags); /* int */
2459 1.1 christos *n_args = 3;
2460 1.1 christos break;
2461 1.1 christos }
2462 1.1 christos /* netbsd32_statvfs1 */
2463 1.1 christos case 357: {
2464 1.33 christos const struct compat_90_netbsd32_statvfs1_args *p = params;
2465 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2466 1.33 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statvfs90p_t */
2467 1.1 christos iarg[2] = SCARG(p, flags); /* int */
2468 1.1 christos *n_args = 3;
2469 1.1 christos break;
2470 1.1 christos }
2471 1.1 christos /* netbsd32_fstatvfs1 */
2472 1.1 christos case 358: {
2473 1.33 christos const struct compat_90_netbsd32_fstatvfs1_args *p = params;
2474 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2475 1.33 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statvfs90p_t */
2476 1.1 christos iarg[2] = SCARG(p, flags); /* int */
2477 1.1 christos *n_args = 3;
2478 1.1 christos break;
2479 1.1 christos }
2480 1.1 christos /* netbsd32_fhstatvfs1 */
2481 1.1 christos case 359: {
2482 1.17 christos const struct compat_30_netbsd32_fhstatvfs1_args *p = params;
2483 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp).i32; /* netbsd32_fhandlep_t */
2484 1.33 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statvfs90p_t */
2485 1.1 christos iarg[2] = SCARG(p, flags); /* int */
2486 1.1 christos *n_args = 3;
2487 1.1 christos break;
2488 1.1 christos }
2489 1.1 christos /* netbsd32_extattrctl */
2490 1.1 christos case 360: {
2491 1.17 christos const struct netbsd32_extattrctl_args *p = params;
2492 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2493 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
2494 1.1 christos uarg[2] = (intptr_t) SCARG(p, filename).i32; /* netbsd32_charp */
2495 1.1 christos iarg[3] = SCARG(p, attrnamespace); /* int */
2496 1.1 christos uarg[4] = (intptr_t) SCARG(p, attrname).i32; /* netbsd32_charp */
2497 1.1 christos *n_args = 5;
2498 1.1 christos break;
2499 1.1 christos }
2500 1.1 christos /* netbsd32_extattr_set_file */
2501 1.1 christos case 361: {
2502 1.17 christos const struct netbsd32_extattr_set_file_args *p = params;
2503 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2504 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2505 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname).i32; /* netbsd32_charp */
2506 1.1 christos uarg[3] = (intptr_t) SCARG(p, data).i32; /* netbsd32_voidp */
2507 1.1 christos iarg[4] = SCARG(p, nbytes); /* netbsd32_size_t */
2508 1.1 christos *n_args = 5;
2509 1.1 christos break;
2510 1.1 christos }
2511 1.1 christos /* netbsd32_extattr_get_file */
2512 1.1 christos case 362: {
2513 1.17 christos const struct netbsd32_extattr_get_file_args *p = params;
2514 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2515 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2516 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname).i32; /* netbsd32_charp */
2517 1.1 christos uarg[3] = (intptr_t) SCARG(p, data).i32; /* netbsd32_voidp */
2518 1.1 christos iarg[4] = SCARG(p, nbytes); /* netbsd32_size_t */
2519 1.1 christos *n_args = 5;
2520 1.1 christos break;
2521 1.1 christos }
2522 1.1 christos /* netbsd32_extattr_delete_file */
2523 1.1 christos case 363: {
2524 1.17 christos const struct netbsd32_extattr_delete_file_args *p = params;
2525 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2526 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2527 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname).i32; /* netbsd32_charp */
2528 1.1 christos *n_args = 3;
2529 1.1 christos break;
2530 1.1 christos }
2531 1.1 christos /* netbsd32_extattr_set_fd */
2532 1.1 christos case 364: {
2533 1.17 christos const struct netbsd32_extattr_set_fd_args *p = params;
2534 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2535 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2536 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname).i32; /* netbsd32_charp */
2537 1.1 christos uarg[3] = (intptr_t) SCARG(p, data).i32; /* netbsd32_voidp */
2538 1.1 christos iarg[4] = SCARG(p, nbytes); /* netbsd32_size_t */
2539 1.1 christos *n_args = 5;
2540 1.1 christos break;
2541 1.1 christos }
2542 1.1 christos /* netbsd32_extattr_get_fd */
2543 1.1 christos case 365: {
2544 1.17 christos const struct netbsd32_extattr_get_fd_args *p = params;
2545 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2546 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2547 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname).i32; /* netbsd32_charp */
2548 1.1 christos uarg[3] = (intptr_t) SCARG(p, data).i32; /* netbsd32_voidp */
2549 1.1 christos iarg[4] = SCARG(p, nbytes); /* netbsd32_size_t */
2550 1.1 christos *n_args = 5;
2551 1.1 christos break;
2552 1.1 christos }
2553 1.1 christos /* netbsd32_extattr_delete_fd */
2554 1.1 christos case 366: {
2555 1.17 christos const struct netbsd32_extattr_delete_fd_args *p = params;
2556 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2557 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2558 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname).i32; /* netbsd32_charp */
2559 1.1 christos *n_args = 3;
2560 1.1 christos break;
2561 1.1 christos }
2562 1.1 christos /* netbsd32_extattr_set_link */
2563 1.1 christos case 367: {
2564 1.17 christos const struct netbsd32_extattr_set_link_args *p = params;
2565 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2566 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2567 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname).i32; /* netbsd32_charp */
2568 1.1 christos uarg[3] = (intptr_t) SCARG(p, data).i32; /* netbsd32_voidp */
2569 1.1 christos iarg[4] = SCARG(p, nbytes); /* netbsd32_size_t */
2570 1.1 christos *n_args = 5;
2571 1.1 christos break;
2572 1.1 christos }
2573 1.1 christos /* netbsd32_extattr_get_link */
2574 1.1 christos case 368: {
2575 1.17 christos const struct netbsd32_extattr_get_link_args *p = params;
2576 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2577 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2578 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname).i32; /* netbsd32_charp */
2579 1.1 christos uarg[3] = (intptr_t) SCARG(p, data).i32; /* netbsd32_voidp */
2580 1.1 christos iarg[4] = SCARG(p, nbytes); /* netbsd32_size_t */
2581 1.1 christos *n_args = 5;
2582 1.1 christos break;
2583 1.1 christos }
2584 1.1 christos /* netbsd32_extattr_delete_link */
2585 1.1 christos case 369: {
2586 1.17 christos const struct netbsd32_extattr_delete_link_args *p = params;
2587 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2588 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2589 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname).i32; /* netbsd32_charp */
2590 1.1 christos *n_args = 3;
2591 1.1 christos break;
2592 1.1 christos }
2593 1.1 christos /* netbsd32_extattr_list_fd */
2594 1.1 christos case 370: {
2595 1.17 christos const struct netbsd32_extattr_list_fd_args *p = params;
2596 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2597 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2598 1.1 christos uarg[2] = (intptr_t) SCARG(p, data).i32; /* netbsd32_voidp */
2599 1.1 christos iarg[3] = SCARG(p, nbytes); /* netbsd32_size_t */
2600 1.1 christos *n_args = 4;
2601 1.1 christos break;
2602 1.1 christos }
2603 1.1 christos /* netbsd32_extattr_list_file */
2604 1.1 christos case 371: {
2605 1.17 christos const struct netbsd32_extattr_list_file_args *p = params;
2606 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2607 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2608 1.1 christos uarg[2] = (intptr_t) SCARG(p, data).i32; /* netbsd32_voidp */
2609 1.1 christos iarg[3] = SCARG(p, nbytes); /* netbsd32_size_t */
2610 1.1 christos *n_args = 4;
2611 1.1 christos break;
2612 1.1 christos }
2613 1.1 christos /* netbsd32_extattr_list_link */
2614 1.1 christos case 372: {
2615 1.17 christos const struct netbsd32_extattr_list_link_args *p = params;
2616 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2617 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */
2618 1.1 christos uarg[2] = (intptr_t) SCARG(p, data).i32; /* netbsd32_voidp */
2619 1.1 christos iarg[3] = SCARG(p, nbytes); /* netbsd32_size_t */
2620 1.1 christos *n_args = 4;
2621 1.1 christos break;
2622 1.1 christos }
2623 1.1 christos /* netbsd32_pselect */
2624 1.1 christos case 373: {
2625 1.17 christos const struct compat_50_netbsd32_pselect_args *p = params;
2626 1.1 christos iarg[0] = SCARG(p, nd); /* int */
2627 1.1 christos uarg[1] = (intptr_t) SCARG(p, in).i32; /* netbsd32_fd_setp_t */
2628 1.1 christos uarg[2] = (intptr_t) SCARG(p, ou).i32; /* netbsd32_fd_setp_t */
2629 1.1 christos uarg[3] = (intptr_t) SCARG(p, ex).i32; /* netbsd32_fd_setp_t */
2630 1.1 christos uarg[4] = (intptr_t) SCARG(p, ts).i32; /* netbsd32_timespec50p_t */
2631 1.1 christos uarg[5] = (intptr_t) SCARG(p, mask).i32; /* netbsd32_sigsetp_t */
2632 1.1 christos *n_args = 6;
2633 1.1 christos break;
2634 1.1 christos }
2635 1.1 christos /* netbsd32_pollts */
2636 1.1 christos case 374: {
2637 1.17 christos const struct compat_50_netbsd32_pollts_args *p = params;
2638 1.1 christos uarg[0] = (intptr_t) SCARG(p, fds).i32; /* netbsd32_pollfdp_t */
2639 1.1 christos uarg[1] = SCARG(p, nfds); /* u_int */
2640 1.1 christos uarg[2] = (intptr_t) SCARG(p, ts).i32; /* netbsd32_timespec50p_t */
2641 1.1 christos uarg[3] = (intptr_t) SCARG(p, mask).i32; /* netbsd32_sigsetp_t */
2642 1.1 christos *n_args = 4;
2643 1.1 christos break;
2644 1.1 christos }
2645 1.1 christos /* netbsd32_setxattr */
2646 1.1 christos case 375: {
2647 1.17 christos const struct netbsd32_setxattr_args *p = params;
2648 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2649 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
2650 1.1 christos uarg[2] = (intptr_t) SCARG(p, value).i32; /* netbsd32_voidp */
2651 1.1 christos iarg[3] = SCARG(p, size); /* netbsd32_size_t */
2652 1.1 christos iarg[4] = SCARG(p, flags); /* int */
2653 1.1 christos *n_args = 5;
2654 1.1 christos break;
2655 1.1 christos }
2656 1.1 christos /* netbsd32_lsetxattr */
2657 1.1 christos case 376: {
2658 1.17 christos const struct netbsd32_lsetxattr_args *p = params;
2659 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2660 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
2661 1.1 christos uarg[2] = (intptr_t) SCARG(p, value).i32; /* netbsd32_voidp */
2662 1.1 christos iarg[3] = SCARG(p, size); /* netbsd32_size_t */
2663 1.1 christos iarg[4] = SCARG(p, flags); /* int */
2664 1.1 christos *n_args = 5;
2665 1.1 christos break;
2666 1.1 christos }
2667 1.1 christos /* netbsd32_fsetxattr */
2668 1.1 christos case 377: {
2669 1.17 christos const struct netbsd32_fsetxattr_args *p = params;
2670 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2671 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
2672 1.1 christos uarg[2] = (intptr_t) SCARG(p, value).i32; /* netbsd32_voidp */
2673 1.1 christos iarg[3] = SCARG(p, size); /* netbsd32_size_t */
2674 1.1 christos iarg[4] = SCARG(p, flags); /* int */
2675 1.1 christos *n_args = 5;
2676 1.1 christos break;
2677 1.1 christos }
2678 1.1 christos /* netbsd32_getxattr */
2679 1.1 christos case 378: {
2680 1.17 christos const struct netbsd32_getxattr_args *p = params;
2681 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2682 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
2683 1.1 christos uarg[2] = (intptr_t) SCARG(p, value).i32; /* netbsd32_voidp */
2684 1.1 christos iarg[3] = SCARG(p, size); /* netbsd32_size_t */
2685 1.1 christos *n_args = 4;
2686 1.1 christos break;
2687 1.1 christos }
2688 1.1 christos /* netbsd32_lgetxattr */
2689 1.1 christos case 379: {
2690 1.17 christos const struct netbsd32_lgetxattr_args *p = params;
2691 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2692 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
2693 1.1 christos uarg[2] = (intptr_t) SCARG(p, value).i32; /* netbsd32_voidp */
2694 1.1 christos iarg[3] = SCARG(p, size); /* netbsd32_size_t */
2695 1.1 christos *n_args = 4;
2696 1.1 christos break;
2697 1.1 christos }
2698 1.1 christos /* netbsd32_fgetxattr */
2699 1.1 christos case 380: {
2700 1.17 christos const struct netbsd32_fgetxattr_args *p = params;
2701 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2702 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
2703 1.1 christos uarg[2] = (intptr_t) SCARG(p, value).i32; /* netbsd32_voidp */
2704 1.1 christos iarg[3] = SCARG(p, size); /* netbsd32_size_t */
2705 1.1 christos *n_args = 4;
2706 1.1 christos break;
2707 1.1 christos }
2708 1.1 christos /* netbsd32_listxattr */
2709 1.1 christos case 381: {
2710 1.17 christos const struct netbsd32_listxattr_args *p = params;
2711 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2712 1.1 christos uarg[1] = (intptr_t) SCARG(p, list).i32; /* netbsd32_charp */
2713 1.1 christos iarg[2] = SCARG(p, size); /* netbsd32_size_t */
2714 1.1 christos *n_args = 3;
2715 1.1 christos break;
2716 1.1 christos }
2717 1.1 christos /* netbsd32_llistxattr */
2718 1.1 christos case 382: {
2719 1.17 christos const struct netbsd32_llistxattr_args *p = params;
2720 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2721 1.1 christos uarg[1] = (intptr_t) SCARG(p, list).i32; /* netbsd32_charp */
2722 1.1 christos iarg[2] = SCARG(p, size); /* netbsd32_size_t */
2723 1.1 christos *n_args = 3;
2724 1.1 christos break;
2725 1.1 christos }
2726 1.1 christos /* netbsd32_flistxattr */
2727 1.1 christos case 383: {
2728 1.17 christos const struct netbsd32_flistxattr_args *p = params;
2729 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2730 1.1 christos uarg[1] = (intptr_t) SCARG(p, list).i32; /* netbsd32_charp */
2731 1.1 christos iarg[2] = SCARG(p, size); /* netbsd32_size_t */
2732 1.1 christos *n_args = 3;
2733 1.1 christos break;
2734 1.1 christos }
2735 1.1 christos /* netbsd32_removexattr */
2736 1.1 christos case 384: {
2737 1.17 christos const struct netbsd32_removexattr_args *p = params;
2738 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2739 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
2740 1.1 christos *n_args = 2;
2741 1.1 christos break;
2742 1.1 christos }
2743 1.1 christos /* netbsd32_lremovexattr */
2744 1.1 christos case 385: {
2745 1.17 christos const struct netbsd32_lremovexattr_args *p = params;
2746 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2747 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
2748 1.1 christos *n_args = 2;
2749 1.1 christos break;
2750 1.1 christos }
2751 1.1 christos /* netbsd32_fremovexattr */
2752 1.1 christos case 386: {
2753 1.17 christos const struct netbsd32_fremovexattr_args *p = params;
2754 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2755 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_charp */
2756 1.1 christos *n_args = 2;
2757 1.1 christos break;
2758 1.1 christos }
2759 1.1 christos /* netbsd32___stat30 */
2760 1.1 christos case 387: {
2761 1.17 christos const struct compat_50_netbsd32___stat30_args *p = params;
2762 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2763 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub).i32; /* netbsd32_stat50p_t */
2764 1.1 christos *n_args = 2;
2765 1.1 christos break;
2766 1.1 christos }
2767 1.1 christos /* netbsd32___fstat30 */
2768 1.1 christos case 388: {
2769 1.17 christos const struct compat_50_netbsd32___fstat30_args *p = params;
2770 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2771 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb).i32; /* netbsd32_stat50p_t */
2772 1.1 christos *n_args = 2;
2773 1.1 christos break;
2774 1.1 christos }
2775 1.1 christos /* netbsd32___lstat30 */
2776 1.1 christos case 389: {
2777 1.17 christos const struct compat_50_netbsd32___lstat30_args *p = params;
2778 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2779 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub).i32; /* netbsd32_stat50p_t */
2780 1.1 christos *n_args = 2;
2781 1.1 christos break;
2782 1.1 christos }
2783 1.1 christos /* netbsd32___getdents30 */
2784 1.1 christos case 390: {
2785 1.17 christos const struct netbsd32___getdents30_args *p = params;
2786 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2787 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_charp */
2788 1.1 christos iarg[2] = SCARG(p, count); /* netbsd32_size_t */
2789 1.1 christos *n_args = 3;
2790 1.1 christos break;
2791 1.1 christos }
2792 1.1 christos /* netbsd32___fhstat30 */
2793 1.1 christos case 392: {
2794 1.17 christos const struct compat_30_netbsd32___fhstat30_args *p = params;
2795 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp).i32; /* netbsd32_fhandlep_t */
2796 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb).i32; /* netbsd32_stat50p_t */
2797 1.1 christos *n_args = 2;
2798 1.1 christos break;
2799 1.1 christos }
2800 1.1 christos /* netbsd32_ntp_gettime */
2801 1.1 christos case 393: {
2802 1.17 christos const struct compat_50_netbsd32_ntp_gettime_args *p = params;
2803 1.1 christos uarg[0] = (intptr_t) SCARG(p, ntvp).i32; /* netbsd32_ntptimeval50p_t */
2804 1.1 christos *n_args = 1;
2805 1.1 christos break;
2806 1.1 christos }
2807 1.1 christos /* netbsd32___socket30 */
2808 1.1 christos case 394: {
2809 1.17 christos const struct netbsd32___socket30_args *p = params;
2810 1.1 christos iarg[0] = SCARG(p, domain); /* int */
2811 1.1 christos iarg[1] = SCARG(p, type); /* int */
2812 1.1 christos iarg[2] = SCARG(p, protocol); /* int */
2813 1.1 christos *n_args = 3;
2814 1.1 christos break;
2815 1.1 christos }
2816 1.1 christos /* netbsd32___getfh30 */
2817 1.1 christos case 395: {
2818 1.17 christos const struct netbsd32___getfh30_args *p = params;
2819 1.1 christos uarg[0] = (intptr_t) SCARG(p, fname).i32; /* netbsd32_charp */
2820 1.1 christos uarg[1] = (intptr_t) SCARG(p, fhp).i32; /* netbsd32_pointer_t */
2821 1.1 christos uarg[2] = (intptr_t) SCARG(p, fh_size).i32; /* netbsd32_size_tp */
2822 1.1 christos *n_args = 3;
2823 1.1 christos break;
2824 1.1 christos }
2825 1.1 christos /* netbsd32___fhopen40 */
2826 1.1 christos case 396: {
2827 1.17 christos const struct netbsd32___fhopen40_args *p = params;
2828 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp).i32; /* netbsd32_pointer_t */
2829 1.1 christos iarg[1] = SCARG(p, fh_size); /* netbsd32_size_t */
2830 1.1 christos iarg[2] = SCARG(p, flags); /* int */
2831 1.1 christos *n_args = 3;
2832 1.1 christos break;
2833 1.1 christos }
2834 1.33 christos /* netbsd32_fhstatvfs1 */
2835 1.1 christos case 397: {
2836 1.33 christos const struct compat_90_netbsd32_fhstatvfs1_args *p = params;
2837 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp).i32; /* netbsd32_pointer_t */
2838 1.1 christos iarg[1] = SCARG(p, fh_size); /* netbsd32_size_t */
2839 1.33 christos uarg[2] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statvfs90p_t */
2840 1.1 christos iarg[3] = SCARG(p, flags); /* int */
2841 1.1 christos *n_args = 4;
2842 1.1 christos break;
2843 1.1 christos }
2844 1.1 christos /* netbsd32___fhstat40 */
2845 1.1 christos case 398: {
2846 1.17 christos const struct compat_50_netbsd32___fhstat40_args *p = params;
2847 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp).i32; /* netbsd32_pointer_t */
2848 1.1 christos iarg[1] = SCARG(p, fh_size); /* netbsd32_size_t */
2849 1.1 christos uarg[2] = (intptr_t) SCARG(p, sb).i32; /* netbsd32_stat50p_t */
2850 1.1 christos *n_args = 3;
2851 1.1 christos break;
2852 1.1 christos }
2853 1.1 christos /* netbsd32___mount50 */
2854 1.1 christos case 410: {
2855 1.17 christos const struct netbsd32___mount50_args *p = params;
2856 1.1 christos uarg[0] = (intptr_t) SCARG(p, type).i32; /* netbsd32_charp */
2857 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
2858 1.1 christos iarg[2] = SCARG(p, flags); /* int */
2859 1.1 christos uarg[3] = (intptr_t) SCARG(p, data).i32; /* netbsd32_voidp */
2860 1.1 christos iarg[4] = SCARG(p, data_len); /* netbsd32_size_t */
2861 1.1 christos *n_args = 5;
2862 1.1 christos break;
2863 1.1 christos }
2864 1.1 christos /* netbsd32_mremap */
2865 1.1 christos case 411: {
2866 1.17 christos const struct netbsd32_mremap_args *p = params;
2867 1.1 christos uarg[0] = (intptr_t) SCARG(p, old_address).i32; /* netbsd32_voidp */
2868 1.1 christos iarg[1] = SCARG(p, old_size); /* netbsd32_size_t */
2869 1.1 christos uarg[2] = (intptr_t) SCARG(p, new_address).i32; /* netbsd32_voidp */
2870 1.1 christos iarg[3] = SCARG(p, new_size); /* netbsd32_size_t */
2871 1.1 christos iarg[4] = SCARG(p, flags); /* int */
2872 1.1 christos *n_args = 5;
2873 1.1 christos break;
2874 1.1 christos }
2875 1.5 martin /* netbsd32_pset_create */
2876 1.5 martin case 412: {
2877 1.17 christos const struct netbsd32_pset_create_args *p = params;
2878 1.5 martin uarg[0] = (intptr_t) SCARG(p, psid).i32; /* netbsd32_psetidp_t */
2879 1.5 martin *n_args = 1;
2880 1.5 martin break;
2881 1.5 martin }
2882 1.5 martin /* netbsd32_pset_destroy */
2883 1.5 martin case 413: {
2884 1.17 christos const struct netbsd32_pset_destroy_args *p = params;
2885 1.5 martin iarg[0] = SCARG(p, psid); /* psetid_t */
2886 1.5 martin *n_args = 1;
2887 1.5 martin break;
2888 1.5 martin }
2889 1.5 martin /* netbsd32_pset_assign */
2890 1.5 martin case 414: {
2891 1.17 christos const struct netbsd32_pset_assign_args *p = params;
2892 1.5 martin iarg[0] = SCARG(p, psid); /* psetid_t */
2893 1.5 martin iarg[1] = SCARG(p, cpuid); /* cpuid_t */
2894 1.5 martin uarg[2] = (intptr_t) SCARG(p, opsid).i32; /* netbsd32_psetidp_t */
2895 1.5 martin *n_args = 3;
2896 1.5 martin break;
2897 1.5 martin }
2898 1.5 martin /* netbsd32__pset_bind */
2899 1.5 martin case 415: {
2900 1.17 christos const struct netbsd32__pset_bind_args *p = params;
2901 1.5 martin iarg[0] = SCARG(p, idtype); /* idtype_t */
2902 1.5 martin iarg[1] = SCARG(p, first_id); /* id_t */
2903 1.5 martin iarg[2] = SCARG(p, second_id); /* id_t */
2904 1.5 martin iarg[3] = SCARG(p, psid); /* psetid_t */
2905 1.5 martin uarg[4] = (intptr_t) SCARG(p, opsid).i32; /* netbsd32_psetidp_t */
2906 1.5 martin *n_args = 5;
2907 1.5 martin break;
2908 1.5 martin }
2909 1.1 christos /* netbsd32___posix_fadvise50 */
2910 1.1 christos case 416: {
2911 1.17 christos const struct netbsd32___posix_fadvise50_args *p = params;
2912 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2913 1.1 christos iarg[1] = SCARG(p, PAD); /* int */
2914 1.1 christos iarg[2] = SCARG(p, offset); /* netbsd32_off_t */
2915 1.1 christos iarg[3] = SCARG(p, len); /* netbsd32_off_t */
2916 1.1 christos iarg[4] = SCARG(p, advice); /* int */
2917 1.1 christos *n_args = 5;
2918 1.1 christos break;
2919 1.1 christos }
2920 1.1 christos /* netbsd32___select50 */
2921 1.1 christos case 417: {
2922 1.17 christos const struct netbsd32___select50_args *p = params;
2923 1.1 christos iarg[0] = SCARG(p, nd); /* int */
2924 1.1 christos uarg[1] = (intptr_t) SCARG(p, in).i32; /* netbsd32_fd_setp_t */
2925 1.1 christos uarg[2] = (intptr_t) SCARG(p, ou).i32; /* netbsd32_fd_setp_t */
2926 1.1 christos uarg[3] = (intptr_t) SCARG(p, ex).i32; /* netbsd32_fd_setp_t */
2927 1.1 christos uarg[4] = (intptr_t) SCARG(p, tv).i32; /* netbsd32_timevalp_t */
2928 1.1 christos *n_args = 5;
2929 1.1 christos break;
2930 1.1 christos }
2931 1.1 christos /* netbsd32___gettimeofday50 */
2932 1.1 christos case 418: {
2933 1.17 christos const struct netbsd32___gettimeofday50_args *p = params;
2934 1.1 christos uarg[0] = (intptr_t) SCARG(p, tp).i32; /* netbsd32_timevalp_t */
2935 1.1 christos uarg[1] = (intptr_t) SCARG(p, tzp).i32; /* netbsd32_voidp */
2936 1.1 christos *n_args = 2;
2937 1.1 christos break;
2938 1.1 christos }
2939 1.1 christos /* netbsd32___settimeofday50 */
2940 1.1 christos case 419: {
2941 1.17 christos const struct netbsd32___settimeofday50_args *p = params;
2942 1.1 christos uarg[0] = (intptr_t) SCARG(p, tv).i32; /* const netbsd32_timevalp_t */
2943 1.1 christos uarg[1] = (intptr_t) SCARG(p, tzp).i32; /* const netbsd32_voidp */
2944 1.1 christos *n_args = 2;
2945 1.1 christos break;
2946 1.1 christos }
2947 1.1 christos /* netbsd32___utimes50 */
2948 1.1 christos case 420: {
2949 1.17 christos const struct netbsd32___utimes50_args *p = params;
2950 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
2951 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr).i32; /* const netbsd32_timevalp_t */
2952 1.1 christos *n_args = 2;
2953 1.1 christos break;
2954 1.1 christos }
2955 1.1 christos /* netbsd32___adjtime50 */
2956 1.1 christos case 421: {
2957 1.17 christos const struct netbsd32___adjtime50_args *p = params;
2958 1.1 christos uarg[0] = (intptr_t) SCARG(p, delta).i32; /* const netbsd32_timevalp_t */
2959 1.1 christos uarg[1] = (intptr_t) SCARG(p, olddelta).i32; /* netbsd32_timevalp_t */
2960 1.1 christos *n_args = 2;
2961 1.1 christos break;
2962 1.1 christos }
2963 1.1 christos /* netbsd32___futimes50 */
2964 1.1 christos case 423: {
2965 1.17 christos const struct netbsd32___futimes50_args *p = params;
2966 1.1 christos iarg[0] = SCARG(p, fd); /* int */
2967 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr).i32; /* const netbsd32_timevalp_t */
2968 1.1 christos *n_args = 2;
2969 1.1 christos break;
2970 1.1 christos }
2971 1.1 christos /* netbsd32___lutimes50 */
2972 1.1 christos case 424: {
2973 1.17 christos const struct netbsd32___lutimes50_args *p = params;
2974 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
2975 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr).i32; /* const netbsd32_timevalp_t */
2976 1.1 christos *n_args = 2;
2977 1.1 christos break;
2978 1.1 christos }
2979 1.1 christos /* netbsd32___setitimer50 */
2980 1.1 christos case 425: {
2981 1.17 christos const struct netbsd32___setitimer50_args *p = params;
2982 1.1 christos iarg[0] = SCARG(p, which); /* int */
2983 1.1 christos uarg[1] = (intptr_t) SCARG(p, itv).i32; /* const netbsd32_itimervalp_t */
2984 1.1 christos uarg[2] = (intptr_t) SCARG(p, oitv).i32; /* netbsd32_itimervalp_t */
2985 1.1 christos *n_args = 3;
2986 1.1 christos break;
2987 1.1 christos }
2988 1.1 christos /* netbsd32___getitimer50 */
2989 1.1 christos case 426: {
2990 1.17 christos const struct netbsd32___getitimer50_args *p = params;
2991 1.1 christos iarg[0] = SCARG(p, which); /* int */
2992 1.1 christos uarg[1] = (intptr_t) SCARG(p, itv).i32; /* netbsd32_itimervalp_t */
2993 1.1 christos *n_args = 2;
2994 1.1 christos break;
2995 1.1 christos }
2996 1.1 christos /* netbsd32___clock_gettime50 */
2997 1.1 christos case 427: {
2998 1.17 christos const struct netbsd32___clock_gettime50_args *p = params;
2999 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */
3000 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp).i32; /* netbsd32_timespecp_t */
3001 1.1 christos *n_args = 2;
3002 1.1 christos break;
3003 1.1 christos }
3004 1.1 christos /* netbsd32___clock_settime50 */
3005 1.1 christos case 428: {
3006 1.17 christos const struct netbsd32___clock_settime50_args *p = params;
3007 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */
3008 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp).i32; /* const netbsd32_timespecp_t */
3009 1.1 christos *n_args = 2;
3010 1.1 christos break;
3011 1.1 christos }
3012 1.1 christos /* netbsd32___clock_getres50 */
3013 1.1 christos case 429: {
3014 1.17 christos const struct netbsd32___clock_getres50_args *p = params;
3015 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */
3016 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp).i32; /* netbsd32_timespecp_t */
3017 1.1 christos *n_args = 2;
3018 1.1 christos break;
3019 1.1 christos }
3020 1.1 christos /* netbsd32___nanosleep50 */
3021 1.1 christos case 430: {
3022 1.17 christos const struct netbsd32___nanosleep50_args *p = params;
3023 1.1 christos uarg[0] = (intptr_t) SCARG(p, rqtp).i32; /* const netbsd32_timespecp_t */
3024 1.1 christos uarg[1] = (intptr_t) SCARG(p, rmtp).i32; /* netbsd32_timespecp_t */
3025 1.1 christos *n_args = 2;
3026 1.1 christos break;
3027 1.1 christos }
3028 1.1 christos /* netbsd32_____sigtimedwait50 */
3029 1.1 christos case 431: {
3030 1.17 christos const struct netbsd32_____sigtimedwait50_args *p = params;
3031 1.1 christos uarg[0] = (intptr_t) SCARG(p, set).i32; /* const netbsd32_sigsetp_t */
3032 1.1 christos uarg[1] = (intptr_t) SCARG(p, info).i32; /* netbsd32_siginfop_t */
3033 1.1 christos uarg[2] = (intptr_t) SCARG(p, timeout).i32; /* netbsd32_timespecp_t */
3034 1.1 christos *n_args = 3;
3035 1.1 christos break;
3036 1.1 christos }
3037 1.4 martin /* netbsd32___mq_timedsend50 */
3038 1.4 martin case 432: {
3039 1.17 christos const struct netbsd32___mq_timedsend50_args *p = params;
3040 1.4 martin iarg[0] = SCARG(p, mqdes); /* mqd_t */
3041 1.4 martin uarg[1] = (intptr_t) SCARG(p, msg_ptr).i32; /* const netbsd32_charp */
3042 1.4 martin iarg[2] = SCARG(p, msg_len); /* netbsd32_size_t */
3043 1.4 martin uarg[3] = SCARG(p, msg_prio); /* unsigned */
3044 1.4 martin uarg[4] = (intptr_t) SCARG(p, abs_timeout).i32; /* const netbsd32_timespecp_t */
3045 1.4 martin *n_args = 5;
3046 1.4 martin break;
3047 1.4 martin }
3048 1.4 martin /* netbsd32___mq_timedreceive50 */
3049 1.4 martin case 433: {
3050 1.17 christos const struct netbsd32___mq_timedreceive50_args *p = params;
3051 1.4 martin iarg[0] = SCARG(p, mqdes); /* mqd_t */
3052 1.4 martin uarg[1] = (intptr_t) SCARG(p, msg_ptr).i32; /* netbsd32_charp */
3053 1.4 martin iarg[2] = SCARG(p, msg_len); /* netbsd32_size_t */
3054 1.4 martin uarg[3] = (intptr_t) SCARG(p, msg_prio).i32; /* netbsd32_uintp */
3055 1.4 martin uarg[4] = (intptr_t) SCARG(p, abs_timeout).i32; /* const netbsd32_timespecp_t */
3056 1.4 martin *n_args = 5;
3057 1.4 martin break;
3058 1.4 martin }
3059 1.1 christos /* netbsd32__lwp_park */
3060 1.1 christos case 434: {
3061 1.17 christos const struct compat_60_netbsd32__lwp_park_args *p = params;
3062 1.1 christos uarg[0] = (intptr_t) SCARG(p, ts).i32; /* const netbsd32_timespecp_t */
3063 1.1 christos iarg[1] = SCARG(p, unpark); /* lwpid_t */
3064 1.1 christos uarg[2] = (intptr_t) SCARG(p, hint).i32; /* const netbsd32_voidp */
3065 1.1 christos uarg[3] = (intptr_t) SCARG(p, unparkhint).i32; /* const netbsd32_voidp */
3066 1.1 christos *n_args = 4;
3067 1.1 christos break;
3068 1.1 christos }
3069 1.1 christos /* netbsd32___kevent50 */
3070 1.1 christos case 435: {
3071 1.17 christos const struct netbsd32___kevent50_args *p = params;
3072 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3073 1.1 christos uarg[1] = (intptr_t) SCARG(p, changelist).i32; /* const netbsd32_keventp_t */
3074 1.1 christos iarg[2] = SCARG(p, nchanges); /* netbsd32_size_t */
3075 1.1 christos uarg[3] = (intptr_t) SCARG(p, eventlist).i32; /* netbsd32_keventp_t */
3076 1.1 christos iarg[4] = SCARG(p, nevents); /* netbsd32_size_t */
3077 1.1 christos uarg[5] = (intptr_t) SCARG(p, timeout).i32; /* const netbsd32_timespecp_t */
3078 1.1 christos *n_args = 6;
3079 1.1 christos break;
3080 1.1 christos }
3081 1.1 christos /* netbsd32___pselect50 */
3082 1.1 christos case 436: {
3083 1.17 christos const struct netbsd32___pselect50_args *p = params;
3084 1.1 christos iarg[0] = SCARG(p, nd); /* int */
3085 1.1 christos uarg[1] = (intptr_t) SCARG(p, in).i32; /* netbsd32_fd_setp_t */
3086 1.1 christos uarg[2] = (intptr_t) SCARG(p, ou).i32; /* netbsd32_fd_setp_t */
3087 1.1 christos uarg[3] = (intptr_t) SCARG(p, ex).i32; /* netbsd32_fd_setp_t */
3088 1.1 christos uarg[4] = (intptr_t) SCARG(p, ts).i32; /* const netbsd32_timespecp_t */
3089 1.1 christos uarg[5] = (intptr_t) SCARG(p, mask).i32; /* const netbsd32_sigsetp_t */
3090 1.1 christos *n_args = 6;
3091 1.1 christos break;
3092 1.1 christos }
3093 1.1 christos /* netbsd32___pollts50 */
3094 1.1 christos case 437: {
3095 1.17 christos const struct netbsd32___pollts50_args *p = params;
3096 1.1 christos uarg[0] = (intptr_t) SCARG(p, fds).i32; /* netbsd32_pollfdp_t */
3097 1.1 christos uarg[1] = SCARG(p, nfds); /* u_int */
3098 1.1 christos uarg[2] = (intptr_t) SCARG(p, ts).i32; /* const netbsd32_timespecp_t */
3099 1.1 christos uarg[3] = (intptr_t) SCARG(p, mask).i32; /* const netbsd32_sigsetp_t */
3100 1.1 christos *n_args = 4;
3101 1.1 christos break;
3102 1.1 christos }
3103 1.1 christos /* netbsd32___stat50 */
3104 1.1 christos case 439: {
3105 1.17 christos const struct netbsd32___stat50_args *p = params;
3106 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3107 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub).i32; /* netbsd32_statp_t */
3108 1.1 christos *n_args = 2;
3109 1.1 christos break;
3110 1.1 christos }
3111 1.1 christos /* netbsd32___fstat50 */
3112 1.1 christos case 440: {
3113 1.17 christos const struct netbsd32___fstat50_args *p = params;
3114 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3115 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb).i32; /* netbsd32_statp_t */
3116 1.1 christos *n_args = 2;
3117 1.1 christos break;
3118 1.1 christos }
3119 1.1 christos /* netbsd32___lstat50 */
3120 1.1 christos case 441: {
3121 1.17 christos const struct netbsd32___lstat50_args *p = params;
3122 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3123 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub).i32; /* netbsd32_statp_t */
3124 1.1 christos *n_args = 2;
3125 1.1 christos break;
3126 1.1 christos }
3127 1.1 christos /* netbsd32_____semctl50 */
3128 1.1 christos case 442: {
3129 1.17 christos const struct netbsd32_____semctl50_args *p = params;
3130 1.1 christos iarg[0] = SCARG(p, semid); /* int */
3131 1.1 christos iarg[1] = SCARG(p, semnum); /* int */
3132 1.1 christos iarg[2] = SCARG(p, cmd); /* int */
3133 1.1 christos uarg[3] = (intptr_t) SCARG(p, arg).i32; /* netbsd32_semunp_t */
3134 1.1 christos *n_args = 4;
3135 1.1 christos break;
3136 1.1 christos }
3137 1.1 christos /* netbsd32___shmctl50 */
3138 1.1 christos case 443: {
3139 1.17 christos const struct netbsd32___shmctl50_args *p = params;
3140 1.1 christos iarg[0] = SCARG(p, shmid); /* int */
3141 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
3142 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_shmid_dsp_t */
3143 1.1 christos *n_args = 3;
3144 1.1 christos break;
3145 1.1 christos }
3146 1.1 christos /* netbsd32___msgctl50 */
3147 1.1 christos case 444: {
3148 1.17 christos const struct netbsd32___msgctl50_args *p = params;
3149 1.1 christos iarg[0] = SCARG(p, msqid); /* int */
3150 1.1 christos iarg[1] = SCARG(p, cmd); /* int */
3151 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_msqid_dsp_t */
3152 1.1 christos *n_args = 3;
3153 1.1 christos break;
3154 1.1 christos }
3155 1.1 christos /* netbsd32___getrusage50 */
3156 1.1 christos case 445: {
3157 1.17 christos const struct netbsd32___getrusage50_args *p = params;
3158 1.1 christos iarg[0] = SCARG(p, who); /* int */
3159 1.1 christos uarg[1] = (intptr_t) SCARG(p, rusage).i32; /* netbsd32_rusagep_t */
3160 1.1 christos *n_args = 2;
3161 1.1 christos break;
3162 1.1 christos }
3163 1.1 christos /* netbsd32___timer_settime50 */
3164 1.1 christos case 446: {
3165 1.17 christos const struct netbsd32___timer_settime50_args *p = params;
3166 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */
3167 1.1 christos iarg[1] = SCARG(p, flags); /* int */
3168 1.1 christos uarg[2] = (intptr_t) SCARG(p, value).i32; /* const netbsd32_itimerspecp_t */
3169 1.1 christos uarg[3] = (intptr_t) SCARG(p, ovalue).i32; /* netbsd32_itimerspecp_t */
3170 1.1 christos *n_args = 4;
3171 1.1 christos break;
3172 1.1 christos }
3173 1.1 christos /* netbsd32___timer_gettime50 */
3174 1.1 christos case 447: {
3175 1.17 christos const struct netbsd32___timer_gettime50_args *p = params;
3176 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */
3177 1.1 christos uarg[1] = (intptr_t) SCARG(p, value).i32; /* netbsd32_itimerspecp_t */
3178 1.1 christos *n_args = 2;
3179 1.1 christos break;
3180 1.1 christos }
3181 1.1 christos #if defined(NTP) || !defined(_KERNEL_OPT)
3182 1.1 christos /* netbsd32___ntp_gettime50 */
3183 1.1 christos case 448: {
3184 1.17 christos const struct netbsd32___ntp_gettime50_args *p = params;
3185 1.1 christos uarg[0] = (intptr_t) SCARG(p, ntvp).i32; /* netbsd32_ntptimevalp_t */
3186 1.1 christos *n_args = 1;
3187 1.1 christos break;
3188 1.1 christos }
3189 1.1 christos #else
3190 1.1 christos #endif
3191 1.1 christos /* netbsd32___wait450 */
3192 1.1 christos case 449: {
3193 1.17 christos const struct netbsd32___wait450_args *p = params;
3194 1.1 christos iarg[0] = SCARG(p, pid); /* int */
3195 1.1 christos uarg[1] = (intptr_t) SCARG(p, status).i32; /* netbsd32_intp */
3196 1.1 christos iarg[2] = SCARG(p, options); /* int */
3197 1.1 christos uarg[3] = (intptr_t) SCARG(p, rusage).i32; /* netbsd32_rusagep_t */
3198 1.1 christos *n_args = 4;
3199 1.1 christos break;
3200 1.1 christos }
3201 1.1 christos /* netbsd32___mknod50 */
3202 1.1 christos case 450: {
3203 1.17 christos const struct netbsd32___mknod50_args *p = params;
3204 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3205 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */
3206 1.1 christos iarg[2] = SCARG(p, dev); /* netbsd32_dev_t */
3207 1.1 christos *n_args = 3;
3208 1.1 christos break;
3209 1.1 christos }
3210 1.1 christos /* netbsd32___fhstat50 */
3211 1.1 christos case 451: {
3212 1.17 christos const struct netbsd32___fhstat50_args *p = params;
3213 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp).i32; /* const netbsd32_voidp */
3214 1.1 christos iarg[1] = SCARG(p, fh_size); /* netbsd32_size_t */
3215 1.1 christos uarg[2] = (intptr_t) SCARG(p, sb).i32; /* netbsd32_statp_t */
3216 1.1 christos *n_args = 3;
3217 1.1 christos break;
3218 1.1 christos }
3219 1.1 christos /* netbsd32_pipe2 */
3220 1.1 christos case 453: {
3221 1.17 christos const struct netbsd32_pipe2_args *p = params;
3222 1.1 christos uarg[0] = (intptr_t) SCARG(p, fildes).i32; /* netbsd32_intp */
3223 1.1 christos iarg[1] = SCARG(p, flags); /* int */
3224 1.1 christos *n_args = 2;
3225 1.1 christos break;
3226 1.1 christos }
3227 1.1 christos /* netbsd32_dup3 */
3228 1.1 christos case 454: {
3229 1.17 christos const struct netbsd32_dup3_args *p = params;
3230 1.1 christos iarg[0] = SCARG(p, from); /* int */
3231 1.1 christos iarg[1] = SCARG(p, to); /* int */
3232 1.1 christos iarg[2] = SCARG(p, flags); /* int */
3233 1.1 christos *n_args = 3;
3234 1.1 christos break;
3235 1.1 christos }
3236 1.1 christos /* netbsd32_kqueue1 */
3237 1.1 christos case 455: {
3238 1.17 christos const struct netbsd32_kqueue1_args *p = params;
3239 1.1 christos iarg[0] = SCARG(p, flags); /* int */
3240 1.1 christos *n_args = 1;
3241 1.1 christos break;
3242 1.1 christos }
3243 1.1 christos /* netbsd32_paccept */
3244 1.1 christos case 456: {
3245 1.17 christos const struct netbsd32_paccept_args *p = params;
3246 1.1 christos iarg[0] = SCARG(p, s); /* int */
3247 1.1 christos uarg[1] = (intptr_t) SCARG(p, name).i32; /* netbsd32_sockaddrp_t */
3248 1.1 christos uarg[2] = (intptr_t) SCARG(p, anamelen).i32; /* netbsd32_socklenp_t */
3249 1.1 christos uarg[3] = (intptr_t) SCARG(p, mask).i32; /* const netbsd32_sigsetp_t */
3250 1.1 christos iarg[4] = SCARG(p, flags); /* int */
3251 1.1 christos *n_args = 5;
3252 1.1 christos break;
3253 1.1 christos }
3254 1.1 christos /* netbsd32_linkat */
3255 1.1 christos case 457: {
3256 1.17 christos const struct netbsd32_linkat_args *p = params;
3257 1.1 christos iarg[0] = SCARG(p, fd1); /* int */
3258 1.1 christos uarg[1] = (intptr_t) SCARG(p, name1).i32; /* const netbsd32_charp */
3259 1.1 christos iarg[2] = SCARG(p, fd2); /* int */
3260 1.1 christos uarg[3] = (intptr_t) SCARG(p, name2).i32; /* const netbsd32_charp */
3261 1.1 christos iarg[4] = SCARG(p, flags); /* int */
3262 1.1 christos *n_args = 5;
3263 1.1 christos break;
3264 1.1 christos }
3265 1.1 christos /* netbsd32_renameat */
3266 1.1 christos case 458: {
3267 1.17 christos const struct netbsd32_renameat_args *p = params;
3268 1.1 christos iarg[0] = SCARG(p, fromfd); /* int */
3269 1.1 christos uarg[1] = (intptr_t) SCARG(p, from).i32; /* const netbsd32_charp */
3270 1.1 christos iarg[2] = SCARG(p, tofd); /* int */
3271 1.1 christos uarg[3] = (intptr_t) SCARG(p, to).i32; /* const netbsd32_charp */
3272 1.1 christos *n_args = 4;
3273 1.1 christos break;
3274 1.1 christos }
3275 1.1 christos /* netbsd32_mkfifoat */
3276 1.1 christos case 459: {
3277 1.17 christos const struct netbsd32_mkfifoat_args *p = params;
3278 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3279 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3280 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */
3281 1.1 christos *n_args = 3;
3282 1.1 christos break;
3283 1.1 christos }
3284 1.1 christos /* netbsd32_mknodat */
3285 1.1 christos case 460: {
3286 1.17 christos const struct netbsd32_mknodat_args *p = params;
3287 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3288 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3289 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */
3290 1.1 christos iarg[3] = SCARG(p, PAD); /* int */
3291 1.1 christos iarg[4] = SCARG(p, dev); /* netbsd32_dev_t */
3292 1.1 christos *n_args = 5;
3293 1.1 christos break;
3294 1.1 christos }
3295 1.1 christos /* netbsd32_mkdirat */
3296 1.1 christos case 461: {
3297 1.17 christos const struct netbsd32_mkdirat_args *p = params;
3298 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3299 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3300 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */
3301 1.1 christos *n_args = 3;
3302 1.1 christos break;
3303 1.1 christos }
3304 1.1 christos /* netbsd32_faccessat */
3305 1.1 christos case 462: {
3306 1.17 christos const struct netbsd32_faccessat_args *p = params;
3307 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3308 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3309 1.1 christos iarg[2] = SCARG(p, amode); /* int */
3310 1.1 christos iarg[3] = SCARG(p, flag); /* int */
3311 1.1 christos *n_args = 4;
3312 1.1 christos break;
3313 1.1 christos }
3314 1.1 christos /* netbsd32_fchmodat */
3315 1.1 christos case 463: {
3316 1.17 christos const struct netbsd32_fchmodat_args *p = params;
3317 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3318 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3319 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */
3320 1.1 christos iarg[3] = SCARG(p, flag); /* int */
3321 1.1 christos *n_args = 4;
3322 1.1 christos break;
3323 1.1 christos }
3324 1.1 christos /* netbsd32_fchownat */
3325 1.1 christos case 464: {
3326 1.17 christos const struct netbsd32_fchownat_args *p = params;
3327 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3328 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3329 1.1 christos uarg[2] = SCARG(p, owner); /* uid_t */
3330 1.1 christos iarg[3] = SCARG(p, group); /* gid_t */
3331 1.1 christos iarg[4] = SCARG(p, flag); /* int */
3332 1.1 christos *n_args = 5;
3333 1.1 christos break;
3334 1.1 christos }
3335 1.1 christos /* netbsd32_fexecve */
3336 1.1 christos case 465: {
3337 1.17 christos const struct netbsd32_fexecve_args *p = params;
3338 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3339 1.1 christos uarg[1] = (intptr_t) SCARG(p, argp).i32; /* netbsd32_charpp */
3340 1.1 christos uarg[2] = (intptr_t) SCARG(p, envp).i32; /* netbsd32_charpp */
3341 1.1 christos *n_args = 3;
3342 1.1 christos break;
3343 1.1 christos }
3344 1.1 christos /* netbsd32_fstatat */
3345 1.1 christos case 466: {
3346 1.17 christos const struct netbsd32_fstatat_args *p = params;
3347 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3348 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3349 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statp_t */
3350 1.1 christos iarg[3] = SCARG(p, flag); /* int */
3351 1.1 christos *n_args = 4;
3352 1.1 christos break;
3353 1.1 christos }
3354 1.1 christos /* netbsd32_utimensat */
3355 1.1 christos case 467: {
3356 1.17 christos const struct netbsd32_utimensat_args *p = params;
3357 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3358 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3359 1.1 christos uarg[2] = (intptr_t) SCARG(p, tptr).i32; /* const netbsd32_timespecp_t */
3360 1.1 christos iarg[3] = SCARG(p, flag); /* int */
3361 1.1 christos *n_args = 4;
3362 1.1 christos break;
3363 1.1 christos }
3364 1.1 christos /* netbsd32_openat */
3365 1.1 christos case 468: {
3366 1.17 christos const struct netbsd32_openat_args *p = params;
3367 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3368 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3369 1.1 christos iarg[2] = SCARG(p, oflags); /* int */
3370 1.1 christos iarg[3] = SCARG(p, mode); /* mode_t */
3371 1.1 christos *n_args = 4;
3372 1.1 christos break;
3373 1.1 christos }
3374 1.1 christos /* netbsd32_readlinkat */
3375 1.1 christos case 469: {
3376 1.17 christos const struct netbsd32_readlinkat_args *p = params;
3377 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3378 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3379 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_charp */
3380 1.35 rin iarg[3] = SCARG(p, bufsize); /* netbsd32_size_t */
3381 1.1 christos *n_args = 4;
3382 1.1 christos break;
3383 1.1 christos }
3384 1.1 christos /* netbsd32_symlinkat */
3385 1.1 christos case 470: {
3386 1.17 christos const struct netbsd32_symlinkat_args *p = params;
3387 1.1 christos uarg[0] = (intptr_t) SCARG(p, path1).i32; /* const netbsd32_charp */
3388 1.1 christos iarg[1] = SCARG(p, fd); /* int */
3389 1.1 christos uarg[2] = (intptr_t) SCARG(p, path2).i32; /* const netbsd32_charp */
3390 1.1 christos *n_args = 3;
3391 1.1 christos break;
3392 1.1 christos }
3393 1.1 christos /* netbsd32_unlinkat */
3394 1.1 christos case 471: {
3395 1.17 christos const struct netbsd32_unlinkat_args *p = params;
3396 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3397 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3398 1.1 christos iarg[2] = SCARG(p, flag); /* int */
3399 1.1 christos *n_args = 3;
3400 1.1 christos break;
3401 1.1 christos }
3402 1.1 christos /* netbsd32_futimens */
3403 1.1 christos case 472: {
3404 1.17 christos const struct netbsd32_futimens_args *p = params;
3405 1.1 christos iarg[0] = SCARG(p, fd); /* int */
3406 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr).i32; /* const netbsd32_timespecp_t */
3407 1.1 christos *n_args = 2;
3408 1.1 christos break;
3409 1.1 christos }
3410 1.1 christos /* netbsd32___quotactl */
3411 1.1 christos case 473: {
3412 1.17 christos const struct netbsd32___quotactl_args *p = params;
3413 1.1 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3414 1.1 christos uarg[1] = (intptr_t) SCARG(p, args).i32; /* netbsd32_voidp */
3415 1.1 christos *n_args = 2;
3416 1.1 christos break;
3417 1.1 christos }
3418 1.1 christos /* netbsd32_posix_spawn */
3419 1.1 christos case 474: {
3420 1.17 christos const struct netbsd32_posix_spawn_args *p = params;
3421 1.1 christos uarg[0] = (intptr_t) SCARG(p, pid).i32; /* netbsd32_pid_tp */
3422 1.1 christos uarg[1] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3423 1.1 christos uarg[2] = (intptr_t) SCARG(p, file_actions).i32; /* const netbsd32_posix_spawn_file_actionsp */
3424 1.1 christos uarg[3] = (intptr_t) SCARG(p, attrp).i32; /* const netbsd32_posix_spawnattrp */
3425 1.1 christos uarg[4] = (intptr_t) SCARG(p, argv).i32; /* netbsd32_charpp */
3426 1.1 christos uarg[5] = (intptr_t) SCARG(p, envp).i32; /* netbsd32_charpp */
3427 1.1 christos *n_args = 6;
3428 1.1 christos break;
3429 1.1 christos }
3430 1.25 christos /* netbsd32_recvmmsg */
3431 1.25 christos case 475: {
3432 1.25 christos const struct netbsd32_recvmmsg_args *p = params;
3433 1.25 christos iarg[0] = SCARG(p, s); /* int */
3434 1.25 christos uarg[1] = (intptr_t) SCARG(p, mmsg).i32; /* netbsd32_mmsghdrp_t */
3435 1.25 christos uarg[2] = SCARG(p, vlen); /* unsigned int */
3436 1.25 christos uarg[3] = SCARG(p, flags); /* unsigned int */
3437 1.25 christos uarg[4] = (intptr_t) SCARG(p, timeout).i32; /* netbsd32_timespecp_t */
3438 1.25 christos *n_args = 5;
3439 1.25 christos break;
3440 1.25 christos }
3441 1.25 christos /* netbsd32_sendmmsg */
3442 1.25 christos case 476: {
3443 1.25 christos const struct netbsd32_sendmmsg_args *p = params;
3444 1.25 christos iarg[0] = SCARG(p, s); /* int */
3445 1.25 christos uarg[1] = (intptr_t) SCARG(p, mmsg).i32; /* netbsd32_mmsghdrp_t */
3446 1.25 christos uarg[2] = SCARG(p, vlen); /* unsigned int */
3447 1.25 christos uarg[3] = SCARG(p, flags); /* unsigned int */
3448 1.25 christos *n_args = 4;
3449 1.25 christos break;
3450 1.25 christos }
3451 1.1 christos /* netbsd32_clock_nanosleep */
3452 1.1 christos case 477: {
3453 1.17 christos const struct netbsd32_clock_nanosleep_args *p = params;
3454 1.1 christos iarg[0] = SCARG(p, clock_id); /* netbsd32_clockid_t */
3455 1.1 christos iarg[1] = SCARG(p, flags); /* int */
3456 1.1 christos uarg[2] = (intptr_t) SCARG(p, rqtp).i32; /* const netbsd32_timespecp_t */
3457 1.1 christos uarg[3] = (intptr_t) SCARG(p, rmtp).i32; /* netbsd32_timespecp_t */
3458 1.1 christos *n_args = 4;
3459 1.1 christos break;
3460 1.1 christos }
3461 1.1 christos /* netbsd32____lwp_park60 */
3462 1.1 christos case 478: {
3463 1.17 christos const struct netbsd32____lwp_park60_args *p = params;
3464 1.1 christos iarg[0] = SCARG(p, clock_id); /* netbsd32_clockid_t */
3465 1.1 christos iarg[1] = SCARG(p, flags); /* int */
3466 1.20 kamil uarg[2] = (intptr_t) SCARG(p, ts).i32; /* netbsd32_timespecp_t */
3467 1.1 christos iarg[3] = SCARG(p, unpark); /* lwpid_t */
3468 1.1 christos uarg[4] = (intptr_t) SCARG(p, hint).i32; /* netbsd32_voidp */
3469 1.1 christos uarg[5] = (intptr_t) SCARG(p, unparkhint).i32; /* netbsd32_voidp */
3470 1.1 christos *n_args = 6;
3471 1.1 christos break;
3472 1.1 christos }
3473 1.2 martin /* netbsd32_posix_fallocate */
3474 1.2 martin case 479: {
3475 1.17 christos const struct netbsd32_posix_fallocate_args *p = params;
3476 1.2 martin iarg[0] = SCARG(p, fd); /* int */
3477 1.2 martin iarg[1] = SCARG(p, PAD); /* int */
3478 1.2 martin iarg[2] = SCARG(p, pos); /* netbsd32_off_t */
3479 1.2 martin iarg[3] = SCARG(p, len); /* netbsd32_off_t */
3480 1.2 martin *n_args = 4;
3481 1.2 martin break;
3482 1.2 martin }
3483 1.2 martin /* netbsd32_fdiscard */
3484 1.2 martin case 480: {
3485 1.17 christos const struct netbsd32_fdiscard_args *p = params;
3486 1.2 martin iarg[0] = SCARG(p, fd); /* int */
3487 1.2 martin iarg[1] = SCARG(p, PAD); /* int */
3488 1.2 martin iarg[2] = SCARG(p, pos); /* netbsd32_off_t */
3489 1.2 martin iarg[3] = SCARG(p, len); /* netbsd32_off_t */
3490 1.2 martin *n_args = 4;
3491 1.2 martin break;
3492 1.2 martin }
3493 1.14 skrll /* netbsd32_wait6 */
3494 1.14 skrll case 481: {
3495 1.17 christos const struct netbsd32_wait6_args *p = params;
3496 1.14 skrll iarg[0] = SCARG(p, idtype); /* idtype_t */
3497 1.14 skrll iarg[1] = SCARG(p, id); /* id_t */
3498 1.14 skrll uarg[2] = (intptr_t) SCARG(p, status).i32; /* netbsd32_intp */
3499 1.14 skrll iarg[3] = SCARG(p, options); /* int */
3500 1.14 skrll uarg[4] = (intptr_t) SCARG(p, wru).i32; /* netbsd32_wrusagep_t */
3501 1.14 skrll uarg[5] = (intptr_t) SCARG(p, info).i32; /* netbsd32_siginfop_t */
3502 1.14 skrll *n_args = 6;
3503 1.14 skrll break;
3504 1.14 skrll }
3505 1.14 skrll /* netbsd32_clock_getcpuclockid2 */
3506 1.14 skrll case 482: {
3507 1.17 christos const struct netbsd32_clock_getcpuclockid2_args *p = params;
3508 1.14 skrll iarg[0] = SCARG(p, idtype); /* idtype_t */
3509 1.14 skrll iarg[1] = SCARG(p, id); /* id_t */
3510 1.14 skrll uarg[2] = (intptr_t) SCARG(p, clock_id).i32; /* netbsd32_clockidp_t */
3511 1.14 skrll *n_args = 3;
3512 1.14 skrll break;
3513 1.14 skrll }
3514 1.33 christos /* netbsd32___getvfsstat90 */
3515 1.33 christos case 483: {
3516 1.33 christos const struct netbsd32___getvfsstat90_args *p = params;
3517 1.33 christos uarg[0] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statvfsp_t */
3518 1.36 rin iarg[1] = SCARG(p, bufsize); /* netbsd32_size_t */
3519 1.33 christos iarg[2] = SCARG(p, flags); /* int */
3520 1.33 christos *n_args = 3;
3521 1.33 christos break;
3522 1.33 christos }
3523 1.33 christos /* netbsd32___statvfs190 */
3524 1.33 christos case 484: {
3525 1.33 christos const struct netbsd32___statvfs190_args *p = params;
3526 1.33 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
3527 1.33 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statvfsp_t */
3528 1.33 christos iarg[2] = SCARG(p, flags); /* int */
3529 1.33 christos *n_args = 3;
3530 1.33 christos break;
3531 1.33 christos }
3532 1.33 christos /* netbsd32___fstatvfs190 */
3533 1.33 christos case 485: {
3534 1.33 christos const struct netbsd32___fstatvfs190_args *p = params;
3535 1.33 christos iarg[0] = SCARG(p, fd); /* int */
3536 1.33 christos uarg[1] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statvfsp_t */
3537 1.33 christos iarg[2] = SCARG(p, flags); /* int */
3538 1.33 christos *n_args = 3;
3539 1.33 christos break;
3540 1.33 christos }
3541 1.33 christos /* netbsd32___fhstatvfs190 */
3542 1.33 christos case 486: {
3543 1.33 christos const struct netbsd32___fhstatvfs190_args *p = params;
3544 1.33 christos uarg[0] = (intptr_t) SCARG(p, fhp).i32; /* netbsd32_voidp */
3545 1.36 rin iarg[1] = SCARG(p, fh_size); /* netbsd32_size_t */
3546 1.33 christos uarg[2] = (intptr_t) SCARG(p, buf).i32; /* netbsd32_statvfsp_t */
3547 1.33 christos iarg[3] = SCARG(p, flags); /* int */
3548 1.33 christos *n_args = 4;
3549 1.33 christos break;
3550 1.33 christos }
3551 1.44 christos /* netbsd32___acl_get_link */
3552 1.44 christos case 487: {
3553 1.44 christos const struct netbsd32___acl_get_link_args *p = params;
3554 1.44 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3555 1.44 christos iarg[1] = SCARG(p, type); /* acl_type_t */
3556 1.44 christos uarg[2] = (intptr_t) SCARG(p, aclp).i32; /* netbsd32_aclp_t */
3557 1.44 christos *n_args = 3;
3558 1.44 christos break;
3559 1.44 christos }
3560 1.44 christos /* netbsd32___acl_set_link */
3561 1.44 christos case 488: {
3562 1.44 christos const struct netbsd32___acl_set_link_args *p = params;
3563 1.44 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3564 1.44 christos iarg[1] = SCARG(p, type); /* acl_type_t */
3565 1.44 christos uarg[2] = (intptr_t) SCARG(p, aclp).i32; /* netbsd32_aclp_t */
3566 1.44 christos *n_args = 3;
3567 1.44 christos break;
3568 1.44 christos }
3569 1.44 christos /* netbsd32___acl_delete_link */
3570 1.44 christos case 489: {
3571 1.44 christos const struct netbsd32___acl_delete_link_args *p = params;
3572 1.44 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3573 1.44 christos iarg[1] = SCARG(p, type); /* acl_type_t */
3574 1.44 christos *n_args = 2;
3575 1.44 christos break;
3576 1.44 christos }
3577 1.44 christos /* netbsd32___acl_aclcheck_link */
3578 1.44 christos case 490: {
3579 1.44 christos const struct netbsd32___acl_aclcheck_link_args *p = params;
3580 1.44 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3581 1.44 christos iarg[1] = SCARG(p, type); /* acl_type_t */
3582 1.44 christos uarg[2] = (intptr_t) SCARG(p, aclp).i32; /* netbsd32_aclp_t */
3583 1.44 christos *n_args = 3;
3584 1.44 christos break;
3585 1.44 christos }
3586 1.44 christos /* netbsd32___acl_get_file */
3587 1.44 christos case 491: {
3588 1.44 christos const struct netbsd32___acl_get_file_args *p = params;
3589 1.44 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3590 1.44 christos iarg[1] = SCARG(p, type); /* acl_type_t */
3591 1.44 christos uarg[2] = (intptr_t) SCARG(p, aclp).i32; /* netbsd32_aclp_t */
3592 1.44 christos *n_args = 3;
3593 1.44 christos break;
3594 1.44 christos }
3595 1.44 christos /* netbsd32___acl_set_file */
3596 1.44 christos case 492: {
3597 1.44 christos const struct netbsd32___acl_set_file_args *p = params;
3598 1.44 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3599 1.44 christos iarg[1] = SCARG(p, type); /* acl_type_t */
3600 1.44 christos uarg[2] = (intptr_t) SCARG(p, aclp).i32; /* netbsd32_aclp_t */
3601 1.44 christos *n_args = 3;
3602 1.44 christos break;
3603 1.44 christos }
3604 1.44 christos /* netbsd32___acl_get_fd */
3605 1.44 christos case 493: {
3606 1.44 christos const struct netbsd32___acl_get_fd_args *p = params;
3607 1.44 christos iarg[0] = SCARG(p, filedes); /* int */
3608 1.44 christos iarg[1] = SCARG(p, type); /* acl_type_t */
3609 1.44 christos uarg[2] = (intptr_t) SCARG(p, aclp).i32; /* netbsd32_aclp_t */
3610 1.44 christos *n_args = 3;
3611 1.44 christos break;
3612 1.44 christos }
3613 1.44 christos /* netbsd32___acl_set_fd */
3614 1.44 christos case 494: {
3615 1.44 christos const struct netbsd32___acl_set_fd_args *p = params;
3616 1.44 christos iarg[0] = SCARG(p, filedes); /* int */
3617 1.44 christos iarg[1] = SCARG(p, type); /* acl_type_t */
3618 1.44 christos uarg[2] = (intptr_t) SCARG(p, aclp).i32; /* netbsd32_aclp_t */
3619 1.44 christos *n_args = 3;
3620 1.44 christos break;
3621 1.44 christos }
3622 1.44 christos /* netbsd32___acl_delete_file */
3623 1.44 christos case 495: {
3624 1.44 christos const struct netbsd32___acl_delete_file_args *p = params;
3625 1.44 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3626 1.44 christos iarg[1] = SCARG(p, type); /* acl_type_t */
3627 1.44 christos *n_args = 2;
3628 1.44 christos break;
3629 1.44 christos }
3630 1.44 christos /* netbsd32___acl_delete_fd */
3631 1.44 christos case 496: {
3632 1.44 christos const struct netbsd32___acl_delete_fd_args *p = params;
3633 1.44 christos iarg[0] = SCARG(p, filedes); /* int */
3634 1.44 christos iarg[1] = SCARG(p, type); /* acl_type_t */
3635 1.44 christos *n_args = 2;
3636 1.44 christos break;
3637 1.44 christos }
3638 1.44 christos /* netbsd32___acl_aclcheck_file */
3639 1.44 christos case 497: {
3640 1.44 christos const struct netbsd32___acl_aclcheck_file_args *p = params;
3641 1.44 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3642 1.44 christos iarg[1] = SCARG(p, type); /* acl_type_t */
3643 1.44 christos uarg[2] = (intptr_t) SCARG(p, aclp).i32; /* netbsd32_aclp_t */
3644 1.44 christos *n_args = 3;
3645 1.44 christos break;
3646 1.44 christos }
3647 1.44 christos /* netbsd32___acl_aclcheck_fd */
3648 1.44 christos case 498: {
3649 1.44 christos const struct netbsd32___acl_aclcheck_fd_args *p = params;
3650 1.44 christos iarg[0] = SCARG(p, filedes); /* int */
3651 1.44 christos iarg[1] = SCARG(p, type); /* acl_type_t */
3652 1.44 christos uarg[2] = (intptr_t) SCARG(p, aclp).i32; /* netbsd32_aclp_t */
3653 1.44 christos *n_args = 3;
3654 1.44 christos break;
3655 1.44 christos }
3656 1.44 christos /* netbsd32_lpathconf */
3657 1.44 christos case 499: {
3658 1.44 christos const struct netbsd32_lpathconf_args *p = params;
3659 1.44 christos uarg[0] = (intptr_t) SCARG(p, path).i32; /* const netbsd32_charp */
3660 1.44 christos iarg[1] = SCARG(p, name); /* int */
3661 1.44 christos *n_args = 2;
3662 1.44 christos break;
3663 1.44 christos }
3664 1.1 christos default:
3665 1.1 christos *n_args = 0;
3666 1.1 christos break;
3667 1.1 christos };
3668 1.1 christos }
3669 1.1 christos static void
3670 1.1 christos systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
3671 1.1 christos {
3672 1.1 christos const char *p = NULL;
3673 1.1 christos switch (sysnum) {
3674 1.1 christos /* netbsd32_syscall */
3675 1.1 christos case 0:
3676 1.1 christos switch(ndx) {
3677 1.1 christos case 0:
3678 1.1 christos p = "int";
3679 1.1 christos break;
3680 1.1 christos case 1:
3681 1.1 christos p = "register32_t";
3682 1.1 christos break;
3683 1.1 christos default:
3684 1.1 christos break;
3685 1.1 christos };
3686 1.1 christos break;
3687 1.1 christos /* netbsd32_exit */
3688 1.1 christos case 1:
3689 1.1 christos switch(ndx) {
3690 1.1 christos case 0:
3691 1.1 christos p = "int";
3692 1.1 christos break;
3693 1.1 christos default:
3694 1.1 christos break;
3695 1.1 christos };
3696 1.1 christos break;
3697 1.1 christos /* sys_fork */
3698 1.1 christos case 2:
3699 1.1 christos break;
3700 1.1 christos /* netbsd32_read */
3701 1.1 christos case 3:
3702 1.1 christos switch(ndx) {
3703 1.1 christos case 0:
3704 1.1 christos p = "int";
3705 1.1 christos break;
3706 1.1 christos case 1:
3707 1.1 christos p = "netbsd32_voidp";
3708 1.1 christos break;
3709 1.1 christos case 2:
3710 1.1 christos p = "netbsd32_size_t";
3711 1.1 christos break;
3712 1.1 christos default:
3713 1.1 christos break;
3714 1.1 christos };
3715 1.1 christos break;
3716 1.1 christos /* netbsd32_write */
3717 1.1 christos case 4:
3718 1.1 christos switch(ndx) {
3719 1.1 christos case 0:
3720 1.1 christos p = "int";
3721 1.1 christos break;
3722 1.1 christos case 1:
3723 1.1 christos p = "netbsd32_voidp";
3724 1.1 christos break;
3725 1.1 christos case 2:
3726 1.1 christos p = "netbsd32_size_t";
3727 1.1 christos break;
3728 1.1 christos default:
3729 1.1 christos break;
3730 1.1 christos };
3731 1.1 christos break;
3732 1.1 christos /* netbsd32_open */
3733 1.1 christos case 5:
3734 1.1 christos switch(ndx) {
3735 1.1 christos case 0:
3736 1.1 christos p = "netbsd32_charp";
3737 1.1 christos break;
3738 1.1 christos case 1:
3739 1.1 christos p = "int";
3740 1.1 christos break;
3741 1.1 christos case 2:
3742 1.1 christos p = "mode_t";
3743 1.1 christos break;
3744 1.1 christos default:
3745 1.1 christos break;
3746 1.1 christos };
3747 1.1 christos break;
3748 1.1 christos /* netbsd32_close */
3749 1.1 christos case 6:
3750 1.1 christos switch(ndx) {
3751 1.1 christos case 0:
3752 1.1 christos p = "int";
3753 1.1 christos break;
3754 1.1 christos default:
3755 1.1 christos break;
3756 1.1 christos };
3757 1.1 christos break;
3758 1.1 christos /* netbsd32_wait4 */
3759 1.1 christos case 7:
3760 1.1 christos switch(ndx) {
3761 1.1 christos case 0:
3762 1.1 christos p = "int";
3763 1.1 christos break;
3764 1.1 christos case 1:
3765 1.1 christos p = "netbsd32_intp";
3766 1.1 christos break;
3767 1.1 christos case 2:
3768 1.1 christos p = "int";
3769 1.1 christos break;
3770 1.1 christos case 3:
3771 1.1 christos p = "netbsd32_rusage50p_t";
3772 1.1 christos break;
3773 1.1 christos default:
3774 1.1 christos break;
3775 1.1 christos };
3776 1.1 christos break;
3777 1.1 christos /* netbsd32_ocreat */
3778 1.1 christos case 8:
3779 1.1 christos switch(ndx) {
3780 1.1 christos case 0:
3781 1.1 christos p = "netbsd32_charp";
3782 1.1 christos break;
3783 1.1 christos case 1:
3784 1.1 christos p = "mode_t";
3785 1.1 christos break;
3786 1.1 christos default:
3787 1.1 christos break;
3788 1.1 christos };
3789 1.1 christos break;
3790 1.1 christos /* netbsd32_link */
3791 1.1 christos case 9:
3792 1.1 christos switch(ndx) {
3793 1.1 christos case 0:
3794 1.1 christos p = "netbsd32_charp";
3795 1.1 christos break;
3796 1.1 christos case 1:
3797 1.1 christos p = "netbsd32_charp";
3798 1.1 christos break;
3799 1.1 christos default:
3800 1.1 christos break;
3801 1.1 christos };
3802 1.1 christos break;
3803 1.1 christos /* netbsd32_unlink */
3804 1.1 christos case 10:
3805 1.1 christos switch(ndx) {
3806 1.1 christos case 0:
3807 1.1 christos p = "netbsd32_charp";
3808 1.1 christos break;
3809 1.1 christos default:
3810 1.1 christos break;
3811 1.1 christos };
3812 1.1 christos break;
3813 1.1 christos /* netbsd32_chdir */
3814 1.1 christos case 12:
3815 1.1 christos switch(ndx) {
3816 1.1 christos case 0:
3817 1.1 christos p = "netbsd32_charp";
3818 1.1 christos break;
3819 1.1 christos default:
3820 1.1 christos break;
3821 1.1 christos };
3822 1.1 christos break;
3823 1.1 christos /* netbsd32_fchdir */
3824 1.1 christos case 13:
3825 1.1 christos switch(ndx) {
3826 1.1 christos case 0:
3827 1.1 christos p = "int";
3828 1.1 christos break;
3829 1.1 christos default:
3830 1.1 christos break;
3831 1.1 christos };
3832 1.1 christos break;
3833 1.1 christos /* netbsd32_mknod */
3834 1.1 christos case 14:
3835 1.1 christos switch(ndx) {
3836 1.1 christos case 0:
3837 1.1 christos p = "netbsd32_charp";
3838 1.1 christos break;
3839 1.1 christos case 1:
3840 1.1 christos p = "mode_t";
3841 1.1 christos break;
3842 1.1 christos case 2:
3843 1.1 christos p = "uint32_t";
3844 1.1 christos break;
3845 1.1 christos default:
3846 1.1 christos break;
3847 1.1 christos };
3848 1.1 christos break;
3849 1.1 christos /* netbsd32_chmod */
3850 1.1 christos case 15:
3851 1.1 christos switch(ndx) {
3852 1.1 christos case 0:
3853 1.1 christos p = "netbsd32_charp";
3854 1.1 christos break;
3855 1.1 christos case 1:
3856 1.1 christos p = "mode_t";
3857 1.1 christos break;
3858 1.1 christos default:
3859 1.1 christos break;
3860 1.1 christos };
3861 1.1 christos break;
3862 1.1 christos /* netbsd32_chown */
3863 1.1 christos case 16:
3864 1.1 christos switch(ndx) {
3865 1.1 christos case 0:
3866 1.1 christos p = "netbsd32_charp";
3867 1.1 christos break;
3868 1.1 christos case 1:
3869 1.1 christos p = "uid_t";
3870 1.1 christos break;
3871 1.1 christos case 2:
3872 1.1 christos p = "gid_t";
3873 1.1 christos break;
3874 1.1 christos default:
3875 1.1 christos break;
3876 1.1 christos };
3877 1.1 christos break;
3878 1.1 christos /* netbsd32_break */
3879 1.1 christos case 17:
3880 1.1 christos switch(ndx) {
3881 1.1 christos case 0:
3882 1.1 christos p = "netbsd32_charp";
3883 1.1 christos break;
3884 1.1 christos default:
3885 1.1 christos break;
3886 1.1 christos };
3887 1.1 christos break;
3888 1.1 christos /* netbsd32_getfsstat */
3889 1.1 christos case 18:
3890 1.1 christos switch(ndx) {
3891 1.1 christos case 0:
3892 1.1 christos p = "netbsd32_statfsp_t";
3893 1.1 christos break;
3894 1.1 christos case 1:
3895 1.1 christos p = "netbsd32_long";
3896 1.1 christos break;
3897 1.1 christos case 2:
3898 1.1 christos p = "int";
3899 1.1 christos break;
3900 1.1 christos default:
3901 1.1 christos break;
3902 1.1 christos };
3903 1.1 christos break;
3904 1.1 christos /* netbsd32_olseek */
3905 1.1 christos case 19:
3906 1.1 christos switch(ndx) {
3907 1.1 christos case 0:
3908 1.1 christos p = "int";
3909 1.1 christos break;
3910 1.1 christos case 1:
3911 1.1 christos p = "netbsd32_long";
3912 1.1 christos break;
3913 1.1 christos case 2:
3914 1.1 christos p = "int";
3915 1.1 christos break;
3916 1.1 christos default:
3917 1.1 christos break;
3918 1.1 christos };
3919 1.1 christos break;
3920 1.37 kamil /* sys_getpid_with_ppid */
3921 1.1 christos case 20:
3922 1.1 christos break;
3923 1.1 christos /* netbsd32_mount */
3924 1.1 christos case 21:
3925 1.1 christos switch(ndx) {
3926 1.1 christos case 0:
3927 1.1 christos p = "netbsd32_charp";
3928 1.1 christos break;
3929 1.1 christos case 1:
3930 1.1 christos p = "netbsd32_charp";
3931 1.1 christos break;
3932 1.1 christos case 2:
3933 1.1 christos p = "int";
3934 1.1 christos break;
3935 1.1 christos case 3:
3936 1.1 christos p = "netbsd32_voidp";
3937 1.1 christos break;
3938 1.1 christos default:
3939 1.1 christos break;
3940 1.1 christos };
3941 1.1 christos break;
3942 1.1 christos /* netbsd32_unmount */
3943 1.1 christos case 22:
3944 1.1 christos switch(ndx) {
3945 1.1 christos case 0:
3946 1.1 christos p = "netbsd32_charp";
3947 1.1 christos break;
3948 1.1 christos case 1:
3949 1.1 christos p = "int";
3950 1.1 christos break;
3951 1.1 christos default:
3952 1.1 christos break;
3953 1.1 christos };
3954 1.1 christos break;
3955 1.1 christos /* netbsd32_setuid */
3956 1.1 christos case 23:
3957 1.1 christos switch(ndx) {
3958 1.1 christos case 0:
3959 1.1 christos p = "uid_t";
3960 1.1 christos break;
3961 1.1 christos default:
3962 1.1 christos break;
3963 1.1 christos };
3964 1.1 christos break;
3965 1.37 kamil /* sys_getuid_with_euid */
3966 1.1 christos case 24:
3967 1.1 christos break;
3968 1.1 christos /* sys_geteuid */
3969 1.1 christos case 25:
3970 1.1 christos break;
3971 1.1 christos /* netbsd32_ptrace */
3972 1.1 christos case 26:
3973 1.1 christos switch(ndx) {
3974 1.1 christos case 0:
3975 1.1 christos p = "int";
3976 1.1 christos break;
3977 1.1 christos case 1:
3978 1.1 christos p = "pid_t";
3979 1.1 christos break;
3980 1.1 christos case 2:
3981 1.1 christos p = "netbsd32_voidp";
3982 1.1 christos break;
3983 1.1 christos case 3:
3984 1.1 christos p = "int";
3985 1.1 christos break;
3986 1.1 christos default:
3987 1.1 christos break;
3988 1.1 christos };
3989 1.1 christos break;
3990 1.1 christos /* netbsd32_recvmsg */
3991 1.1 christos case 27:
3992 1.1 christos switch(ndx) {
3993 1.1 christos case 0:
3994 1.1 christos p = "int";
3995 1.1 christos break;
3996 1.1 christos case 1:
3997 1.1 christos p = "netbsd32_msghdrp_t";
3998 1.1 christos break;
3999 1.1 christos case 2:
4000 1.1 christos p = "int";
4001 1.1 christos break;
4002 1.1 christos default:
4003 1.1 christos break;
4004 1.1 christos };
4005 1.1 christos break;
4006 1.1 christos /* netbsd32_sendmsg */
4007 1.1 christos case 28:
4008 1.1 christos switch(ndx) {
4009 1.1 christos case 0:
4010 1.1 christos p = "int";
4011 1.1 christos break;
4012 1.1 christos case 1:
4013 1.1 christos p = "netbsd32_msghdrp_t";
4014 1.1 christos break;
4015 1.1 christos case 2:
4016 1.1 christos p = "int";
4017 1.1 christos break;
4018 1.1 christos default:
4019 1.1 christos break;
4020 1.1 christos };
4021 1.1 christos break;
4022 1.1 christos /* netbsd32_recvfrom */
4023 1.1 christos case 29:
4024 1.1 christos switch(ndx) {
4025 1.1 christos case 0:
4026 1.1 christos p = "int";
4027 1.1 christos break;
4028 1.1 christos case 1:
4029 1.1 christos p = "netbsd32_voidp";
4030 1.1 christos break;
4031 1.1 christos case 2:
4032 1.1 christos p = "netbsd32_size_t";
4033 1.1 christos break;
4034 1.1 christos case 3:
4035 1.1 christos p = "int";
4036 1.1 christos break;
4037 1.1 christos case 4:
4038 1.1 christos p = "netbsd32_sockaddrp_t";
4039 1.1 christos break;
4040 1.1 christos case 5:
4041 1.1 christos p = "netbsd32_intp";
4042 1.1 christos break;
4043 1.1 christos default:
4044 1.1 christos break;
4045 1.1 christos };
4046 1.1 christos break;
4047 1.1 christos /* netbsd32_accept */
4048 1.1 christos case 30:
4049 1.1 christos switch(ndx) {
4050 1.1 christos case 0:
4051 1.1 christos p = "int";
4052 1.1 christos break;
4053 1.1 christos case 1:
4054 1.1 christos p = "netbsd32_sockaddrp_t";
4055 1.1 christos break;
4056 1.1 christos case 2:
4057 1.1 christos p = "netbsd32_intp";
4058 1.1 christos break;
4059 1.1 christos default:
4060 1.1 christos break;
4061 1.1 christos };
4062 1.1 christos break;
4063 1.1 christos /* netbsd32_getpeername */
4064 1.1 christos case 31:
4065 1.1 christos switch(ndx) {
4066 1.1 christos case 0:
4067 1.1 christos p = "int";
4068 1.1 christos break;
4069 1.1 christos case 1:
4070 1.1 christos p = "netbsd32_sockaddrp_t";
4071 1.1 christos break;
4072 1.1 christos case 2:
4073 1.1 christos p = "netbsd32_intp";
4074 1.1 christos break;
4075 1.1 christos default:
4076 1.1 christos break;
4077 1.1 christos };
4078 1.1 christos break;
4079 1.1 christos /* netbsd32_getsockname */
4080 1.1 christos case 32:
4081 1.1 christos switch(ndx) {
4082 1.1 christos case 0:
4083 1.1 christos p = "int";
4084 1.1 christos break;
4085 1.1 christos case 1:
4086 1.1 christos p = "netbsd32_sockaddrp_t";
4087 1.1 christos break;
4088 1.1 christos case 2:
4089 1.1 christos p = "netbsd32_intp";
4090 1.1 christos break;
4091 1.1 christos default:
4092 1.1 christos break;
4093 1.1 christos };
4094 1.1 christos break;
4095 1.1 christos /* netbsd32_access */
4096 1.1 christos case 33:
4097 1.1 christos switch(ndx) {
4098 1.1 christos case 0:
4099 1.1 christos p = "netbsd32_charp";
4100 1.1 christos break;
4101 1.1 christos case 1:
4102 1.1 christos p = "int";
4103 1.1 christos break;
4104 1.1 christos default:
4105 1.1 christos break;
4106 1.1 christos };
4107 1.1 christos break;
4108 1.1 christos /* netbsd32_chflags */
4109 1.1 christos case 34:
4110 1.1 christos switch(ndx) {
4111 1.1 christos case 0:
4112 1.1 christos p = "netbsd32_charp";
4113 1.1 christos break;
4114 1.1 christos case 1:
4115 1.1 christos p = "netbsd32_u_long";
4116 1.1 christos break;
4117 1.1 christos default:
4118 1.1 christos break;
4119 1.1 christos };
4120 1.1 christos break;
4121 1.1 christos /* netbsd32_fchflags */
4122 1.1 christos case 35:
4123 1.1 christos switch(ndx) {
4124 1.1 christos case 0:
4125 1.1 christos p = "int";
4126 1.1 christos break;
4127 1.1 christos case 1:
4128 1.1 christos p = "netbsd32_u_long";
4129 1.1 christos break;
4130 1.1 christos default:
4131 1.1 christos break;
4132 1.1 christos };
4133 1.1 christos break;
4134 1.1 christos /* sys_sync */
4135 1.1 christos case 36:
4136 1.1 christos break;
4137 1.1 christos /* netbsd32_kill */
4138 1.1 christos case 37:
4139 1.1 christos switch(ndx) {
4140 1.1 christos case 0:
4141 1.1 christos p = "int";
4142 1.1 christos break;
4143 1.1 christos case 1:
4144 1.1 christos p = "int";
4145 1.1 christos break;
4146 1.1 christos default:
4147 1.1 christos break;
4148 1.1 christos };
4149 1.1 christos break;
4150 1.1 christos /* netbsd32_stat43 */
4151 1.1 christos case 38:
4152 1.1 christos switch(ndx) {
4153 1.1 christos case 0:
4154 1.1 christos p = "netbsd32_charp";
4155 1.1 christos break;
4156 1.1 christos case 1:
4157 1.1 christos p = "netbsd32_stat43p_t";
4158 1.1 christos break;
4159 1.1 christos default:
4160 1.1 christos break;
4161 1.1 christos };
4162 1.1 christos break;
4163 1.1 christos /* sys_getppid */
4164 1.1 christos case 39:
4165 1.1 christos break;
4166 1.1 christos /* netbsd32_lstat43 */
4167 1.1 christos case 40:
4168 1.1 christos switch(ndx) {
4169 1.1 christos case 0:
4170 1.1 christos p = "netbsd32_charp";
4171 1.1 christos break;
4172 1.1 christos case 1:
4173 1.1 christos p = "netbsd32_stat43p_t";
4174 1.1 christos break;
4175 1.1 christos default:
4176 1.1 christos break;
4177 1.1 christos };
4178 1.1 christos break;
4179 1.1 christos /* netbsd32_dup */
4180 1.1 christos case 41:
4181 1.1 christos switch(ndx) {
4182 1.1 christos case 0:
4183 1.1 christos p = "int";
4184 1.1 christos break;
4185 1.1 christos default:
4186 1.1 christos break;
4187 1.1 christos };
4188 1.1 christos break;
4189 1.1 christos /* sys_pipe */
4190 1.1 christos case 42:
4191 1.1 christos break;
4192 1.1 christos /* sys_getegid */
4193 1.1 christos case 43:
4194 1.1 christos break;
4195 1.1 christos /* netbsd32_profil */
4196 1.1 christos case 44:
4197 1.1 christos switch(ndx) {
4198 1.1 christos case 0:
4199 1.1 christos p = "netbsd32_voidp";
4200 1.1 christos break;
4201 1.1 christos case 1:
4202 1.1 christos p = "netbsd32_size_t";
4203 1.1 christos break;
4204 1.1 christos case 2:
4205 1.1 christos p = "netbsd32_u_long";
4206 1.1 christos break;
4207 1.1 christos case 3:
4208 1.1 christos p = "u_int";
4209 1.1 christos break;
4210 1.1 christos default:
4211 1.1 christos break;
4212 1.1 christos };
4213 1.1 christos break;
4214 1.1 christos /* netbsd32_ktrace */
4215 1.1 christos case 45:
4216 1.1 christos switch(ndx) {
4217 1.1 christos case 0:
4218 1.1 christos p = "netbsd32_charp";
4219 1.1 christos break;
4220 1.1 christos case 1:
4221 1.1 christos p = "int";
4222 1.1 christos break;
4223 1.1 christos case 2:
4224 1.1 christos p = "int";
4225 1.1 christos break;
4226 1.1 christos case 3:
4227 1.1 christos p = "int";
4228 1.1 christos break;
4229 1.1 christos default:
4230 1.1 christos break;
4231 1.1 christos };
4232 1.1 christos break;
4233 1.1 christos /* netbsd32_sigaction */
4234 1.1 christos case 46:
4235 1.1 christos switch(ndx) {
4236 1.1 christos case 0:
4237 1.1 christos p = "int";
4238 1.1 christos break;
4239 1.1 christos case 1:
4240 1.1 christos p = "netbsd32_sigactionp_t";
4241 1.1 christos break;
4242 1.1 christos case 2:
4243 1.1 christos p = "netbsd32_sigactionp_t";
4244 1.1 christos break;
4245 1.1 christos default:
4246 1.1 christos break;
4247 1.1 christos };
4248 1.1 christos break;
4249 1.37 kamil /* sys_getgid_with_egid */
4250 1.1 christos case 47:
4251 1.1 christos break;
4252 1.1 christos /* netbsd32_sigprocmask */
4253 1.1 christos case 48:
4254 1.1 christos switch(ndx) {
4255 1.1 christos case 0:
4256 1.1 christos p = "int";
4257 1.1 christos break;
4258 1.1 christos case 1:
4259 1.1 christos p = "int";
4260 1.1 christos break;
4261 1.1 christos default:
4262 1.1 christos break;
4263 1.1 christos };
4264 1.1 christos break;
4265 1.1 christos /* netbsd32___getlogin */
4266 1.1 christos case 49:
4267 1.1 christos switch(ndx) {
4268 1.1 christos case 0:
4269 1.1 christos p = "netbsd32_charp";
4270 1.1 christos break;
4271 1.1 christos case 1:
4272 1.1 christos p = "u_int";
4273 1.1 christos break;
4274 1.1 christos default:
4275 1.1 christos break;
4276 1.1 christos };
4277 1.1 christos break;
4278 1.1 christos /* netbsd32_setlogin */
4279 1.1 christos case 50:
4280 1.1 christos switch(ndx) {
4281 1.1 christos case 0:
4282 1.1 christos p = "netbsd32_charp";
4283 1.1 christos break;
4284 1.1 christos default:
4285 1.1 christos break;
4286 1.1 christos };
4287 1.1 christos break;
4288 1.1 christos /* netbsd32_acct */
4289 1.1 christos case 51:
4290 1.1 christos switch(ndx) {
4291 1.1 christos case 0:
4292 1.1 christos p = "netbsd32_charp";
4293 1.1 christos break;
4294 1.1 christos default:
4295 1.1 christos break;
4296 1.1 christos };
4297 1.1 christos break;
4298 1.1 christos /* sys_sigpending */
4299 1.1 christos case 52:
4300 1.1 christos break;
4301 1.1 christos /* netbsd32_sigaltstack13 */
4302 1.1 christos case 53:
4303 1.1 christos switch(ndx) {
4304 1.1 christos case 0:
4305 1.1 christos p = "netbsd32_sigaltstack13p_t";
4306 1.1 christos break;
4307 1.1 christos case 1:
4308 1.1 christos p = "netbsd32_sigaltstack13p_t";
4309 1.1 christos break;
4310 1.1 christos default:
4311 1.1 christos break;
4312 1.1 christos };
4313 1.1 christos break;
4314 1.1 christos /* netbsd32_ioctl */
4315 1.1 christos case 54:
4316 1.1 christos switch(ndx) {
4317 1.1 christos case 0:
4318 1.1 christos p = "int";
4319 1.1 christos break;
4320 1.1 christos case 1:
4321 1.1 christos p = "netbsd32_u_long";
4322 1.1 christos break;
4323 1.1 christos case 2:
4324 1.1 christos p = "netbsd32_voidp";
4325 1.1 christos break;
4326 1.1 christos default:
4327 1.1 christos break;
4328 1.1 christos };
4329 1.1 christos break;
4330 1.1 christos /* netbsd32_reboot */
4331 1.1 christos case 55:
4332 1.1 christos switch(ndx) {
4333 1.1 christos case 0:
4334 1.1 christos p = "int";
4335 1.1 christos break;
4336 1.1 christos default:
4337 1.1 christos break;
4338 1.1 christos };
4339 1.1 christos break;
4340 1.1 christos /* netbsd32_revoke */
4341 1.1 christos case 56:
4342 1.1 christos switch(ndx) {
4343 1.1 christos case 0:
4344 1.1 christos p = "netbsd32_charp";
4345 1.1 christos break;
4346 1.1 christos default:
4347 1.1 christos break;
4348 1.1 christos };
4349 1.1 christos break;
4350 1.1 christos /* netbsd32_symlink */
4351 1.1 christos case 57:
4352 1.1 christos switch(ndx) {
4353 1.1 christos case 0:
4354 1.1 christos p = "netbsd32_charp";
4355 1.1 christos break;
4356 1.1 christos case 1:
4357 1.1 christos p = "netbsd32_charp";
4358 1.1 christos break;
4359 1.1 christos default:
4360 1.1 christos break;
4361 1.1 christos };
4362 1.1 christos break;
4363 1.1 christos /* netbsd32_readlink */
4364 1.1 christos case 58:
4365 1.1 christos switch(ndx) {
4366 1.1 christos case 0:
4367 1.1 christos p = "netbsd32_charp";
4368 1.1 christos break;
4369 1.1 christos case 1:
4370 1.1 christos p = "netbsd32_charp";
4371 1.1 christos break;
4372 1.1 christos case 2:
4373 1.1 christos p = "netbsd32_size_t";
4374 1.1 christos break;
4375 1.1 christos default:
4376 1.1 christos break;
4377 1.1 christos };
4378 1.1 christos break;
4379 1.1 christos /* netbsd32_execve */
4380 1.1 christos case 59:
4381 1.1 christos switch(ndx) {
4382 1.1 christos case 0:
4383 1.1 christos p = "netbsd32_charp";
4384 1.1 christos break;
4385 1.1 christos case 1:
4386 1.1 christos p = "netbsd32_charpp";
4387 1.1 christos break;
4388 1.1 christos case 2:
4389 1.1 christos p = "netbsd32_charpp";
4390 1.1 christos break;
4391 1.1 christos default:
4392 1.1 christos break;
4393 1.1 christos };
4394 1.1 christos break;
4395 1.1 christos /* netbsd32_umask */
4396 1.1 christos case 60:
4397 1.1 christos switch(ndx) {
4398 1.1 christos case 0:
4399 1.1 christos p = "mode_t";
4400 1.1 christos break;
4401 1.1 christos default:
4402 1.1 christos break;
4403 1.1 christos };
4404 1.1 christos break;
4405 1.1 christos /* netbsd32_chroot */
4406 1.1 christos case 61:
4407 1.1 christos switch(ndx) {
4408 1.1 christos case 0:
4409 1.1 christos p = "netbsd32_charp";
4410 1.1 christos break;
4411 1.1 christos default:
4412 1.1 christos break;
4413 1.1 christos };
4414 1.1 christos break;
4415 1.1 christos /* netbsd32_fstat43 */
4416 1.1 christos case 62:
4417 1.1 christos switch(ndx) {
4418 1.1 christos case 0:
4419 1.1 christos p = "int";
4420 1.1 christos break;
4421 1.1 christos case 1:
4422 1.1 christos p = "netbsd32_stat43p_t";
4423 1.1 christos break;
4424 1.1 christos default:
4425 1.1 christos break;
4426 1.1 christos };
4427 1.1 christos break;
4428 1.1 christos /* netbsd32_ogetkerninfo */
4429 1.1 christos case 63:
4430 1.1 christos switch(ndx) {
4431 1.1 christos case 0:
4432 1.1 christos p = "int";
4433 1.1 christos break;
4434 1.1 christos case 1:
4435 1.1 christos p = "netbsd32_charp";
4436 1.1 christos break;
4437 1.1 christos case 2:
4438 1.1 christos p = "netbsd32_intp";
4439 1.1 christos break;
4440 1.1 christos case 3:
4441 1.1 christos p = "int";
4442 1.1 christos break;
4443 1.1 christos default:
4444 1.1 christos break;
4445 1.1 christos };
4446 1.1 christos break;
4447 1.1 christos /* sys_getpagesize */
4448 1.1 christos case 64:
4449 1.1 christos break;
4450 1.1 christos /* netbsd32_msync */
4451 1.1 christos case 65:
4452 1.1 christos switch(ndx) {
4453 1.1 christos case 0:
4454 1.1 christos p = "netbsd32_voidp";
4455 1.1 christos break;
4456 1.1 christos case 1:
4457 1.1 christos p = "netbsd32_size_t";
4458 1.1 christos break;
4459 1.1 christos default:
4460 1.1 christos break;
4461 1.1 christos };
4462 1.1 christos break;
4463 1.1 christos /* sys_vfork */
4464 1.1 christos case 66:
4465 1.1 christos break;
4466 1.1 christos /* netbsd32_ommap */
4467 1.1 christos case 71:
4468 1.1 christos switch(ndx) {
4469 1.1 christos case 0:
4470 1.1 christos p = "netbsd32_voidp";
4471 1.1 christos break;
4472 1.1 christos case 1:
4473 1.1 christos p = "netbsd32_size_t";
4474 1.1 christos break;
4475 1.1 christos case 2:
4476 1.1 christos p = "int";
4477 1.1 christos break;
4478 1.1 christos case 3:
4479 1.1 christos p = "int";
4480 1.1 christos break;
4481 1.1 christos case 4:
4482 1.1 christos p = "int";
4483 1.1 christos break;
4484 1.1 christos case 5:
4485 1.1 christos p = "netbsd32_long";
4486 1.1 christos break;
4487 1.1 christos default:
4488 1.1 christos break;
4489 1.1 christos };
4490 1.1 christos break;
4491 1.24 kamil /* netbsd32_ovadvise */
4492 1.24 kamil case 72:
4493 1.24 kamil switch(ndx) {
4494 1.24 kamil case 0:
4495 1.24 kamil p = "int";
4496 1.24 kamil break;
4497 1.24 kamil default:
4498 1.24 kamil break;
4499 1.24 kamil };
4500 1.24 kamil break;
4501 1.1 christos /* netbsd32_munmap */
4502 1.1 christos case 73:
4503 1.1 christos switch(ndx) {
4504 1.1 christos case 0:
4505 1.1 christos p = "netbsd32_voidp";
4506 1.1 christos break;
4507 1.1 christos case 1:
4508 1.1 christos p = "netbsd32_size_t";
4509 1.1 christos break;
4510 1.1 christos default:
4511 1.1 christos break;
4512 1.1 christos };
4513 1.1 christos break;
4514 1.1 christos /* netbsd32_mprotect */
4515 1.1 christos case 74:
4516 1.1 christos switch(ndx) {
4517 1.1 christos case 0:
4518 1.1 christos p = "netbsd32_voidp";
4519 1.1 christos break;
4520 1.1 christos case 1:
4521 1.1 christos p = "netbsd32_size_t";
4522 1.1 christos break;
4523 1.1 christos case 2:
4524 1.1 christos p = "int";
4525 1.1 christos break;
4526 1.1 christos default:
4527 1.1 christos break;
4528 1.1 christos };
4529 1.1 christos break;
4530 1.1 christos /* netbsd32_madvise */
4531 1.1 christos case 75:
4532 1.1 christos switch(ndx) {
4533 1.1 christos case 0:
4534 1.1 christos p = "netbsd32_voidp";
4535 1.1 christos break;
4536 1.1 christos case 1:
4537 1.1 christos p = "netbsd32_size_t";
4538 1.1 christos break;
4539 1.1 christos case 2:
4540 1.1 christos p = "int";
4541 1.1 christos break;
4542 1.1 christos default:
4543 1.1 christos break;
4544 1.1 christos };
4545 1.1 christos break;
4546 1.1 christos /* netbsd32_mincore */
4547 1.1 christos case 78:
4548 1.1 christos switch(ndx) {
4549 1.1 christos case 0:
4550 1.1 christos p = "netbsd32_voidp";
4551 1.1 christos break;
4552 1.1 christos case 1:
4553 1.1 christos p = "netbsd32_size_t";
4554 1.1 christos break;
4555 1.1 christos case 2:
4556 1.1 christos p = "netbsd32_charp";
4557 1.1 christos break;
4558 1.1 christos default:
4559 1.1 christos break;
4560 1.1 christos };
4561 1.1 christos break;
4562 1.1 christos /* netbsd32_getgroups */
4563 1.1 christos case 79:
4564 1.1 christos switch(ndx) {
4565 1.1 christos case 0:
4566 1.1 christos p = "int";
4567 1.1 christos break;
4568 1.1 christos case 1:
4569 1.1 christos p = "netbsd32_gid_tp";
4570 1.1 christos break;
4571 1.1 christos default:
4572 1.1 christos break;
4573 1.1 christos };
4574 1.1 christos break;
4575 1.1 christos /* netbsd32_setgroups */
4576 1.1 christos case 80:
4577 1.1 christos switch(ndx) {
4578 1.1 christos case 0:
4579 1.1 christos p = "int";
4580 1.1 christos break;
4581 1.1 christos case 1:
4582 1.1 christos p = "netbsd32_gid_tp";
4583 1.1 christos break;
4584 1.1 christos default:
4585 1.1 christos break;
4586 1.1 christos };
4587 1.1 christos break;
4588 1.1 christos /* sys_getpgrp */
4589 1.1 christos case 81:
4590 1.1 christos break;
4591 1.1 christos /* netbsd32_setpgid */
4592 1.1 christos case 82:
4593 1.1 christos switch(ndx) {
4594 1.1 christos case 0:
4595 1.1 christos p = "int";
4596 1.1 christos break;
4597 1.1 christos case 1:
4598 1.1 christos p = "int";
4599 1.1 christos break;
4600 1.1 christos default:
4601 1.1 christos break;
4602 1.1 christos };
4603 1.1 christos break;
4604 1.1 christos /* netbsd32_setitimer */
4605 1.1 christos case 83:
4606 1.1 christos switch(ndx) {
4607 1.1 christos case 0:
4608 1.1 christos p = "int";
4609 1.1 christos break;
4610 1.1 christos case 1:
4611 1.1 christos p = "netbsd32_itimerval50p_t";
4612 1.1 christos break;
4613 1.1 christos case 2:
4614 1.1 christos p = "netbsd32_itimerval50p_t";
4615 1.1 christos break;
4616 1.1 christos default:
4617 1.1 christos break;
4618 1.1 christos };
4619 1.1 christos break;
4620 1.1 christos /* sys_wait */
4621 1.1 christos case 84:
4622 1.1 christos break;
4623 1.1 christos /* netbsd32_oswapon */
4624 1.1 christos case 85:
4625 1.1 christos switch(ndx) {
4626 1.1 christos case 0:
4627 1.1 christos p = "netbsd32_charp";
4628 1.1 christos break;
4629 1.1 christos default:
4630 1.1 christos break;
4631 1.1 christos };
4632 1.1 christos break;
4633 1.1 christos /* netbsd32_getitimer */
4634 1.1 christos case 86:
4635 1.1 christos switch(ndx) {
4636 1.1 christos case 0:
4637 1.1 christos p = "int";
4638 1.1 christos break;
4639 1.1 christos case 1:
4640 1.1 christos p = "netbsd32_itimerval50p_t";
4641 1.1 christos break;
4642 1.1 christos default:
4643 1.1 christos break;
4644 1.1 christos };
4645 1.1 christos break;
4646 1.1 christos /* netbsd32_ogethostname */
4647 1.1 christos case 87:
4648 1.1 christos switch(ndx) {
4649 1.1 christos case 0:
4650 1.1 christos p = "netbsd32_charp";
4651 1.1 christos break;
4652 1.1 christos case 1:
4653 1.1 christos p = "u_int";
4654 1.1 christos break;
4655 1.1 christos default:
4656 1.1 christos break;
4657 1.1 christos };
4658 1.1 christos break;
4659 1.1 christos /* netbsd32_osethostname */
4660 1.1 christos case 88:
4661 1.1 christos switch(ndx) {
4662 1.1 christos case 0:
4663 1.1 christos p = "netbsd32_charp";
4664 1.1 christos break;
4665 1.1 christos case 1:
4666 1.1 christos p = "u_int";
4667 1.1 christos break;
4668 1.1 christos default:
4669 1.1 christos break;
4670 1.1 christos };
4671 1.1 christos break;
4672 1.1 christos /* sys_getdtablesize */
4673 1.1 christos case 89:
4674 1.1 christos break;
4675 1.1 christos /* netbsd32_dup2 */
4676 1.1 christos case 90:
4677 1.1 christos switch(ndx) {
4678 1.1 christos case 0:
4679 1.1 christos p = "int";
4680 1.1 christos break;
4681 1.1 christos case 1:
4682 1.1 christos p = "int";
4683 1.1 christos break;
4684 1.1 christos default:
4685 1.1 christos break;
4686 1.1 christos };
4687 1.1 christos break;
4688 1.1 christos /* netbsd32_fcntl */
4689 1.1 christos case 92:
4690 1.1 christos switch(ndx) {
4691 1.1 christos case 0:
4692 1.1 christos p = "int";
4693 1.1 christos break;
4694 1.1 christos case 1:
4695 1.1 christos p = "int";
4696 1.1 christos break;
4697 1.1 christos case 2:
4698 1.1 christos p = "netbsd32_voidp";
4699 1.1 christos break;
4700 1.1 christos default:
4701 1.1 christos break;
4702 1.1 christos };
4703 1.1 christos break;
4704 1.1 christos /* netbsd32_select */
4705 1.1 christos case 93:
4706 1.1 christos switch(ndx) {
4707 1.1 christos case 0:
4708 1.1 christos p = "int";
4709 1.1 christos break;
4710 1.1 christos case 1:
4711 1.1 christos p = "netbsd32_fd_setp_t";
4712 1.1 christos break;
4713 1.1 christos case 2:
4714 1.1 christos p = "netbsd32_fd_setp_t";
4715 1.1 christos break;
4716 1.1 christos case 3:
4717 1.1 christos p = "netbsd32_fd_setp_t";
4718 1.1 christos break;
4719 1.1 christos case 4:
4720 1.1 christos p = "netbsd32_timeval50p_t";
4721 1.1 christos break;
4722 1.1 christos default:
4723 1.1 christos break;
4724 1.1 christos };
4725 1.1 christos break;
4726 1.1 christos /* netbsd32_fsync */
4727 1.1 christos case 95:
4728 1.1 christos switch(ndx) {
4729 1.1 christos case 0:
4730 1.1 christos p = "int";
4731 1.1 christos break;
4732 1.1 christos default:
4733 1.1 christos break;
4734 1.1 christos };
4735 1.1 christos break;
4736 1.1 christos /* netbsd32_setpriority */
4737 1.1 christos case 96:
4738 1.1 christos switch(ndx) {
4739 1.1 christos case 0:
4740 1.1 christos p = "int";
4741 1.1 christos break;
4742 1.1 christos case 1:
4743 1.1 christos p = "int";
4744 1.1 christos break;
4745 1.1 christos case 2:
4746 1.1 christos p = "int";
4747 1.1 christos break;
4748 1.1 christos default:
4749 1.1 christos break;
4750 1.1 christos };
4751 1.1 christos break;
4752 1.1 christos /* netbsd32_socket */
4753 1.1 christos case 97:
4754 1.1 christos switch(ndx) {
4755 1.1 christos case 0:
4756 1.1 christos p = "int";
4757 1.1 christos break;
4758 1.1 christos case 1:
4759 1.1 christos p = "int";
4760 1.1 christos break;
4761 1.1 christos case 2:
4762 1.1 christos p = "int";
4763 1.1 christos break;
4764 1.1 christos default:
4765 1.1 christos break;
4766 1.1 christos };
4767 1.1 christos break;
4768 1.1 christos /* netbsd32_connect */
4769 1.1 christos case 98:
4770 1.1 christos switch(ndx) {
4771 1.1 christos case 0:
4772 1.1 christos p = "int";
4773 1.1 christos break;
4774 1.1 christos case 1:
4775 1.1 christos p = "netbsd32_sockaddrp_t";
4776 1.1 christos break;
4777 1.1 christos case 2:
4778 1.1 christos p = "int";
4779 1.1 christos break;
4780 1.1 christos default:
4781 1.1 christos break;
4782 1.1 christos };
4783 1.1 christos break;
4784 1.1 christos /* netbsd32_oaccept */
4785 1.1 christos case 99:
4786 1.1 christos switch(ndx) {
4787 1.1 christos case 0:
4788 1.1 christos p = "int";
4789 1.1 christos break;
4790 1.1 christos case 1:
4791 1.1 christos p = "netbsd32_voidp";
4792 1.1 christos break;
4793 1.1 christos case 2:
4794 1.1 christos p = "netbsd32_intp";
4795 1.1 christos break;
4796 1.1 christos default:
4797 1.1 christos break;
4798 1.1 christos };
4799 1.1 christos break;
4800 1.1 christos /* netbsd32_getpriority */
4801 1.1 christos case 100:
4802 1.1 christos switch(ndx) {
4803 1.1 christos case 0:
4804 1.1 christos p = "int";
4805 1.1 christos break;
4806 1.1 christos case 1:
4807 1.1 christos p = "int";
4808 1.1 christos break;
4809 1.1 christos default:
4810 1.1 christos break;
4811 1.1 christos };
4812 1.1 christos break;
4813 1.1 christos /* netbsd32_osend */
4814 1.1 christos case 101:
4815 1.1 christos switch(ndx) {
4816 1.1 christos case 0:
4817 1.1 christos p = "int";
4818 1.1 christos break;
4819 1.1 christos case 1:
4820 1.1 christos p = "netbsd32_voidp";
4821 1.1 christos break;
4822 1.1 christos case 2:
4823 1.1 christos p = "int";
4824 1.1 christos break;
4825 1.1 christos case 3:
4826 1.1 christos p = "int";
4827 1.1 christos break;
4828 1.1 christos default:
4829 1.1 christos break;
4830 1.1 christos };
4831 1.1 christos break;
4832 1.1 christos /* netbsd32_orecv */
4833 1.1 christos case 102:
4834 1.1 christos switch(ndx) {
4835 1.1 christos case 0:
4836 1.1 christos p = "int";
4837 1.1 christos break;
4838 1.1 christos case 1:
4839 1.1 christos p = "netbsd32_voidp";
4840 1.1 christos break;
4841 1.1 christos case 2:
4842 1.1 christos p = "int";
4843 1.1 christos break;
4844 1.1 christos case 3:
4845 1.1 christos p = "int";
4846 1.1 christos break;
4847 1.1 christos default:
4848 1.1 christos break;
4849 1.1 christos };
4850 1.1 christos break;
4851 1.1 christos /* netbsd32_sigreturn */
4852 1.1 christos case 103:
4853 1.1 christos switch(ndx) {
4854 1.1 christos case 0:
4855 1.1 christos p = "netbsd32_sigcontextp_t";
4856 1.1 christos break;
4857 1.1 christos default:
4858 1.1 christos break;
4859 1.1 christos };
4860 1.1 christos break;
4861 1.1 christos /* netbsd32_bind */
4862 1.1 christos case 104:
4863 1.1 christos switch(ndx) {
4864 1.1 christos case 0:
4865 1.1 christos p = "int";
4866 1.1 christos break;
4867 1.1 christos case 1:
4868 1.1 christos p = "netbsd32_sockaddrp_t";
4869 1.1 christos break;
4870 1.1 christos case 2:
4871 1.1 christos p = "int";
4872 1.1 christos break;
4873 1.1 christos default:
4874 1.1 christos break;
4875 1.1 christos };
4876 1.1 christos break;
4877 1.1 christos /* netbsd32_setsockopt */
4878 1.1 christos case 105:
4879 1.1 christos switch(ndx) {
4880 1.1 christos case 0:
4881 1.1 christos p = "int";
4882 1.1 christos break;
4883 1.1 christos case 1:
4884 1.1 christos p = "int";
4885 1.1 christos break;
4886 1.1 christos case 2:
4887 1.1 christos p = "int";
4888 1.1 christos break;
4889 1.1 christos case 3:
4890 1.1 christos p = "netbsd32_voidp";
4891 1.1 christos break;
4892 1.1 christos case 4:
4893 1.1 christos p = "int";
4894 1.1 christos break;
4895 1.1 christos default:
4896 1.1 christos break;
4897 1.1 christos };
4898 1.1 christos break;
4899 1.1 christos /* netbsd32_listen */
4900 1.1 christos case 106:
4901 1.1 christos switch(ndx) {
4902 1.1 christos case 0:
4903 1.1 christos p = "int";
4904 1.1 christos break;
4905 1.1 christos case 1:
4906 1.1 christos p = "int";
4907 1.1 christos break;
4908 1.1 christos default:
4909 1.1 christos break;
4910 1.1 christos };
4911 1.1 christos break;
4912 1.1 christos /* netbsd32_osigvec */
4913 1.1 christos case 108:
4914 1.1 christos switch(ndx) {
4915 1.1 christos case 0:
4916 1.1 christos p = "int";
4917 1.1 christos break;
4918 1.1 christos case 1:
4919 1.1 christos p = "netbsd32_sigvecp_t";
4920 1.1 christos break;
4921 1.1 christos case 2:
4922 1.1 christos p = "netbsd32_sigvecp_t";
4923 1.1 christos break;
4924 1.1 christos default:
4925 1.1 christos break;
4926 1.1 christos };
4927 1.1 christos break;
4928 1.1 christos /* netbsd32_sigblock */
4929 1.1 christos case 109:
4930 1.1 christos switch(ndx) {
4931 1.1 christos case 0:
4932 1.1 christos p = "int";
4933 1.1 christos break;
4934 1.1 christos default:
4935 1.1 christos break;
4936 1.1 christos };
4937 1.1 christos break;
4938 1.1 christos /* netbsd32_sigsetmask */
4939 1.1 christos case 110:
4940 1.1 christos switch(ndx) {
4941 1.1 christos case 0:
4942 1.1 christos p = "int";
4943 1.1 christos break;
4944 1.1 christos default:
4945 1.1 christos break;
4946 1.1 christos };
4947 1.1 christos break;
4948 1.1 christos /* netbsd32_sigsuspend */
4949 1.1 christos case 111:
4950 1.1 christos switch(ndx) {
4951 1.1 christos case 0:
4952 1.1 christos p = "int";
4953 1.1 christos break;
4954 1.1 christos default:
4955 1.1 christos break;
4956 1.1 christos };
4957 1.1 christos break;
4958 1.1 christos /* netbsd32_osigstack */
4959 1.1 christos case 112:
4960 1.1 christos switch(ndx) {
4961 1.1 christos case 0:
4962 1.1 christos p = "netbsd32_sigstackp_t";
4963 1.1 christos break;
4964 1.1 christos case 1:
4965 1.1 christos p = "netbsd32_sigstackp_t";
4966 1.1 christos break;
4967 1.1 christos default:
4968 1.1 christos break;
4969 1.1 christos };
4970 1.1 christos break;
4971 1.1 christos /* netbsd32_orecvmsg */
4972 1.1 christos case 113:
4973 1.1 christos switch(ndx) {
4974 1.1 christos case 0:
4975 1.1 christos p = "int";
4976 1.1 christos break;
4977 1.1 christos case 1:
4978 1.1 christos p = "netbsd32_omsghdrp_t";
4979 1.1 christos break;
4980 1.1 christos case 2:
4981 1.1 christos p = "int";
4982 1.1 christos break;
4983 1.1 christos default:
4984 1.1 christos break;
4985 1.1 christos };
4986 1.1 christos break;
4987 1.1 christos /* netbsd32_osendmsg */
4988 1.1 christos case 114:
4989 1.1 christos switch(ndx) {
4990 1.1 christos case 0:
4991 1.1 christos p = "int";
4992 1.1 christos break;
4993 1.1 christos case 1:
4994 1.1 christos p = "netbsd32_voidp";
4995 1.1 christos break;
4996 1.1 christos case 2:
4997 1.1 christos p = "int";
4998 1.1 christos break;
4999 1.1 christos default:
5000 1.1 christos break;
5001 1.1 christos };
5002 1.1 christos break;
5003 1.1 christos /* netbsd32_gettimeofday */
5004 1.1 christos case 116:
5005 1.1 christos switch(ndx) {
5006 1.1 christos case 0:
5007 1.1 christos p = "netbsd32_timeval50p_t";
5008 1.1 christos break;
5009 1.1 christos case 1:
5010 1.1 christos p = "netbsd32_timezonep_t";
5011 1.1 christos break;
5012 1.1 christos default:
5013 1.1 christos break;
5014 1.1 christos };
5015 1.1 christos break;
5016 1.1 christos /* netbsd32_getrusage */
5017 1.1 christos case 117:
5018 1.1 christos switch(ndx) {
5019 1.1 christos case 0:
5020 1.1 christos p = "int";
5021 1.1 christos break;
5022 1.1 christos case 1:
5023 1.1 christos p = "netbsd32_rusage50p_t";
5024 1.1 christos break;
5025 1.1 christos default:
5026 1.1 christos break;
5027 1.1 christos };
5028 1.1 christos break;
5029 1.1 christos /* netbsd32_getsockopt */
5030 1.1 christos case 118:
5031 1.1 christos switch(ndx) {
5032 1.1 christos case 0:
5033 1.1 christos p = "int";
5034 1.1 christos break;
5035 1.1 christos case 1:
5036 1.1 christos p = "int";
5037 1.1 christos break;
5038 1.1 christos case 2:
5039 1.1 christos p = "int";
5040 1.1 christos break;
5041 1.1 christos case 3:
5042 1.1 christos p = "netbsd32_voidp";
5043 1.1 christos break;
5044 1.1 christos case 4:
5045 1.1 christos p = "netbsd32_intp";
5046 1.1 christos break;
5047 1.1 christos default:
5048 1.1 christos break;
5049 1.1 christos };
5050 1.1 christos break;
5051 1.1 christos /* netbsd32_readv */
5052 1.1 christos case 120:
5053 1.1 christos switch(ndx) {
5054 1.1 christos case 0:
5055 1.1 christos p = "int";
5056 1.1 christos break;
5057 1.1 christos case 1:
5058 1.1 christos p = "netbsd32_iovecp_t";
5059 1.1 christos break;
5060 1.1 christos case 2:
5061 1.1 christos p = "int";
5062 1.1 christos break;
5063 1.1 christos default:
5064 1.1 christos break;
5065 1.1 christos };
5066 1.1 christos break;
5067 1.1 christos /* netbsd32_writev */
5068 1.1 christos case 121:
5069 1.1 christos switch(ndx) {
5070 1.1 christos case 0:
5071 1.1 christos p = "int";
5072 1.1 christos break;
5073 1.1 christos case 1:
5074 1.1 christos p = "netbsd32_iovecp_t";
5075 1.1 christos break;
5076 1.1 christos case 2:
5077 1.1 christos p = "int";
5078 1.1 christos break;
5079 1.1 christos default:
5080 1.1 christos break;
5081 1.1 christos };
5082 1.1 christos break;
5083 1.1 christos /* netbsd32_settimeofday */
5084 1.1 christos case 122:
5085 1.1 christos switch(ndx) {
5086 1.1 christos case 0:
5087 1.1 christos p = "netbsd32_timeval50p_t";
5088 1.1 christos break;
5089 1.1 christos case 1:
5090 1.1 christos p = "netbsd32_timezonep_t";
5091 1.1 christos break;
5092 1.1 christos default:
5093 1.1 christos break;
5094 1.1 christos };
5095 1.1 christos break;
5096 1.1 christos /* netbsd32_fchown */
5097 1.1 christos case 123:
5098 1.1 christos switch(ndx) {
5099 1.1 christos case 0:
5100 1.1 christos p = "int";
5101 1.1 christos break;
5102 1.1 christos case 1:
5103 1.1 christos p = "uid_t";
5104 1.1 christos break;
5105 1.1 christos case 2:
5106 1.1 christos p = "gid_t";
5107 1.1 christos break;
5108 1.1 christos default:
5109 1.1 christos break;
5110 1.1 christos };
5111 1.1 christos break;
5112 1.1 christos /* netbsd32_fchmod */
5113 1.1 christos case 124:
5114 1.1 christos switch(ndx) {
5115 1.1 christos case 0:
5116 1.1 christos p = "int";
5117 1.1 christos break;
5118 1.1 christos case 1:
5119 1.1 christos p = "mode_t";
5120 1.1 christos break;
5121 1.1 christos default:
5122 1.1 christos break;
5123 1.1 christos };
5124 1.1 christos break;
5125 1.1 christos /* netbsd32_orecvfrom */
5126 1.1 christos case 125:
5127 1.1 christos switch(ndx) {
5128 1.1 christos case 0:
5129 1.1 christos p = "int";
5130 1.1 christos break;
5131 1.1 christos case 1:
5132 1.1 christos p = "netbsd32_voidp";
5133 1.1 christos break;
5134 1.1 christos case 2:
5135 1.1 christos p = "netbsd32_size_t";
5136 1.1 christos break;
5137 1.1 christos case 3:
5138 1.1 christos p = "int";
5139 1.1 christos break;
5140 1.1 christos case 4:
5141 1.1 christos p = "netbsd32_voidp";
5142 1.1 christos break;
5143 1.1 christos case 5:
5144 1.1 christos p = "netbsd32_intp";
5145 1.1 christos break;
5146 1.1 christos default:
5147 1.1 christos break;
5148 1.1 christos };
5149 1.1 christos break;
5150 1.1 christos /* netbsd32_setreuid */
5151 1.1 christos case 126:
5152 1.1 christos switch(ndx) {
5153 1.1 christos case 0:
5154 1.1 christos p = "uid_t";
5155 1.1 christos break;
5156 1.1 christos case 1:
5157 1.1 christos p = "uid_t";
5158 1.1 christos break;
5159 1.1 christos default:
5160 1.1 christos break;
5161 1.1 christos };
5162 1.1 christos break;
5163 1.1 christos /* netbsd32_setregid */
5164 1.1 christos case 127:
5165 1.1 christos switch(ndx) {
5166 1.1 christos case 0:
5167 1.1 christos p = "gid_t";
5168 1.1 christos break;
5169 1.1 christos case 1:
5170 1.1 christos p = "gid_t";
5171 1.1 christos break;
5172 1.1 christos default:
5173 1.1 christos break;
5174 1.1 christos };
5175 1.1 christos break;
5176 1.1 christos /* netbsd32_rename */
5177 1.1 christos case 128:
5178 1.1 christos switch(ndx) {
5179 1.1 christos case 0:
5180 1.1 christos p = "netbsd32_charp";
5181 1.1 christos break;
5182 1.1 christos case 1:
5183 1.1 christos p = "netbsd32_charp";
5184 1.1 christos break;
5185 1.1 christos default:
5186 1.1 christos break;
5187 1.1 christos };
5188 1.1 christos break;
5189 1.1 christos /* netbsd32_otruncate */
5190 1.1 christos case 129:
5191 1.1 christos switch(ndx) {
5192 1.1 christos case 0:
5193 1.1 christos p = "netbsd32_charp";
5194 1.1 christos break;
5195 1.1 christos case 1:
5196 1.1 christos p = "netbsd32_long";
5197 1.1 christos break;
5198 1.1 christos default:
5199 1.1 christos break;
5200 1.1 christos };
5201 1.1 christos break;
5202 1.1 christos /* netbsd32_oftruncate */
5203 1.1 christos case 130:
5204 1.1 christos switch(ndx) {
5205 1.1 christos case 0:
5206 1.1 christos p = "int";
5207 1.1 christos break;
5208 1.1 christos case 1:
5209 1.1 christos p = "netbsd32_long";
5210 1.1 christos break;
5211 1.1 christos default:
5212 1.1 christos break;
5213 1.1 christos };
5214 1.1 christos break;
5215 1.1 christos /* netbsd32_flock */
5216 1.1 christos case 131:
5217 1.1 christos switch(ndx) {
5218 1.1 christos case 0:
5219 1.1 christos p = "int";
5220 1.1 christos break;
5221 1.1 christos case 1:
5222 1.1 christos p = "int";
5223 1.1 christos break;
5224 1.1 christos default:
5225 1.1 christos break;
5226 1.1 christos };
5227 1.1 christos break;
5228 1.1 christos /* netbsd32_mkfifo */
5229 1.1 christos case 132:
5230 1.1 christos switch(ndx) {
5231 1.1 christos case 0:
5232 1.1 christos p = "netbsd32_charp";
5233 1.1 christos break;
5234 1.1 christos case 1:
5235 1.1 christos p = "mode_t";
5236 1.1 christos break;
5237 1.1 christos default:
5238 1.1 christos break;
5239 1.1 christos };
5240 1.1 christos break;
5241 1.1 christos /* netbsd32_sendto */
5242 1.1 christos case 133:
5243 1.1 christos switch(ndx) {
5244 1.1 christos case 0:
5245 1.1 christos p = "int";
5246 1.1 christos break;
5247 1.1 christos case 1:
5248 1.1 christos p = "netbsd32_voidp";
5249 1.1 christos break;
5250 1.1 christos case 2:
5251 1.1 christos p = "netbsd32_size_t";
5252 1.1 christos break;
5253 1.1 christos case 3:
5254 1.1 christos p = "int";
5255 1.1 christos break;
5256 1.1 christos case 4:
5257 1.1 christos p = "netbsd32_sockaddrp_t";
5258 1.1 christos break;
5259 1.1 christos case 5:
5260 1.1 christos p = "int";
5261 1.1 christos break;
5262 1.1 christos default:
5263 1.1 christos break;
5264 1.1 christos };
5265 1.1 christos break;
5266 1.1 christos /* netbsd32_shutdown */
5267 1.1 christos case 134:
5268 1.1 christos switch(ndx) {
5269 1.1 christos case 0:
5270 1.1 christos p = "int";
5271 1.1 christos break;
5272 1.1 christos case 1:
5273 1.1 christos p = "int";
5274 1.1 christos break;
5275 1.1 christos default:
5276 1.1 christos break;
5277 1.1 christos };
5278 1.1 christos break;
5279 1.1 christos /* netbsd32_socketpair */
5280 1.1 christos case 135:
5281 1.1 christos switch(ndx) {
5282 1.1 christos case 0:
5283 1.1 christos p = "int";
5284 1.1 christos break;
5285 1.1 christos case 1:
5286 1.1 christos p = "int";
5287 1.1 christos break;
5288 1.1 christos case 2:
5289 1.1 christos p = "int";
5290 1.1 christos break;
5291 1.1 christos case 3:
5292 1.1 christos p = "netbsd32_intp";
5293 1.1 christos break;
5294 1.1 christos default:
5295 1.1 christos break;
5296 1.1 christos };
5297 1.1 christos break;
5298 1.1 christos /* netbsd32_mkdir */
5299 1.1 christos case 136:
5300 1.1 christos switch(ndx) {
5301 1.1 christos case 0:
5302 1.1 christos p = "netbsd32_charp";
5303 1.1 christos break;
5304 1.1 christos case 1:
5305 1.1 christos p = "mode_t";
5306 1.1 christos break;
5307 1.1 christos default:
5308 1.1 christos break;
5309 1.1 christos };
5310 1.1 christos break;
5311 1.1 christos /* netbsd32_rmdir */
5312 1.1 christos case 137:
5313 1.1 christos switch(ndx) {
5314 1.1 christos case 0:
5315 1.1 christos p = "netbsd32_charp";
5316 1.1 christos break;
5317 1.1 christos default:
5318 1.1 christos break;
5319 1.1 christos };
5320 1.1 christos break;
5321 1.1 christos /* netbsd32_utimes */
5322 1.1 christos case 138:
5323 1.1 christos switch(ndx) {
5324 1.1 christos case 0:
5325 1.1 christos p = "netbsd32_charp";
5326 1.1 christos break;
5327 1.1 christos case 1:
5328 1.1 christos p = "netbsd32_timeval50p_t";
5329 1.1 christos break;
5330 1.1 christos default:
5331 1.1 christos break;
5332 1.1 christos };
5333 1.1 christos break;
5334 1.1 christos /* netbsd32_adjtime */
5335 1.1 christos case 140:
5336 1.1 christos switch(ndx) {
5337 1.1 christos case 0:
5338 1.1 christos p = "netbsd32_timeval50p_t";
5339 1.1 christos break;
5340 1.1 christos case 1:
5341 1.1 christos p = "netbsd32_timeval50p_t";
5342 1.1 christos break;
5343 1.1 christos default:
5344 1.1 christos break;
5345 1.1 christos };
5346 1.1 christos break;
5347 1.1 christos /* netbsd32_ogetpeername */
5348 1.1 christos case 141:
5349 1.1 christos switch(ndx) {
5350 1.1 christos case 0:
5351 1.1 christos p = "int";
5352 1.1 christos break;
5353 1.1 christos case 1:
5354 1.1 christos p = "netbsd32_voidp";
5355 1.1 christos break;
5356 1.1 christos case 2:
5357 1.1 christos p = "netbsd32_intp";
5358 1.1 christos break;
5359 1.1 christos default:
5360 1.1 christos break;
5361 1.1 christos };
5362 1.1 christos break;
5363 1.1 christos /* sys_gethostid */
5364 1.1 christos case 142:
5365 1.1 christos break;
5366 1.1 christos /* netbsd32_sethostid */
5367 1.1 christos case 143:
5368 1.1 christos switch(ndx) {
5369 1.1 christos case 0:
5370 1.1 christos p = "int32_t";
5371 1.1 christos break;
5372 1.1 christos default:
5373 1.1 christos break;
5374 1.1 christos };
5375 1.1 christos break;
5376 1.1 christos /* netbsd32_ogetrlimit */
5377 1.1 christos case 144:
5378 1.1 christos switch(ndx) {
5379 1.1 christos case 0:
5380 1.1 christos p = "int";
5381 1.1 christos break;
5382 1.1 christos case 1:
5383 1.1 christos p = "netbsd32_orlimitp_t";
5384 1.1 christos break;
5385 1.1 christos default:
5386 1.1 christos break;
5387 1.1 christos };
5388 1.1 christos break;
5389 1.1 christos /* netbsd32_osetrlimit */
5390 1.1 christos case 145:
5391 1.1 christos switch(ndx) {
5392 1.1 christos case 0:
5393 1.1 christos p = "int";
5394 1.1 christos break;
5395 1.1 christos case 1:
5396 1.1 christos p = "netbsd32_orlimitp_t";
5397 1.1 christos break;
5398 1.1 christos default:
5399 1.1 christos break;
5400 1.1 christos };
5401 1.1 christos break;
5402 1.1 christos /* netbsd32_killpg */
5403 1.1 christos case 146:
5404 1.1 christos switch(ndx) {
5405 1.1 christos case 0:
5406 1.1 christos p = "int";
5407 1.1 christos break;
5408 1.1 christos case 1:
5409 1.1 christos p = "int";
5410 1.1 christos break;
5411 1.1 christos default:
5412 1.1 christos break;
5413 1.1 christos };
5414 1.1 christos break;
5415 1.1 christos /* sys_setsid */
5416 1.1 christos case 147:
5417 1.1 christos break;
5418 1.1 christos /* netbsd32_quotactl */
5419 1.1 christos case 148:
5420 1.1 christos switch(ndx) {
5421 1.1 christos case 0:
5422 1.1 christos p = "netbsd32_charp";
5423 1.1 christos break;
5424 1.1 christos case 1:
5425 1.1 christos p = "int";
5426 1.1 christos break;
5427 1.1 christos case 2:
5428 1.1 christos p = "int";
5429 1.1 christos break;
5430 1.1 christos case 3:
5431 1.1 christos p = "netbsd32_voidp";
5432 1.1 christos break;
5433 1.1 christos default:
5434 1.1 christos break;
5435 1.1 christos };
5436 1.1 christos break;
5437 1.1 christos /* netbsd32_ogetsockname */
5438 1.1 christos case 150:
5439 1.1 christos switch(ndx) {
5440 1.1 christos case 0:
5441 1.1 christos p = "int";
5442 1.1 christos break;
5443 1.1 christos case 1:
5444 1.1 christos p = "netbsd32_voidp";
5445 1.1 christos break;
5446 1.1 christos case 2:
5447 1.1 christos p = "netbsd32_intp";
5448 1.1 christos break;
5449 1.1 christos default:
5450 1.1 christos break;
5451 1.1 christos };
5452 1.1 christos break;
5453 1.6 mrg /* netbsd32_nfssvc */
5454 1.6 mrg case 155:
5455 1.6 mrg switch(ndx) {
5456 1.6 mrg case 0:
5457 1.6 mrg p = "int";
5458 1.6 mrg break;
5459 1.6 mrg case 1:
5460 1.6 mrg p = "netbsd32_voidp";
5461 1.6 mrg break;
5462 1.6 mrg default:
5463 1.6 mrg break;
5464 1.6 mrg };
5465 1.6 mrg break;
5466 1.1 christos /* netbsd32_ogetdirentries */
5467 1.1 christos case 156:
5468 1.1 christos switch(ndx) {
5469 1.1 christos case 0:
5470 1.1 christos p = "int";
5471 1.1 christos break;
5472 1.1 christos case 1:
5473 1.1 christos p = "netbsd32_charp";
5474 1.1 christos break;
5475 1.1 christos case 2:
5476 1.1 christos p = "u_int";
5477 1.1 christos break;
5478 1.1 christos case 3:
5479 1.1 christos p = "netbsd32_longp";
5480 1.1 christos break;
5481 1.1 christos default:
5482 1.1 christos break;
5483 1.1 christos };
5484 1.1 christos break;
5485 1.1 christos /* netbsd32_statfs */
5486 1.1 christos case 157:
5487 1.1 christos switch(ndx) {
5488 1.1 christos case 0:
5489 1.1 christos p = "netbsd32_charp";
5490 1.1 christos break;
5491 1.1 christos case 1:
5492 1.1 christos p = "netbsd32_statfsp_t";
5493 1.1 christos break;
5494 1.1 christos default:
5495 1.1 christos break;
5496 1.1 christos };
5497 1.1 christos break;
5498 1.1 christos /* netbsd32_fstatfs */
5499 1.1 christos case 158:
5500 1.1 christos switch(ndx) {
5501 1.1 christos case 0:
5502 1.1 christos p = "int";
5503 1.1 christos break;
5504 1.1 christos case 1:
5505 1.1 christos p = "netbsd32_statfsp_t";
5506 1.1 christos break;
5507 1.1 christos default:
5508 1.1 christos break;
5509 1.1 christos };
5510 1.1 christos break;
5511 1.1 christos /* netbsd32_getfh */
5512 1.1 christos case 161:
5513 1.1 christos switch(ndx) {
5514 1.1 christos case 0:
5515 1.1 christos p = "netbsd32_charp";
5516 1.1 christos break;
5517 1.1 christos case 1:
5518 1.1 christos p = "netbsd32_compat_30_fhandlep_t";
5519 1.1 christos break;
5520 1.1 christos default:
5521 1.1 christos break;
5522 1.1 christos };
5523 1.1 christos break;
5524 1.1 christos /* netbsd32_ogetdomainname */
5525 1.1 christos case 162:
5526 1.1 christos switch(ndx) {
5527 1.1 christos case 0:
5528 1.1 christos p = "netbsd32_charp";
5529 1.1 christos break;
5530 1.1 christos case 1:
5531 1.1 christos p = "int";
5532 1.1 christos break;
5533 1.1 christos default:
5534 1.1 christos break;
5535 1.1 christos };
5536 1.1 christos break;
5537 1.1 christos /* netbsd32_osetdomainname */
5538 1.1 christos case 163:
5539 1.1 christos switch(ndx) {
5540 1.1 christos case 0:
5541 1.1 christos p = "netbsd32_charp";
5542 1.1 christos break;
5543 1.1 christos case 1:
5544 1.1 christos p = "int";
5545 1.1 christos break;
5546 1.1 christos default:
5547 1.1 christos break;
5548 1.1 christos };
5549 1.1 christos break;
5550 1.1 christos /* netbsd32_uname */
5551 1.1 christos case 164:
5552 1.1 christos switch(ndx) {
5553 1.1 christos case 0:
5554 1.1 christos p = "netbsd32_outsnamep_t";
5555 1.1 christos break;
5556 1.1 christos default:
5557 1.1 christos break;
5558 1.1 christos };
5559 1.1 christos break;
5560 1.1 christos /* netbsd32_sysarch */
5561 1.1 christos case 165:
5562 1.1 christos switch(ndx) {
5563 1.1 christos case 0:
5564 1.1 christos p = "int";
5565 1.1 christos break;
5566 1.1 christos case 1:
5567 1.1 christos p = "netbsd32_voidp";
5568 1.1 christos break;
5569 1.1 christos default:
5570 1.1 christos break;
5571 1.1 christos };
5572 1.1 christos break;
5573 1.43 thorpej /* netbsd32___futex */
5574 1.43 thorpej case 166:
5575 1.43 thorpej switch(ndx) {
5576 1.43 thorpej case 0:
5577 1.43 thorpej p = "netbsd32_intp";
5578 1.43 thorpej break;
5579 1.43 thorpej case 1:
5580 1.43 thorpej p = "int";
5581 1.43 thorpej break;
5582 1.43 thorpej case 2:
5583 1.43 thorpej p = "int";
5584 1.43 thorpej break;
5585 1.43 thorpej case 3:
5586 1.43 thorpej p = "const netbsd32_timespecp_t";
5587 1.43 thorpej break;
5588 1.43 thorpej case 4:
5589 1.43 thorpej p = "netbsd32_intp";
5590 1.43 thorpej break;
5591 1.43 thorpej case 5:
5592 1.43 thorpej p = "int";
5593 1.43 thorpej break;
5594 1.43 thorpej case 6:
5595 1.43 thorpej p = "int";
5596 1.43 thorpej break;
5597 1.43 thorpej default:
5598 1.43 thorpej break;
5599 1.43 thorpej };
5600 1.43 thorpej break;
5601 1.43 thorpej /* netbsd32___futex_set_robust_list */
5602 1.43 thorpej case 167:
5603 1.43 thorpej switch(ndx) {
5604 1.43 thorpej case 0:
5605 1.43 thorpej p = "netbsd32_voidp";
5606 1.43 thorpej break;
5607 1.43 thorpej case 1:
5608 1.43 thorpej p = "netbsd32_size_t";
5609 1.43 thorpej break;
5610 1.43 thorpej default:
5611 1.43 thorpej break;
5612 1.43 thorpej };
5613 1.43 thorpej break;
5614 1.43 thorpej /* netbsd32___futex_get_robust_list */
5615 1.43 thorpej case 168:
5616 1.43 thorpej switch(ndx) {
5617 1.43 thorpej case 0:
5618 1.43 thorpej p = "lwpid_t";
5619 1.43 thorpej break;
5620 1.43 thorpej case 1:
5621 1.43 thorpej p = "netbsd32_voidp";
5622 1.43 thorpej break;
5623 1.43 thorpej case 2:
5624 1.43 thorpej p = "netbsd32_size_tp";
5625 1.43 thorpej break;
5626 1.43 thorpej default:
5627 1.43 thorpej break;
5628 1.43 thorpej };
5629 1.43 thorpej break;
5630 1.1 christos /* netbsd32_semsys */
5631 1.1 christos case 169:
5632 1.1 christos switch(ndx) {
5633 1.1 christos case 0:
5634 1.1 christos p = "int";
5635 1.1 christos break;
5636 1.1 christos case 1:
5637 1.1 christos p = "int";
5638 1.1 christos break;
5639 1.1 christos case 2:
5640 1.1 christos p = "int";
5641 1.1 christos break;
5642 1.1 christos case 3:
5643 1.1 christos p = "int";
5644 1.1 christos break;
5645 1.1 christos case 4:
5646 1.1 christos p = "int";
5647 1.1 christos break;
5648 1.1 christos default:
5649 1.1 christos break;
5650 1.1 christos };
5651 1.1 christos break;
5652 1.1 christos /* netbsd32_msgsys */
5653 1.1 christos case 170:
5654 1.1 christos switch(ndx) {
5655 1.1 christos case 0:
5656 1.1 christos p = "int";
5657 1.1 christos break;
5658 1.1 christos case 1:
5659 1.1 christos p = "int";
5660 1.1 christos break;
5661 1.1 christos case 2:
5662 1.1 christos p = "int";
5663 1.1 christos break;
5664 1.1 christos case 3:
5665 1.1 christos p = "int";
5666 1.1 christos break;
5667 1.1 christos case 4:
5668 1.1 christos p = "int";
5669 1.1 christos break;
5670 1.1 christos case 5:
5671 1.1 christos p = "int";
5672 1.1 christos break;
5673 1.1 christos default:
5674 1.1 christos break;
5675 1.1 christos };
5676 1.1 christos break;
5677 1.1 christos /* netbsd32_shmsys */
5678 1.1 christos case 171:
5679 1.1 christos switch(ndx) {
5680 1.1 christos case 0:
5681 1.1 christos p = "int";
5682 1.1 christos break;
5683 1.1 christos case 1:
5684 1.1 christos p = "int";
5685 1.1 christos break;
5686 1.1 christos case 2:
5687 1.1 christos p = "int";
5688 1.1 christos break;
5689 1.1 christos case 3:
5690 1.1 christos p = "int";
5691 1.1 christos break;
5692 1.1 christos default:
5693 1.1 christos break;
5694 1.1 christos };
5695 1.1 christos break;
5696 1.1 christos /* netbsd32_pread */
5697 1.1 christos case 173:
5698 1.1 christos switch(ndx) {
5699 1.1 christos case 0:
5700 1.1 christos p = "int";
5701 1.1 christos break;
5702 1.1 christos case 1:
5703 1.1 christos p = "netbsd32_voidp";
5704 1.1 christos break;
5705 1.1 christos case 2:
5706 1.1 christos p = "netbsd32_size_t";
5707 1.1 christos break;
5708 1.1 christos case 3:
5709 1.1 christos p = "int";
5710 1.1 christos break;
5711 1.1 christos case 4:
5712 1.1 christos p = "netbsd32_off_t";
5713 1.1 christos break;
5714 1.1 christos default:
5715 1.1 christos break;
5716 1.1 christos };
5717 1.1 christos break;
5718 1.1 christos /* netbsd32_pwrite */
5719 1.1 christos case 174:
5720 1.1 christos switch(ndx) {
5721 1.1 christos case 0:
5722 1.1 christos p = "int";
5723 1.1 christos break;
5724 1.1 christos case 1:
5725 1.1 christos p = "netbsd32_voidp";
5726 1.1 christos break;
5727 1.1 christos case 2:
5728 1.1 christos p = "netbsd32_size_t";
5729 1.1 christos break;
5730 1.1 christos case 3:
5731 1.1 christos p = "int";
5732 1.1 christos break;
5733 1.1 christos case 4:
5734 1.1 christos p = "netbsd32_off_t";
5735 1.1 christos break;
5736 1.1 christos default:
5737 1.1 christos break;
5738 1.1 christos };
5739 1.1 christos break;
5740 1.1 christos /* netbsd32_ntp_gettime */
5741 1.1 christos case 175:
5742 1.1 christos switch(ndx) {
5743 1.1 christos case 0:
5744 1.1 christos p = "netbsd32_ntptimeval50p_t";
5745 1.1 christos break;
5746 1.1 christos default:
5747 1.1 christos break;
5748 1.1 christos };
5749 1.1 christos break;
5750 1.30 pgoyette #if defined(NTP) || !defined(_KERNEL_OPT)
5751 1.1 christos /* netbsd32_ntp_adjtime */
5752 1.1 christos case 176:
5753 1.1 christos switch(ndx) {
5754 1.1 christos case 0:
5755 1.1 christos p = "netbsd32_timexp_t";
5756 1.1 christos break;
5757 1.1 christos default:
5758 1.1 christos break;
5759 1.1 christos };
5760 1.1 christos break;
5761 1.1 christos #else
5762 1.1 christos #endif
5763 1.1 christos /* netbsd32_setgid */
5764 1.1 christos case 181:
5765 1.1 christos switch(ndx) {
5766 1.1 christos case 0:
5767 1.1 christos p = "gid_t";
5768 1.1 christos break;
5769 1.1 christos default:
5770 1.1 christos break;
5771 1.1 christos };
5772 1.1 christos break;
5773 1.1 christos /* netbsd32_setegid */
5774 1.1 christos case 182:
5775 1.1 christos switch(ndx) {
5776 1.1 christos case 0:
5777 1.1 christos p = "gid_t";
5778 1.1 christos break;
5779 1.1 christos default:
5780 1.1 christos break;
5781 1.1 christos };
5782 1.1 christos break;
5783 1.1 christos /* netbsd32_seteuid */
5784 1.1 christos case 183:
5785 1.1 christos switch(ndx) {
5786 1.1 christos case 0:
5787 1.1 christos p = "uid_t";
5788 1.1 christos break;
5789 1.1 christos default:
5790 1.1 christos break;
5791 1.1 christos };
5792 1.1 christos break;
5793 1.1 christos /* netbsd32_stat12 */
5794 1.1 christos case 188:
5795 1.1 christos switch(ndx) {
5796 1.1 christos case 0:
5797 1.1 christos p = "netbsd32_charp";
5798 1.1 christos break;
5799 1.1 christos case 1:
5800 1.1 christos p = "netbsd32_stat12p_t";
5801 1.1 christos break;
5802 1.1 christos default:
5803 1.1 christos break;
5804 1.1 christos };
5805 1.1 christos break;
5806 1.1 christos /* netbsd32_fstat12 */
5807 1.1 christos case 189:
5808 1.1 christos switch(ndx) {
5809 1.1 christos case 0:
5810 1.1 christos p = "int";
5811 1.1 christos break;
5812 1.1 christos case 1:
5813 1.1 christos p = "netbsd32_stat12p_t";
5814 1.1 christos break;
5815 1.1 christos default:
5816 1.1 christos break;
5817 1.1 christos };
5818 1.1 christos break;
5819 1.1 christos /* netbsd32_lstat12 */
5820 1.1 christos case 190:
5821 1.1 christos switch(ndx) {
5822 1.1 christos case 0:
5823 1.1 christos p = "netbsd32_charp";
5824 1.1 christos break;
5825 1.1 christos case 1:
5826 1.1 christos p = "netbsd32_stat12p_t";
5827 1.1 christos break;
5828 1.1 christos default:
5829 1.1 christos break;
5830 1.1 christos };
5831 1.1 christos break;
5832 1.1 christos /* netbsd32_pathconf */
5833 1.1 christos case 191:
5834 1.1 christos switch(ndx) {
5835 1.1 christos case 0:
5836 1.1 christos p = "netbsd32_charp";
5837 1.1 christos break;
5838 1.1 christos case 1:
5839 1.1 christos p = "int";
5840 1.1 christos break;
5841 1.1 christos default:
5842 1.1 christos break;
5843 1.1 christos };
5844 1.1 christos break;
5845 1.1 christos /* netbsd32_fpathconf */
5846 1.1 christos case 192:
5847 1.1 christos switch(ndx) {
5848 1.1 christos case 0:
5849 1.1 christos p = "int";
5850 1.1 christos break;
5851 1.1 christos case 1:
5852 1.1 christos p = "int";
5853 1.1 christos break;
5854 1.1 christos default:
5855 1.1 christos break;
5856 1.1 christos };
5857 1.1 christos break;
5858 1.26 rjs /* netbsd32_getsockopt2 */
5859 1.26 rjs case 193:
5860 1.26 rjs switch(ndx) {
5861 1.26 rjs case 0:
5862 1.26 rjs p = "int";
5863 1.26 rjs break;
5864 1.26 rjs case 1:
5865 1.26 rjs p = "int";
5866 1.26 rjs break;
5867 1.26 rjs case 2:
5868 1.26 rjs p = "int";
5869 1.26 rjs break;
5870 1.26 rjs case 3:
5871 1.26 rjs p = "netbsd32_voidp";
5872 1.26 rjs break;
5873 1.26 rjs case 4:
5874 1.26 rjs p = "netbsd32_intp";
5875 1.26 rjs break;
5876 1.26 rjs default:
5877 1.26 rjs break;
5878 1.26 rjs };
5879 1.26 rjs break;
5880 1.1 christos /* netbsd32_getrlimit */
5881 1.1 christos case 194:
5882 1.1 christos switch(ndx) {
5883 1.1 christos case 0:
5884 1.1 christos p = "int";
5885 1.1 christos break;
5886 1.1 christos case 1:
5887 1.1 christos p = "netbsd32_rlimitp_t";
5888 1.1 christos break;
5889 1.1 christos default:
5890 1.1 christos break;
5891 1.1 christos };
5892 1.1 christos break;
5893 1.1 christos /* netbsd32_setrlimit */
5894 1.1 christos case 195:
5895 1.1 christos switch(ndx) {
5896 1.1 christos case 0:
5897 1.1 christos p = "int";
5898 1.1 christos break;
5899 1.1 christos case 1:
5900 1.1 christos p = "netbsd32_rlimitp_t";
5901 1.1 christos break;
5902 1.1 christos default:
5903 1.1 christos break;
5904 1.1 christos };
5905 1.1 christos break;
5906 1.1 christos /* netbsd32_getdirentries */
5907 1.1 christos case 196:
5908 1.1 christos switch(ndx) {
5909 1.1 christos case 0:
5910 1.1 christos p = "int";
5911 1.1 christos break;
5912 1.1 christos case 1:
5913 1.1 christos p = "netbsd32_charp";
5914 1.1 christos break;
5915 1.1 christos case 2:
5916 1.1 christos p = "u_int";
5917 1.1 christos break;
5918 1.1 christos case 3:
5919 1.1 christos p = "netbsd32_longp";
5920 1.1 christos break;
5921 1.1 christos default:
5922 1.1 christos break;
5923 1.1 christos };
5924 1.1 christos break;
5925 1.1 christos /* netbsd32_mmap */
5926 1.1 christos case 197:
5927 1.1 christos switch(ndx) {
5928 1.1 christos case 0:
5929 1.1 christos p = "netbsd32_voidp";
5930 1.1 christos break;
5931 1.1 christos case 1:
5932 1.1 christos p = "netbsd32_size_t";
5933 1.1 christos break;
5934 1.1 christos case 2:
5935 1.1 christos p = "int";
5936 1.1 christos break;
5937 1.1 christos case 3:
5938 1.1 christos p = "int";
5939 1.1 christos break;
5940 1.1 christos case 4:
5941 1.1 christos p = "int";
5942 1.1 christos break;
5943 1.1 christos case 5:
5944 1.1 christos p = "netbsd32_long";
5945 1.1 christos break;
5946 1.1 christos case 6:
5947 1.1 christos p = "netbsd32_off_t";
5948 1.1 christos break;
5949 1.1 christos default:
5950 1.1 christos break;
5951 1.1 christos };
5952 1.1 christos break;
5953 1.1 christos /* netbsd32____syscall */
5954 1.1 christos case 198:
5955 1.1 christos switch(ndx) {
5956 1.1 christos case 0:
5957 1.1 christos p = "quad_t";
5958 1.1 christos break;
5959 1.1 christos case 1:
5960 1.1 christos p = "register32_t";
5961 1.1 christos break;
5962 1.1 christos default:
5963 1.1 christos break;
5964 1.1 christos };
5965 1.1 christos break;
5966 1.1 christos /* netbsd32_lseek */
5967 1.1 christos case 199:
5968 1.1 christos switch(ndx) {
5969 1.1 christos case 0:
5970 1.1 christos p = "int";
5971 1.1 christos break;
5972 1.1 christos case 1:
5973 1.1 christos p = "int";
5974 1.1 christos break;
5975 1.1 christos case 2:
5976 1.1 christos p = "netbsd32_off_t";
5977 1.1 christos break;
5978 1.1 christos case 3:
5979 1.1 christos p = "int";
5980 1.1 christos break;
5981 1.1 christos default:
5982 1.1 christos break;
5983 1.1 christos };
5984 1.1 christos break;
5985 1.1 christos /* netbsd32_truncate */
5986 1.1 christos case 200:
5987 1.1 christos switch(ndx) {
5988 1.1 christos case 0:
5989 1.1 christos p = "netbsd32_charp";
5990 1.1 christos break;
5991 1.1 christos case 1:
5992 1.1 christos p = "int";
5993 1.1 christos break;
5994 1.1 christos case 2:
5995 1.1 christos p = "netbsd32_off_t";
5996 1.1 christos break;
5997 1.1 christos default:
5998 1.1 christos break;
5999 1.1 christos };
6000 1.1 christos break;
6001 1.1 christos /* netbsd32_ftruncate */
6002 1.1 christos case 201:
6003 1.1 christos switch(ndx) {
6004 1.1 christos case 0:
6005 1.1 christos p = "int";
6006 1.1 christos break;
6007 1.1 christos case 1:
6008 1.1 christos p = "int";
6009 1.1 christos break;
6010 1.1 christos case 2:
6011 1.1 christos p = "netbsd32_off_t";
6012 1.1 christos break;
6013 1.1 christos default:
6014 1.1 christos break;
6015 1.1 christos };
6016 1.1 christos break;
6017 1.1 christos /* netbsd32___sysctl */
6018 1.1 christos case 202:
6019 1.1 christos switch(ndx) {
6020 1.1 christos case 0:
6021 1.1 christos p = "netbsd32_intp";
6022 1.1 christos break;
6023 1.1 christos case 1:
6024 1.1 christos p = "u_int";
6025 1.1 christos break;
6026 1.1 christos case 2:
6027 1.1 christos p = "netbsd32_voidp";
6028 1.1 christos break;
6029 1.1 christos case 3:
6030 1.1 christos p = "netbsd32_size_tp";
6031 1.1 christos break;
6032 1.1 christos case 4:
6033 1.1 christos p = "netbsd32_voidp";
6034 1.1 christos break;
6035 1.1 christos case 5:
6036 1.1 christos p = "netbsd32_size_t";
6037 1.1 christos break;
6038 1.1 christos default:
6039 1.1 christos break;
6040 1.1 christos };
6041 1.1 christos break;
6042 1.1 christos /* netbsd32_mlock */
6043 1.1 christos case 203:
6044 1.1 christos switch(ndx) {
6045 1.1 christos case 0:
6046 1.1 christos p = "netbsd32_voidp";
6047 1.1 christos break;
6048 1.1 christos case 1:
6049 1.1 christos p = "netbsd32_size_t";
6050 1.1 christos break;
6051 1.1 christos default:
6052 1.1 christos break;
6053 1.1 christos };
6054 1.1 christos break;
6055 1.1 christos /* netbsd32_munlock */
6056 1.1 christos case 204:
6057 1.1 christos switch(ndx) {
6058 1.1 christos case 0:
6059 1.1 christos p = "netbsd32_voidp";
6060 1.1 christos break;
6061 1.1 christos case 1:
6062 1.1 christos p = "netbsd32_size_t";
6063 1.1 christos break;
6064 1.1 christos default:
6065 1.1 christos break;
6066 1.1 christos };
6067 1.1 christos break;
6068 1.1 christos /* netbsd32_undelete */
6069 1.1 christos case 205:
6070 1.1 christos switch(ndx) {
6071 1.1 christos case 0:
6072 1.1 christos p = "netbsd32_charp";
6073 1.1 christos break;
6074 1.1 christos default:
6075 1.1 christos break;
6076 1.1 christos };
6077 1.1 christos break;
6078 1.1 christos /* netbsd32_futimes */
6079 1.1 christos case 206:
6080 1.1 christos switch(ndx) {
6081 1.1 christos case 0:
6082 1.1 christos p = "int";
6083 1.1 christos break;
6084 1.1 christos case 1:
6085 1.1 christos p = "netbsd32_timeval50p_t";
6086 1.1 christos break;
6087 1.1 christos default:
6088 1.1 christos break;
6089 1.1 christos };
6090 1.1 christos break;
6091 1.1 christos /* netbsd32_getpgid */
6092 1.1 christos case 207:
6093 1.1 christos switch(ndx) {
6094 1.1 christos case 0:
6095 1.1 christos p = "pid_t";
6096 1.1 christos break;
6097 1.1 christos default:
6098 1.1 christos break;
6099 1.1 christos };
6100 1.1 christos break;
6101 1.1 christos /* netbsd32_reboot */
6102 1.1 christos case 208:
6103 1.1 christos switch(ndx) {
6104 1.1 christos case 0:
6105 1.1 christos p = "int";
6106 1.1 christos break;
6107 1.1 christos case 1:
6108 1.1 christos p = "netbsd32_charp";
6109 1.1 christos break;
6110 1.1 christos default:
6111 1.1 christos break;
6112 1.1 christos };
6113 1.1 christos break;
6114 1.1 christos /* netbsd32_poll */
6115 1.1 christos case 209:
6116 1.1 christos switch(ndx) {
6117 1.1 christos case 0:
6118 1.1 christos p = "netbsd32_pollfdp_t";
6119 1.1 christos break;
6120 1.1 christos case 1:
6121 1.1 christos p = "u_int";
6122 1.1 christos break;
6123 1.1 christos case 2:
6124 1.1 christos p = "int";
6125 1.1 christos break;
6126 1.1 christos default:
6127 1.1 christos break;
6128 1.1 christos };
6129 1.1 christos break;
6130 1.1 christos /* netbsd32___semctl */
6131 1.1 christos case 220:
6132 1.1 christos switch(ndx) {
6133 1.1 christos case 0:
6134 1.1 christos p = "int";
6135 1.1 christos break;
6136 1.1 christos case 1:
6137 1.1 christos p = "int";
6138 1.1 christos break;
6139 1.1 christos case 2:
6140 1.1 christos p = "int";
6141 1.1 christos break;
6142 1.1 christos case 3:
6143 1.1 christos p = "netbsd32_semunu_t";
6144 1.1 christos break;
6145 1.1 christos default:
6146 1.1 christos break;
6147 1.1 christos };
6148 1.1 christos break;
6149 1.1 christos /* netbsd32_semget */
6150 1.1 christos case 221:
6151 1.1 christos switch(ndx) {
6152 1.1 christos case 0:
6153 1.1 christos p = "netbsd32_key_t";
6154 1.1 christos break;
6155 1.1 christos case 1:
6156 1.1 christos p = "int";
6157 1.1 christos break;
6158 1.1 christos case 2:
6159 1.1 christos p = "int";
6160 1.1 christos break;
6161 1.1 christos default:
6162 1.1 christos break;
6163 1.1 christos };
6164 1.1 christos break;
6165 1.1 christos /* netbsd32_semop */
6166 1.1 christos case 222:
6167 1.1 christos switch(ndx) {
6168 1.1 christos case 0:
6169 1.1 christos p = "int";
6170 1.1 christos break;
6171 1.1 christos case 1:
6172 1.1 christos p = "netbsd32_sembufp_t";
6173 1.1 christos break;
6174 1.1 christos case 2:
6175 1.1 christos p = "netbsd32_size_t";
6176 1.1 christos break;
6177 1.1 christos default:
6178 1.1 christos break;
6179 1.1 christos };
6180 1.1 christos break;
6181 1.1 christos /* netbsd32_semconfig */
6182 1.1 christos case 223:
6183 1.1 christos switch(ndx) {
6184 1.1 christos case 0:
6185 1.1 christos p = "int";
6186 1.1 christos break;
6187 1.1 christos default:
6188 1.1 christos break;
6189 1.1 christos };
6190 1.1 christos break;
6191 1.1 christos /* netbsd32_msgctl */
6192 1.1 christos case 224:
6193 1.1 christos switch(ndx) {
6194 1.1 christos case 0:
6195 1.1 christos p = "int";
6196 1.1 christos break;
6197 1.1 christos case 1:
6198 1.1 christos p = "int";
6199 1.1 christos break;
6200 1.1 christos case 2:
6201 1.1 christos p = "netbsd32_msqid_ds14p_t";
6202 1.1 christos break;
6203 1.1 christos default:
6204 1.1 christos break;
6205 1.1 christos };
6206 1.1 christos break;
6207 1.1 christos /* netbsd32_msgget */
6208 1.1 christos case 225:
6209 1.1 christos switch(ndx) {
6210 1.1 christos case 0:
6211 1.1 christos p = "netbsd32_key_t";
6212 1.1 christos break;
6213 1.1 christos case 1:
6214 1.1 christos p = "int";
6215 1.1 christos break;
6216 1.1 christos default:
6217 1.1 christos break;
6218 1.1 christos };
6219 1.1 christos break;
6220 1.1 christos /* netbsd32_msgsnd */
6221 1.1 christos case 226:
6222 1.1 christos switch(ndx) {
6223 1.1 christos case 0:
6224 1.1 christos p = "int";
6225 1.1 christos break;
6226 1.1 christos case 1:
6227 1.1 christos p = "netbsd32_voidp";
6228 1.1 christos break;
6229 1.1 christos case 2:
6230 1.1 christos p = "netbsd32_size_t";
6231 1.1 christos break;
6232 1.1 christos case 3:
6233 1.1 christos p = "int";
6234 1.1 christos break;
6235 1.1 christos default:
6236 1.1 christos break;
6237 1.1 christos };
6238 1.1 christos break;
6239 1.1 christos /* netbsd32_msgrcv */
6240 1.1 christos case 227:
6241 1.1 christos switch(ndx) {
6242 1.1 christos case 0:
6243 1.1 christos p = "int";
6244 1.1 christos break;
6245 1.1 christos case 1:
6246 1.1 christos p = "netbsd32_voidp";
6247 1.1 christos break;
6248 1.1 christos case 2:
6249 1.1 christos p = "netbsd32_size_t";
6250 1.1 christos break;
6251 1.1 christos case 3:
6252 1.1 christos p = "netbsd32_long";
6253 1.1 christos break;
6254 1.1 christos case 4:
6255 1.1 christos p = "int";
6256 1.1 christos break;
6257 1.1 christos default:
6258 1.1 christos break;
6259 1.1 christos };
6260 1.1 christos break;
6261 1.1 christos /* netbsd32_shmat */
6262 1.1 christos case 228:
6263 1.1 christos switch(ndx) {
6264 1.1 christos case 0:
6265 1.1 christos p = "int";
6266 1.1 christos break;
6267 1.1 christos case 1:
6268 1.1 christos p = "netbsd32_voidp";
6269 1.1 christos break;
6270 1.1 christos case 2:
6271 1.1 christos p = "int";
6272 1.1 christos break;
6273 1.1 christos default:
6274 1.1 christos break;
6275 1.1 christos };
6276 1.1 christos break;
6277 1.1 christos /* netbsd32_shmctl */
6278 1.1 christos case 229:
6279 1.1 christos switch(ndx) {
6280 1.1 christos case 0:
6281 1.1 christos p = "int";
6282 1.1 christos break;
6283 1.1 christos case 1:
6284 1.1 christos p = "int";
6285 1.1 christos break;
6286 1.1 christos case 2:
6287 1.1 christos p = "netbsd32_shmid_dsp_t";
6288 1.1 christos break;
6289 1.1 christos default:
6290 1.1 christos break;
6291 1.1 christos };
6292 1.1 christos break;
6293 1.1 christos /* netbsd32_shmdt */
6294 1.1 christos case 230:
6295 1.1 christos switch(ndx) {
6296 1.1 christos case 0:
6297 1.1 christos p = "netbsd32_voidp";
6298 1.1 christos break;
6299 1.1 christos default:
6300 1.1 christos break;
6301 1.1 christos };
6302 1.1 christos break;
6303 1.1 christos /* netbsd32_shmget */
6304 1.1 christos case 231:
6305 1.1 christos switch(ndx) {
6306 1.1 christos case 0:
6307 1.1 christos p = "netbsd32_key_t";
6308 1.1 christos break;
6309 1.1 christos case 1:
6310 1.1 christos p = "netbsd32_size_t";
6311 1.1 christos break;
6312 1.1 christos case 2:
6313 1.1 christos p = "int";
6314 1.1 christos break;
6315 1.1 christos default:
6316 1.1 christos break;
6317 1.1 christos };
6318 1.1 christos break;
6319 1.1 christos /* netbsd32_clock_gettime */
6320 1.1 christos case 232:
6321 1.1 christos switch(ndx) {
6322 1.1 christos case 0:
6323 1.1 christos p = "netbsd32_clockid_t";
6324 1.1 christos break;
6325 1.1 christos case 1:
6326 1.1 christos p = "netbsd32_timespec50p_t";
6327 1.1 christos break;
6328 1.1 christos default:
6329 1.1 christos break;
6330 1.1 christos };
6331 1.1 christos break;
6332 1.1 christos /* netbsd32_clock_settime */
6333 1.1 christos case 233:
6334 1.1 christos switch(ndx) {
6335 1.1 christos case 0:
6336 1.1 christos p = "netbsd32_clockid_t";
6337 1.1 christos break;
6338 1.1 christos case 1:
6339 1.1 christos p = "netbsd32_timespec50p_t";
6340 1.1 christos break;
6341 1.1 christos default:
6342 1.1 christos break;
6343 1.1 christos };
6344 1.1 christos break;
6345 1.1 christos /* netbsd32_clock_getres */
6346 1.1 christos case 234:
6347 1.1 christos switch(ndx) {
6348 1.1 christos case 0:
6349 1.1 christos p = "netbsd32_clockid_t";
6350 1.1 christos break;
6351 1.1 christos case 1:
6352 1.1 christos p = "netbsd32_timespec50p_t";
6353 1.1 christos break;
6354 1.1 christos default:
6355 1.1 christos break;
6356 1.1 christos };
6357 1.1 christos break;
6358 1.1 christos /* netbsd32_timer_create */
6359 1.1 christos case 235:
6360 1.1 christos switch(ndx) {
6361 1.1 christos case 0:
6362 1.1 christos p = "netbsd32_clockid_t";
6363 1.1 christos break;
6364 1.1 christos case 1:
6365 1.1 christos p = "netbsd32_sigeventp_t";
6366 1.1 christos break;
6367 1.1 christos case 2:
6368 1.1 christos p = "netbsd32_timerp_t";
6369 1.1 christos break;
6370 1.1 christos default:
6371 1.1 christos break;
6372 1.1 christos };
6373 1.1 christos break;
6374 1.1 christos /* netbsd32_timer_delete */
6375 1.1 christos case 236:
6376 1.1 christos switch(ndx) {
6377 1.1 christos case 0:
6378 1.1 christos p = "netbsd32_timer_t";
6379 1.1 christos break;
6380 1.1 christos default:
6381 1.1 christos break;
6382 1.1 christos };
6383 1.1 christos break;
6384 1.1 christos /* netbsd32_timer_settime */
6385 1.1 christos case 237:
6386 1.1 christos switch(ndx) {
6387 1.1 christos case 0:
6388 1.1 christos p = "netbsd32_timer_t";
6389 1.1 christos break;
6390 1.1 christos case 1:
6391 1.1 christos p = "int";
6392 1.1 christos break;
6393 1.1 christos case 2:
6394 1.1 christos p = "netbsd32_itimerspec50p_t";
6395 1.1 christos break;
6396 1.1 christos case 3:
6397 1.1 christos p = "netbsd32_itimerspec50p_t";
6398 1.1 christos break;
6399 1.1 christos default:
6400 1.1 christos break;
6401 1.1 christos };
6402 1.1 christos break;
6403 1.1 christos /* netbsd32_timer_gettime */
6404 1.1 christos case 238:
6405 1.1 christos switch(ndx) {
6406 1.1 christos case 0:
6407 1.1 christos p = "netbsd32_timer_t";
6408 1.1 christos break;
6409 1.1 christos case 1:
6410 1.1 christos p = "netbsd32_itimerspec50p_t";
6411 1.1 christos break;
6412 1.1 christos default:
6413 1.1 christos break;
6414 1.1 christos };
6415 1.1 christos break;
6416 1.1 christos /* netbsd32_timer_getoverrun */
6417 1.1 christos case 239:
6418 1.1 christos switch(ndx) {
6419 1.1 christos case 0:
6420 1.1 christos p = "netbsd32_timer_t";
6421 1.1 christos break;
6422 1.1 christos default:
6423 1.1 christos break;
6424 1.1 christos };
6425 1.1 christos break;
6426 1.1 christos /* netbsd32_nanosleep */
6427 1.1 christos case 240:
6428 1.1 christos switch(ndx) {
6429 1.1 christos case 0:
6430 1.1 christos p = "netbsd32_timespec50p_t";
6431 1.1 christos break;
6432 1.1 christos case 1:
6433 1.1 christos p = "netbsd32_timespec50p_t";
6434 1.1 christos break;
6435 1.1 christos default:
6436 1.1 christos break;
6437 1.1 christos };
6438 1.1 christos break;
6439 1.1 christos /* netbsd32_fdatasync */
6440 1.1 christos case 241:
6441 1.1 christos switch(ndx) {
6442 1.1 christos case 0:
6443 1.1 christos p = "int";
6444 1.1 christos break;
6445 1.1 christos default:
6446 1.1 christos break;
6447 1.1 christos };
6448 1.1 christos break;
6449 1.1 christos /* netbsd32_mlockall */
6450 1.1 christos case 242:
6451 1.1 christos switch(ndx) {
6452 1.1 christos case 0:
6453 1.1 christos p = "int";
6454 1.1 christos break;
6455 1.1 christos default:
6456 1.1 christos break;
6457 1.1 christos };
6458 1.1 christos break;
6459 1.1 christos /* sys_munlockall */
6460 1.1 christos case 243:
6461 1.1 christos break;
6462 1.1 christos /* netbsd32___sigtimedwait */
6463 1.1 christos case 244:
6464 1.1 christos switch(ndx) {
6465 1.1 christos case 0:
6466 1.1 christos p = "netbsd32_sigsetp_t";
6467 1.1 christos break;
6468 1.1 christos case 1:
6469 1.1 christos p = "netbsd32_siginfop_t";
6470 1.1 christos break;
6471 1.1 christos case 2:
6472 1.1 christos p = "netbsd32_timespec50p_t";
6473 1.1 christos break;
6474 1.1 christos default:
6475 1.1 christos break;
6476 1.1 christos };
6477 1.1 christos break;
6478 1.3 martin /* netbsd32_sigqueueinfo */
6479 1.3 martin case 245:
6480 1.3 martin switch(ndx) {
6481 1.3 martin case 0:
6482 1.3 martin p = "pid_t";
6483 1.3 martin break;
6484 1.3 martin case 1:
6485 1.3 martin p = "const netbsd32_siginfop_t";
6486 1.3 martin break;
6487 1.3 martin default:
6488 1.3 martin break;
6489 1.3 martin };
6490 1.3 martin break;
6491 1.3 martin /* netbsd32_modctl */
6492 1.3 martin case 246:
6493 1.3 martin switch(ndx) {
6494 1.3 martin case 0:
6495 1.3 martin p = "int";
6496 1.3 martin break;
6497 1.3 martin case 1:
6498 1.3 martin p = "netbsd32_voidp";
6499 1.3 martin break;
6500 1.3 martin default:
6501 1.3 martin break;
6502 1.3 martin };
6503 1.3 martin break;
6504 1.1 christos /* netbsd32__ksem_init */
6505 1.1 christos case 247:
6506 1.1 christos switch(ndx) {
6507 1.1 christos case 0:
6508 1.1 christos p = "unsigned int";
6509 1.1 christos break;
6510 1.1 christos case 1:
6511 1.1 christos p = "netbsd32_semidp_t";
6512 1.1 christos break;
6513 1.1 christos default:
6514 1.1 christos break;
6515 1.1 christos };
6516 1.1 christos break;
6517 1.1 christos /* netbsd32__ksem_open */
6518 1.1 christos case 248:
6519 1.1 christos switch(ndx) {
6520 1.1 christos case 0:
6521 1.1 christos p = "netbsd32_charp";
6522 1.1 christos break;
6523 1.1 christos case 1:
6524 1.1 christos p = "int";
6525 1.1 christos break;
6526 1.1 christos case 2:
6527 1.1 christos p = "mode_t";
6528 1.1 christos break;
6529 1.1 christos case 3:
6530 1.1 christos p = "unsigned int";
6531 1.1 christos break;
6532 1.1 christos case 4:
6533 1.1 christos p = "netbsd32_semidp_t";
6534 1.1 christos break;
6535 1.1 christos default:
6536 1.1 christos break;
6537 1.1 christos };
6538 1.1 christos break;
6539 1.1 christos /* netbsd32__ksem_unlink */
6540 1.1 christos case 249:
6541 1.1 christos switch(ndx) {
6542 1.1 christos case 0:
6543 1.1 christos p = "netbsd32_charp";
6544 1.1 christos break;
6545 1.1 christos default:
6546 1.1 christos break;
6547 1.1 christos };
6548 1.1 christos break;
6549 1.1 christos /* netbsd32__ksem_close */
6550 1.1 christos case 250:
6551 1.1 christos switch(ndx) {
6552 1.1 christos case 0:
6553 1.1 christos p = "netbsd32_intptr_t";
6554 1.1 christos break;
6555 1.1 christos default:
6556 1.1 christos break;
6557 1.1 christos };
6558 1.1 christos break;
6559 1.1 christos /* netbsd32__ksem_post */
6560 1.1 christos case 251:
6561 1.1 christos switch(ndx) {
6562 1.1 christos case 0:
6563 1.1 christos p = "netbsd32_intptr_t";
6564 1.1 christos break;
6565 1.1 christos default:
6566 1.1 christos break;
6567 1.1 christos };
6568 1.1 christos break;
6569 1.1 christos /* netbsd32__ksem_wait */
6570 1.1 christos case 252:
6571 1.1 christos switch(ndx) {
6572 1.1 christos case 0:
6573 1.1 christos p = "netbsd32_intptr_t";
6574 1.1 christos break;
6575 1.1 christos default:
6576 1.1 christos break;
6577 1.1 christos };
6578 1.1 christos break;
6579 1.1 christos /* netbsd32__ksem_trywait */
6580 1.1 christos case 253:
6581 1.1 christos switch(ndx) {
6582 1.1 christos case 0:
6583 1.1 christos p = "netbsd32_intptr_t";
6584 1.1 christos break;
6585 1.1 christos default:
6586 1.1 christos break;
6587 1.1 christos };
6588 1.1 christos break;
6589 1.1 christos /* netbsd32__ksem_getvalue */
6590 1.1 christos case 254:
6591 1.1 christos switch(ndx) {
6592 1.1 christos case 0:
6593 1.1 christos p = "netbsd32_intptr_t";
6594 1.1 christos break;
6595 1.1 christos case 1:
6596 1.1 christos p = "netbsd32_intp";
6597 1.1 christos break;
6598 1.1 christos default:
6599 1.1 christos break;
6600 1.1 christos };
6601 1.1 christos break;
6602 1.1 christos /* netbsd32__ksem_destroy */
6603 1.1 christos case 255:
6604 1.1 christos switch(ndx) {
6605 1.1 christos case 0:
6606 1.1 christos p = "netbsd32_intptr_t";
6607 1.1 christos break;
6608 1.1 christos default:
6609 1.1 christos break;
6610 1.1 christos };
6611 1.1 christos break;
6612 1.1 christos /* netbsd32__ksem_timedwait */
6613 1.1 christos case 256:
6614 1.1 christos switch(ndx) {
6615 1.1 christos case 0:
6616 1.1 christos p = "intptr_t";
6617 1.1 christos break;
6618 1.1 christos case 1:
6619 1.1 christos p = "const netbsd32_timespecp_t";
6620 1.1 christos break;
6621 1.1 christos default:
6622 1.1 christos break;
6623 1.1 christos };
6624 1.1 christos break;
6625 1.3 martin /* netbsd32_mq_open */
6626 1.3 martin case 257:
6627 1.3 martin switch(ndx) {
6628 1.3 martin case 0:
6629 1.3 martin p = "const netbsd32_charp";
6630 1.3 martin break;
6631 1.3 martin case 1:
6632 1.3 martin p = "int";
6633 1.3 martin break;
6634 1.3 martin case 2:
6635 1.3 martin p = "mode_t";
6636 1.3 martin break;
6637 1.3 martin case 3:
6638 1.3 martin p = "netbsd32_mq_attrp_t";
6639 1.3 martin break;
6640 1.3 martin default:
6641 1.3 martin break;
6642 1.3 martin };
6643 1.3 martin break;
6644 1.3 martin /* netbsd32_mq_close */
6645 1.3 martin case 258:
6646 1.3 martin switch(ndx) {
6647 1.3 martin case 0:
6648 1.3 martin p = "mqd_t";
6649 1.3 martin break;
6650 1.3 martin default:
6651 1.3 martin break;
6652 1.3 martin };
6653 1.3 martin break;
6654 1.3 martin /* netbsd32_mq_unlink */
6655 1.3 martin case 259:
6656 1.3 martin switch(ndx) {
6657 1.3 martin case 0:
6658 1.3 martin p = "const netbsd32_charp";
6659 1.3 martin break;
6660 1.3 martin default:
6661 1.3 martin break;
6662 1.3 martin };
6663 1.3 martin break;
6664 1.3 martin /* netbsd32_mq_getattr */
6665 1.3 martin case 260:
6666 1.3 martin switch(ndx) {
6667 1.3 martin case 0:
6668 1.3 martin p = "mqd_t";
6669 1.3 martin break;
6670 1.3 martin case 1:
6671 1.3 martin p = "netbsd32_mq_attrp_t";
6672 1.3 martin break;
6673 1.3 martin default:
6674 1.3 martin break;
6675 1.3 martin };
6676 1.3 martin break;
6677 1.3 martin /* netbsd32_mq_setattr */
6678 1.3 martin case 261:
6679 1.3 martin switch(ndx) {
6680 1.3 martin case 0:
6681 1.3 martin p = "mqd_t";
6682 1.3 martin break;
6683 1.3 martin case 1:
6684 1.3 martin p = "const netbsd32_mq_attrp_t";
6685 1.3 martin break;
6686 1.3 martin case 2:
6687 1.3 martin p = "netbsd32_mq_attrp_t";
6688 1.3 martin break;
6689 1.3 martin default:
6690 1.3 martin break;
6691 1.3 martin };
6692 1.3 martin break;
6693 1.3 martin /* netbsd32_mq_notify */
6694 1.3 martin case 262:
6695 1.3 martin switch(ndx) {
6696 1.3 martin case 0:
6697 1.3 martin p = "mqd_t";
6698 1.3 martin break;
6699 1.3 martin case 1:
6700 1.3 martin p = "const netbsd32_sigeventp_t";
6701 1.3 martin break;
6702 1.3 martin default:
6703 1.3 martin break;
6704 1.3 martin };
6705 1.3 martin break;
6706 1.3 martin /* netbsd32_mq_send */
6707 1.3 martin case 263:
6708 1.3 martin switch(ndx) {
6709 1.3 martin case 0:
6710 1.3 martin p = "mqd_t";
6711 1.3 martin break;
6712 1.3 martin case 1:
6713 1.3 martin p = "const netbsd32_charp";
6714 1.3 martin break;
6715 1.3 martin case 2:
6716 1.3 martin p = "netbsd32_size_t";
6717 1.3 martin break;
6718 1.3 martin case 3:
6719 1.3 martin p = "unsigned";
6720 1.3 martin break;
6721 1.3 martin default:
6722 1.3 martin break;
6723 1.3 martin };
6724 1.3 martin break;
6725 1.3 martin /* netbsd32_mq_receive */
6726 1.3 martin case 264:
6727 1.3 martin switch(ndx) {
6728 1.3 martin case 0:
6729 1.3 martin p = "mqd_t";
6730 1.3 martin break;
6731 1.3 martin case 1:
6732 1.3 martin p = "netbsd32_charp";
6733 1.3 martin break;
6734 1.3 martin case 2:
6735 1.3 martin p = "netbsd32_size_t";
6736 1.3 martin break;
6737 1.3 martin case 3:
6738 1.3 martin p = "netbsd32_uintp";
6739 1.3 martin break;
6740 1.3 martin default:
6741 1.3 martin break;
6742 1.3 martin };
6743 1.3 martin break;
6744 1.3 martin /* netbsd32_mq_timedsend */
6745 1.3 martin case 265:
6746 1.3 martin switch(ndx) {
6747 1.3 martin case 0:
6748 1.3 martin p = "mqd_t";
6749 1.3 martin break;
6750 1.3 martin case 1:
6751 1.3 martin p = "const netbsd32_charp";
6752 1.3 martin break;
6753 1.3 martin case 2:
6754 1.3 martin p = "netbsd32_size_t";
6755 1.3 martin break;
6756 1.3 martin case 3:
6757 1.3 martin p = "unsigned";
6758 1.3 martin break;
6759 1.3 martin case 4:
6760 1.3 martin p = "const netbsd32_timespec50p_t";
6761 1.3 martin break;
6762 1.3 martin default:
6763 1.3 martin break;
6764 1.3 martin };
6765 1.3 martin break;
6766 1.3 martin /* netbsd32_mq_timedreceive */
6767 1.3 martin case 266:
6768 1.3 martin switch(ndx) {
6769 1.3 martin case 0:
6770 1.3 martin p = "mqd_t";
6771 1.3 martin break;
6772 1.3 martin case 1:
6773 1.3 martin p = "netbsd32_charp";
6774 1.3 martin break;
6775 1.3 martin case 2:
6776 1.3 martin p = "netbsd32_size_t";
6777 1.3 martin break;
6778 1.3 martin case 3:
6779 1.3 martin p = "netbsd32_uintp";
6780 1.3 martin break;
6781 1.3 martin case 4:
6782 1.3 martin p = "const netbsd32_timespec50p_t";
6783 1.3 martin break;
6784 1.3 martin default:
6785 1.3 martin break;
6786 1.3 martin };
6787 1.3 martin break;
6788 1.1 christos /* netbsd32___posix_rename */
6789 1.1 christos case 270:
6790 1.1 christos switch(ndx) {
6791 1.1 christos case 0:
6792 1.1 christos p = "netbsd32_charp";
6793 1.1 christos break;
6794 1.1 christos case 1:
6795 1.1 christos p = "netbsd32_charp";
6796 1.1 christos break;
6797 1.1 christos default:
6798 1.1 christos break;
6799 1.1 christos };
6800 1.1 christos break;
6801 1.1 christos /* netbsd32_swapctl */
6802 1.1 christos case 271:
6803 1.1 christos switch(ndx) {
6804 1.1 christos case 0:
6805 1.1 christos p = "int";
6806 1.1 christos break;
6807 1.1 christos case 1:
6808 1.1 christos p = "netbsd32_voidp";
6809 1.1 christos break;
6810 1.1 christos case 2:
6811 1.1 christos p = "int";
6812 1.1 christos break;
6813 1.1 christos default:
6814 1.1 christos break;
6815 1.1 christos };
6816 1.1 christos break;
6817 1.1 christos /* netbsd32_getdents */
6818 1.1 christos case 272:
6819 1.1 christos switch(ndx) {
6820 1.1 christos case 0:
6821 1.1 christos p = "int";
6822 1.1 christos break;
6823 1.1 christos case 1:
6824 1.1 christos p = "netbsd32_charp";
6825 1.1 christos break;
6826 1.1 christos case 2:
6827 1.1 christos p = "netbsd32_size_t";
6828 1.1 christos break;
6829 1.1 christos default:
6830 1.1 christos break;
6831 1.1 christos };
6832 1.1 christos break;
6833 1.1 christos /* netbsd32_minherit */
6834 1.1 christos case 273:
6835 1.1 christos switch(ndx) {
6836 1.1 christos case 0:
6837 1.1 christos p = "netbsd32_voidp";
6838 1.1 christos break;
6839 1.1 christos case 1:
6840 1.1 christos p = "netbsd32_size_t";
6841 1.1 christos break;
6842 1.1 christos case 2:
6843 1.1 christos p = "int";
6844 1.1 christos break;
6845 1.1 christos default:
6846 1.1 christos break;
6847 1.1 christos };
6848 1.1 christos break;
6849 1.1 christos /* netbsd32_lchmod */
6850 1.1 christos case 274:
6851 1.1 christos switch(ndx) {
6852 1.1 christos case 0:
6853 1.1 christos p = "netbsd32_charp";
6854 1.1 christos break;
6855 1.1 christos case 1:
6856 1.1 christos p = "mode_t";
6857 1.1 christos break;
6858 1.1 christos default:
6859 1.1 christos break;
6860 1.1 christos };
6861 1.1 christos break;
6862 1.1 christos /* netbsd32_lchown */
6863 1.1 christos case 275:
6864 1.1 christos switch(ndx) {
6865 1.1 christos case 0:
6866 1.1 christos p = "netbsd32_charp";
6867 1.1 christos break;
6868 1.1 christos case 1:
6869 1.1 christos p = "uid_t";
6870 1.1 christos break;
6871 1.1 christos case 2:
6872 1.1 christos p = "gid_t";
6873 1.1 christos break;
6874 1.1 christos default:
6875 1.1 christos break;
6876 1.1 christos };
6877 1.1 christos break;
6878 1.1 christos /* netbsd32_lutimes */
6879 1.1 christos case 276:
6880 1.1 christos switch(ndx) {
6881 1.1 christos case 0:
6882 1.1 christos p = "netbsd32_charp";
6883 1.1 christos break;
6884 1.1 christos case 1:
6885 1.1 christos p = "netbsd32_timeval50p_t";
6886 1.1 christos break;
6887 1.1 christos default:
6888 1.1 christos break;
6889 1.1 christos };
6890 1.1 christos break;
6891 1.1 christos /* netbsd32___msync13 */
6892 1.1 christos case 277:
6893 1.1 christos switch(ndx) {
6894 1.1 christos case 0:
6895 1.1 christos p = "netbsd32_voidp";
6896 1.1 christos break;
6897 1.1 christos case 1:
6898 1.1 christos p = "netbsd32_size_t";
6899 1.1 christos break;
6900 1.1 christos case 2:
6901 1.1 christos p = "int";
6902 1.1 christos break;
6903 1.1 christos default:
6904 1.1 christos break;
6905 1.1 christos };
6906 1.1 christos break;
6907 1.1 christos /* netbsd32___stat13 */
6908 1.1 christos case 278:
6909 1.1 christos switch(ndx) {
6910 1.1 christos case 0:
6911 1.1 christos p = "netbsd32_charp";
6912 1.1 christos break;
6913 1.1 christos case 1:
6914 1.1 christos p = "netbsd32_stat13p_t";
6915 1.1 christos break;
6916 1.1 christos default:
6917 1.1 christos break;
6918 1.1 christos };
6919 1.1 christos break;
6920 1.1 christos /* netbsd32___fstat13 */
6921 1.1 christos case 279:
6922 1.1 christos switch(ndx) {
6923 1.1 christos case 0:
6924 1.1 christos p = "int";
6925 1.1 christos break;
6926 1.1 christos case 1:
6927 1.1 christos p = "netbsd32_stat13p_t";
6928 1.1 christos break;
6929 1.1 christos default:
6930 1.1 christos break;
6931 1.1 christos };
6932 1.1 christos break;
6933 1.1 christos /* netbsd32___lstat13 */
6934 1.1 christos case 280:
6935 1.1 christos switch(ndx) {
6936 1.1 christos case 0:
6937 1.1 christos p = "netbsd32_charp";
6938 1.1 christos break;
6939 1.1 christos case 1:
6940 1.1 christos p = "netbsd32_stat13p_t";
6941 1.1 christos break;
6942 1.1 christos default:
6943 1.1 christos break;
6944 1.1 christos };
6945 1.1 christos break;
6946 1.1 christos /* netbsd32___sigaltstack14 */
6947 1.1 christos case 281:
6948 1.1 christos switch(ndx) {
6949 1.1 christos case 0:
6950 1.1 christos p = "netbsd32_sigaltstackp_t";
6951 1.1 christos break;
6952 1.1 christos case 1:
6953 1.1 christos p = "netbsd32_sigaltstackp_t";
6954 1.1 christos break;
6955 1.1 christos default:
6956 1.1 christos break;
6957 1.1 christos };
6958 1.1 christos break;
6959 1.1 christos /* sys___vfork14 */
6960 1.1 christos case 282:
6961 1.1 christos break;
6962 1.1 christos /* netbsd32___posix_chown */
6963 1.1 christos case 283:
6964 1.1 christos switch(ndx) {
6965 1.1 christos case 0:
6966 1.1 christos p = "netbsd32_charp";
6967 1.1 christos break;
6968 1.1 christos case 1:
6969 1.1 christos p = "uid_t";
6970 1.1 christos break;
6971 1.1 christos case 2:
6972 1.1 christos p = "gid_t";
6973 1.1 christos break;
6974 1.1 christos default:
6975 1.1 christos break;
6976 1.1 christos };
6977 1.1 christos break;
6978 1.1 christos /* netbsd32___posix_fchown */
6979 1.1 christos case 284:
6980 1.1 christos switch(ndx) {
6981 1.1 christos case 0:
6982 1.1 christos p = "int";
6983 1.1 christos break;
6984 1.1 christos case 1:
6985 1.1 christos p = "uid_t";
6986 1.1 christos break;
6987 1.1 christos case 2:
6988 1.1 christos p = "gid_t";
6989 1.1 christos break;
6990 1.1 christos default:
6991 1.1 christos break;
6992 1.1 christos };
6993 1.1 christos break;
6994 1.1 christos /* netbsd32___posix_lchown */
6995 1.1 christos case 285:
6996 1.1 christos switch(ndx) {
6997 1.1 christos case 0:
6998 1.1 christos p = "netbsd32_charp";
6999 1.1 christos break;
7000 1.1 christos case 1:
7001 1.1 christos p = "uid_t";
7002 1.1 christos break;
7003 1.1 christos case 2:
7004 1.1 christos p = "gid_t";
7005 1.1 christos break;
7006 1.1 christos default:
7007 1.1 christos break;
7008 1.1 christos };
7009 1.1 christos break;
7010 1.1 christos /* netbsd32_getsid */
7011 1.1 christos case 286:
7012 1.1 christos switch(ndx) {
7013 1.1 christos case 0:
7014 1.1 christos p = "pid_t";
7015 1.1 christos break;
7016 1.1 christos default:
7017 1.1 christos break;
7018 1.1 christos };
7019 1.1 christos break;
7020 1.1 christos /* netbsd32___clone */
7021 1.1 christos case 287:
7022 1.1 christos switch(ndx) {
7023 1.1 christos case 0:
7024 1.1 christos p = "int";
7025 1.1 christos break;
7026 1.1 christos case 1:
7027 1.1 christos p = "netbsd32_voidp";
7028 1.1 christos break;
7029 1.1 christos default:
7030 1.1 christos break;
7031 1.1 christos };
7032 1.1 christos break;
7033 1.1 christos /* netbsd32_fktrace */
7034 1.1 christos case 288:
7035 1.1 christos switch(ndx) {
7036 1.1 christos case 0:
7037 1.1 christos p = "int";
7038 1.1 christos break;
7039 1.1 christos case 1:
7040 1.1 christos p = "int";
7041 1.1 christos break;
7042 1.1 christos case 2:
7043 1.1 christos p = "int";
7044 1.1 christos break;
7045 1.1 christos case 3:
7046 1.1 christos p = "int";
7047 1.1 christos break;
7048 1.1 christos default:
7049 1.1 christos break;
7050 1.1 christos };
7051 1.1 christos break;
7052 1.1 christos /* netbsd32_preadv */
7053 1.1 christos case 289:
7054 1.1 christos switch(ndx) {
7055 1.1 christos case 0:
7056 1.1 christos p = "int";
7057 1.1 christos break;
7058 1.1 christos case 1:
7059 1.1 christos p = "netbsd32_iovecp_t";
7060 1.1 christos break;
7061 1.1 christos case 2:
7062 1.1 christos p = "int";
7063 1.1 christos break;
7064 1.1 christos case 3:
7065 1.1 christos p = "int";
7066 1.1 christos break;
7067 1.1 christos case 4:
7068 1.1 christos p = "netbsd32_off_t";
7069 1.1 christos break;
7070 1.1 christos default:
7071 1.1 christos break;
7072 1.1 christos };
7073 1.1 christos break;
7074 1.1 christos /* netbsd32_pwritev */
7075 1.1 christos case 290:
7076 1.1 christos switch(ndx) {
7077 1.1 christos case 0:
7078 1.1 christos p = "int";
7079 1.1 christos break;
7080 1.1 christos case 1:
7081 1.1 christos p = "netbsd32_iovecp_t";
7082 1.1 christos break;
7083 1.1 christos case 2:
7084 1.1 christos p = "int";
7085 1.1 christos break;
7086 1.1 christos case 3:
7087 1.1 christos p = "int";
7088 1.1 christos break;
7089 1.1 christos case 4:
7090 1.1 christos p = "netbsd32_off_t";
7091 1.1 christos break;
7092 1.1 christos default:
7093 1.1 christos break;
7094 1.1 christos };
7095 1.1 christos break;
7096 1.1 christos /* netbsd32___sigaction14 */
7097 1.1 christos case 291:
7098 1.1 christos switch(ndx) {
7099 1.1 christos case 0:
7100 1.1 christos p = "int";
7101 1.1 christos break;
7102 1.1 christos case 1:
7103 1.1 christos p = "netbsd32_sigactionp_t";
7104 1.1 christos break;
7105 1.1 christos case 2:
7106 1.1 christos p = "netbsd32_sigactionp_t";
7107 1.1 christos break;
7108 1.1 christos default:
7109 1.1 christos break;
7110 1.1 christos };
7111 1.1 christos break;
7112 1.1 christos /* netbsd32___sigpending14 */
7113 1.1 christos case 292:
7114 1.1 christos switch(ndx) {
7115 1.1 christos case 0:
7116 1.1 christos p = "netbsd32_sigsetp_t";
7117 1.1 christos break;
7118 1.1 christos default:
7119 1.1 christos break;
7120 1.1 christos };
7121 1.1 christos break;
7122 1.1 christos /* netbsd32___sigprocmask14 */
7123 1.1 christos case 293:
7124 1.1 christos switch(ndx) {
7125 1.1 christos case 0:
7126 1.1 christos p = "int";
7127 1.1 christos break;
7128 1.1 christos case 1:
7129 1.1 christos p = "netbsd32_sigsetp_t";
7130 1.1 christos break;
7131 1.1 christos case 2:
7132 1.1 christos p = "netbsd32_sigsetp_t";
7133 1.1 christos break;
7134 1.1 christos default:
7135 1.1 christos break;
7136 1.1 christos };
7137 1.1 christos break;
7138 1.1 christos /* netbsd32___sigsuspend14 */
7139 1.1 christos case 294:
7140 1.1 christos switch(ndx) {
7141 1.1 christos case 0:
7142 1.1 christos p = "netbsd32_sigsetp_t";
7143 1.1 christos break;
7144 1.1 christos default:
7145 1.1 christos break;
7146 1.1 christos };
7147 1.1 christos break;
7148 1.1 christos /* netbsd32___sigreturn14 */
7149 1.1 christos case 295:
7150 1.1 christos switch(ndx) {
7151 1.1 christos case 0:
7152 1.1 christos p = "netbsd32_sigcontextp_t";
7153 1.1 christos break;
7154 1.1 christos default:
7155 1.1 christos break;
7156 1.1 christos };
7157 1.1 christos break;
7158 1.1 christos /* netbsd32___getcwd */
7159 1.1 christos case 296:
7160 1.1 christos switch(ndx) {
7161 1.1 christos case 0:
7162 1.1 christos p = "netbsd32_charp";
7163 1.1 christos break;
7164 1.1 christos case 1:
7165 1.1 christos p = "netbsd32_size_t";
7166 1.1 christos break;
7167 1.1 christos default:
7168 1.1 christos break;
7169 1.1 christos };
7170 1.1 christos break;
7171 1.1 christos /* netbsd32_fchroot */
7172 1.1 christos case 297:
7173 1.1 christos switch(ndx) {
7174 1.1 christos case 0:
7175 1.1 christos p = "int";
7176 1.1 christos break;
7177 1.1 christos default:
7178 1.1 christos break;
7179 1.1 christos };
7180 1.1 christos break;
7181 1.1 christos /* netbsd32_fhopen */
7182 1.1 christos case 298:
7183 1.1 christos switch(ndx) {
7184 1.1 christos case 0:
7185 1.1 christos p = "netbsd32_fhandlep_t";
7186 1.1 christos break;
7187 1.1 christos case 1:
7188 1.1 christos p = "int";
7189 1.1 christos break;
7190 1.1 christos default:
7191 1.1 christos break;
7192 1.1 christos };
7193 1.1 christos break;
7194 1.1 christos /* netbsd32_fhstat */
7195 1.1 christos case 299:
7196 1.1 christos switch(ndx) {
7197 1.1 christos case 0:
7198 1.1 christos p = "netbsd32_fhandlep_t";
7199 1.1 christos break;
7200 1.1 christos case 1:
7201 1.1 christos p = "netbsd32_stat13p_t";
7202 1.1 christos break;
7203 1.1 christos default:
7204 1.1 christos break;
7205 1.1 christos };
7206 1.1 christos break;
7207 1.1 christos /* netbsd32_fhstatfs */
7208 1.1 christos case 300:
7209 1.1 christos switch(ndx) {
7210 1.1 christos case 0:
7211 1.1 christos p = "netbsd32_fhandlep_t";
7212 1.1 christos break;
7213 1.1 christos case 1:
7214 1.1 christos p = "netbsd32_stat50p_t";
7215 1.1 christos break;
7216 1.1 christos default:
7217 1.1 christos break;
7218 1.1 christos };
7219 1.1 christos break;
7220 1.1 christos /* netbsd32___semctl14 */
7221 1.1 christos case 301:
7222 1.1 christos switch(ndx) {
7223 1.1 christos case 0:
7224 1.1 christos p = "int";
7225 1.1 christos break;
7226 1.1 christos case 1:
7227 1.1 christos p = "int";
7228 1.1 christos break;
7229 1.1 christos case 2:
7230 1.1 christos p = "int";
7231 1.1 christos break;
7232 1.1 christos case 3:
7233 1.1 christos p = "netbsd32_semun50p_t";
7234 1.1 christos break;
7235 1.1 christos default:
7236 1.1 christos break;
7237 1.1 christos };
7238 1.1 christos break;
7239 1.1 christos /* netbsd32___msgctl13 */
7240 1.1 christos case 302:
7241 1.1 christos switch(ndx) {
7242 1.1 christos case 0:
7243 1.1 christos p = "int";
7244 1.1 christos break;
7245 1.1 christos case 1:
7246 1.1 christos p = "int";
7247 1.1 christos break;
7248 1.1 christos case 2:
7249 1.1 christos p = "netbsd32_msqid_ds50p_t";
7250 1.1 christos break;
7251 1.1 christos default:
7252 1.1 christos break;
7253 1.1 christos };
7254 1.1 christos break;
7255 1.1 christos /* netbsd32___shmctl13 */
7256 1.1 christos case 303:
7257 1.1 christos switch(ndx) {
7258 1.1 christos case 0:
7259 1.1 christos p = "int";
7260 1.1 christos break;
7261 1.1 christos case 1:
7262 1.1 christos p = "int";
7263 1.1 christos break;
7264 1.1 christos case 2:
7265 1.1 christos p = "netbsd32_shmid_ds50p_t";
7266 1.1 christos break;
7267 1.1 christos default:
7268 1.1 christos break;
7269 1.1 christos };
7270 1.1 christos break;
7271 1.1 christos /* netbsd32_lchflags */
7272 1.1 christos case 304:
7273 1.1 christos switch(ndx) {
7274 1.1 christos case 0:
7275 1.1 christos p = "netbsd32_charp";
7276 1.1 christos break;
7277 1.1 christos case 1:
7278 1.1 christos p = "netbsd32_u_long";
7279 1.1 christos break;
7280 1.1 christos default:
7281 1.1 christos break;
7282 1.1 christos };
7283 1.1 christos break;
7284 1.1 christos /* sys_issetugid */
7285 1.1 christos case 305:
7286 1.1 christos break;
7287 1.1 christos /* netbsd32_utrace */
7288 1.1 christos case 306:
7289 1.1 christos switch(ndx) {
7290 1.1 christos case 0:
7291 1.1 christos p = "netbsd32_charp";
7292 1.1 christos break;
7293 1.1 christos case 1:
7294 1.1 christos p = "netbsd32_voidp";
7295 1.1 christos break;
7296 1.1 christos case 2:
7297 1.1 christos p = "netbsd32_size_t";
7298 1.1 christos break;
7299 1.1 christos default:
7300 1.1 christos break;
7301 1.1 christos };
7302 1.1 christos break;
7303 1.1 christos /* netbsd32_getcontext */
7304 1.1 christos case 307:
7305 1.1 christos switch(ndx) {
7306 1.1 christos case 0:
7307 1.1 christos p = "netbsd32_ucontextp";
7308 1.1 christos break;
7309 1.1 christos default:
7310 1.1 christos break;
7311 1.1 christos };
7312 1.1 christos break;
7313 1.1 christos /* netbsd32_setcontext */
7314 1.1 christos case 308:
7315 1.1 christos switch(ndx) {
7316 1.1 christos case 0:
7317 1.1 christos p = "netbsd32_ucontextp";
7318 1.1 christos break;
7319 1.1 christos default:
7320 1.1 christos break;
7321 1.1 christos };
7322 1.1 christos break;
7323 1.1 christos /* netbsd32__lwp_create */
7324 1.1 christos case 309:
7325 1.1 christos switch(ndx) {
7326 1.1 christos case 0:
7327 1.1 christos p = "netbsd32_ucontextp";
7328 1.1 christos break;
7329 1.1 christos case 1:
7330 1.1 christos p = "netbsd32_u_long";
7331 1.1 christos break;
7332 1.1 christos case 2:
7333 1.1 christos p = "netbsd32_lwpidp";
7334 1.1 christos break;
7335 1.1 christos default:
7336 1.1 christos break;
7337 1.1 christos };
7338 1.1 christos break;
7339 1.1 christos /* sys__lwp_exit */
7340 1.1 christos case 310:
7341 1.1 christos break;
7342 1.1 christos /* sys__lwp_self */
7343 1.1 christos case 311:
7344 1.1 christos break;
7345 1.1 christos /* netbsd32__lwp_wait */
7346 1.1 christos case 312:
7347 1.1 christos switch(ndx) {
7348 1.1 christos case 0:
7349 1.1 christos p = "lwpid_t";
7350 1.1 christos break;
7351 1.1 christos case 1:
7352 1.1 christos p = "netbsd32_lwpidp";
7353 1.1 christos break;
7354 1.1 christos default:
7355 1.1 christos break;
7356 1.1 christos };
7357 1.1 christos break;
7358 1.1 christos /* netbsd32__lwp_suspend */
7359 1.1 christos case 313:
7360 1.1 christos switch(ndx) {
7361 1.1 christos case 0:
7362 1.1 christos p = "lwpid_t";
7363 1.1 christos break;
7364 1.1 christos default:
7365 1.1 christos break;
7366 1.1 christos };
7367 1.1 christos break;
7368 1.1 christos /* netbsd32__lwp_continue */
7369 1.1 christos case 314:
7370 1.1 christos switch(ndx) {
7371 1.1 christos case 0:
7372 1.1 christos p = "lwpid_t";
7373 1.1 christos break;
7374 1.1 christos default:
7375 1.1 christos break;
7376 1.1 christos };
7377 1.1 christos break;
7378 1.1 christos /* netbsd32__lwp_wakeup */
7379 1.1 christos case 315:
7380 1.1 christos switch(ndx) {
7381 1.1 christos case 0:
7382 1.1 christos p = "lwpid_t";
7383 1.1 christos break;
7384 1.1 christos default:
7385 1.1 christos break;
7386 1.1 christos };
7387 1.1 christos break;
7388 1.1 christos /* sys__lwp_getprivate */
7389 1.1 christos case 316:
7390 1.1 christos break;
7391 1.1 christos /* netbsd32__lwp_setprivate */
7392 1.1 christos case 317:
7393 1.1 christos switch(ndx) {
7394 1.1 christos case 0:
7395 1.1 christos p = "netbsd32_voidp";
7396 1.1 christos break;
7397 1.1 christos default:
7398 1.1 christos break;
7399 1.1 christos };
7400 1.1 christos break;
7401 1.1 christos /* netbsd32__lwp_kill */
7402 1.1 christos case 318:
7403 1.1 christos switch(ndx) {
7404 1.1 christos case 0:
7405 1.1 christos p = "lwpid_t";
7406 1.1 christos break;
7407 1.1 christos case 1:
7408 1.1 christos p = "int";
7409 1.1 christos break;
7410 1.1 christos default:
7411 1.1 christos break;
7412 1.1 christos };
7413 1.1 christos break;
7414 1.1 christos /* netbsd32__lwp_detach */
7415 1.1 christos case 319:
7416 1.1 christos switch(ndx) {
7417 1.1 christos case 0:
7418 1.1 christos p = "lwpid_t";
7419 1.1 christos break;
7420 1.1 christos default:
7421 1.1 christos break;
7422 1.1 christos };
7423 1.1 christos break;
7424 1.1 christos /* netbsd32__lwp_park */
7425 1.1 christos case 320:
7426 1.1 christos switch(ndx) {
7427 1.1 christos case 0:
7428 1.1 christos p = "netbsd32_timespec50p_t";
7429 1.1 christos break;
7430 1.1 christos case 1:
7431 1.1 christos p = "lwpid_t";
7432 1.1 christos break;
7433 1.1 christos case 2:
7434 1.1 christos p = "netbsd32_voidp";
7435 1.1 christos break;
7436 1.1 christos case 3:
7437 1.1 christos p = "netbsd32_voidp";
7438 1.1 christos break;
7439 1.1 christos default:
7440 1.1 christos break;
7441 1.1 christos };
7442 1.1 christos break;
7443 1.1 christos /* netbsd32__lwp_unpark */
7444 1.1 christos case 321:
7445 1.1 christos switch(ndx) {
7446 1.1 christos case 0:
7447 1.1 christos p = "lwpid_t";
7448 1.1 christos break;
7449 1.1 christos case 1:
7450 1.1 christos p = "netbsd32_voidp";
7451 1.1 christos break;
7452 1.1 christos default:
7453 1.1 christos break;
7454 1.1 christos };
7455 1.1 christos break;
7456 1.1 christos /* netbsd32__lwp_unpark_all */
7457 1.1 christos case 322:
7458 1.1 christos switch(ndx) {
7459 1.1 christos case 0:
7460 1.1 christos p = "netbsd32_lwpidp";
7461 1.1 christos break;
7462 1.1 christos case 1:
7463 1.1 christos p = "netbsd32_size_t";
7464 1.1 christos break;
7465 1.1 christos case 2:
7466 1.1 christos p = "netbsd32_voidp";
7467 1.1 christos break;
7468 1.1 christos default:
7469 1.1 christos break;
7470 1.1 christos };
7471 1.1 christos break;
7472 1.1 christos /* netbsd32__lwp_setname */
7473 1.1 christos case 323:
7474 1.1 christos switch(ndx) {
7475 1.1 christos case 0:
7476 1.1 christos p = "lwpid_t";
7477 1.1 christos break;
7478 1.1 christos case 1:
7479 1.1 christos p = "netbsd32_charp";
7480 1.1 christos break;
7481 1.1 christos default:
7482 1.1 christos break;
7483 1.1 christos };
7484 1.1 christos break;
7485 1.1 christos /* netbsd32__lwp_getname */
7486 1.1 christos case 324:
7487 1.1 christos switch(ndx) {
7488 1.1 christos case 0:
7489 1.1 christos p = "lwpid_t";
7490 1.1 christos break;
7491 1.1 christos case 1:
7492 1.1 christos p = "netbsd32_charp";
7493 1.1 christos break;
7494 1.1 christos case 2:
7495 1.1 christos p = "netbsd32_size_t";
7496 1.1 christos break;
7497 1.1 christos default:
7498 1.1 christos break;
7499 1.1 christos };
7500 1.1 christos break;
7501 1.1 christos /* netbsd32__lwp_ctl */
7502 1.1 christos case 325:
7503 1.1 christos switch(ndx) {
7504 1.1 christos case 0:
7505 1.1 christos p = "int";
7506 1.1 christos break;
7507 1.1 christos case 1:
7508 1.1 christos p = "netbsd32_pointer_t";
7509 1.1 christos break;
7510 1.1 christos default:
7511 1.1 christos break;
7512 1.1 christos };
7513 1.1 christos break;
7514 1.1 christos /* netbsd32___sigaction_sigtramp */
7515 1.1 christos case 340:
7516 1.1 christos switch(ndx) {
7517 1.1 christos case 0:
7518 1.1 christos p = "int";
7519 1.1 christos break;
7520 1.1 christos case 1:
7521 1.1 christos p = "netbsd32_sigactionp_t";
7522 1.1 christos break;
7523 1.1 christos case 2:
7524 1.1 christos p = "netbsd32_sigactionp_t";
7525 1.1 christos break;
7526 1.1 christos case 3:
7527 1.1 christos p = "netbsd32_voidp";
7528 1.1 christos break;
7529 1.1 christos case 4:
7530 1.1 christos p = "int";
7531 1.1 christos break;
7532 1.1 christos default:
7533 1.1 christos break;
7534 1.1 christos };
7535 1.1 christos break;
7536 1.1 christos /* netbsd32_rasctl */
7537 1.1 christos case 343:
7538 1.1 christos switch(ndx) {
7539 1.1 christos case 0:
7540 1.1 christos p = "netbsd32_voidp";
7541 1.1 christos break;
7542 1.1 christos case 1:
7543 1.1 christos p = "netbsd32_size_t";
7544 1.1 christos break;
7545 1.1 christos case 2:
7546 1.1 christos p = "int";
7547 1.1 christos break;
7548 1.1 christos default:
7549 1.1 christos break;
7550 1.1 christos };
7551 1.1 christos break;
7552 1.1 christos /* sys_kqueue */
7553 1.1 christos case 344:
7554 1.1 christos break;
7555 1.1 christos /* netbsd32_kevent */
7556 1.1 christos case 345:
7557 1.1 christos switch(ndx) {
7558 1.1 christos case 0:
7559 1.1 christos p = "int";
7560 1.1 christos break;
7561 1.1 christos case 1:
7562 1.1 christos p = "netbsd32_keventp_t";
7563 1.1 christos break;
7564 1.1 christos case 2:
7565 1.1 christos p = "netbsd32_size_t";
7566 1.1 christos break;
7567 1.1 christos case 3:
7568 1.1 christos p = "netbsd32_keventp_t";
7569 1.1 christos break;
7570 1.1 christos case 4:
7571 1.1 christos p = "netbsd32_size_t";
7572 1.1 christos break;
7573 1.1 christos case 5:
7574 1.1 christos p = "netbsd32_timespec50p_t";
7575 1.1 christos break;
7576 1.1 christos default:
7577 1.1 christos break;
7578 1.1 christos };
7579 1.1 christos break;
7580 1.1 christos /* netbsd32__sched_setparam */
7581 1.1 christos case 346:
7582 1.1 christos switch(ndx) {
7583 1.1 christos case 0:
7584 1.1 christos p = "pid_t";
7585 1.1 christos break;
7586 1.1 christos case 1:
7587 1.1 christos p = "lwpid_t";
7588 1.1 christos break;
7589 1.1 christos case 2:
7590 1.1 christos p = "int";
7591 1.1 christos break;
7592 1.1 christos case 3:
7593 1.1 christos p = "const netbsd32_sched_paramp_t";
7594 1.1 christos break;
7595 1.1 christos default:
7596 1.1 christos break;
7597 1.1 christos };
7598 1.1 christos break;
7599 1.1 christos /* netbsd32__sched_getparam */
7600 1.1 christos case 347:
7601 1.1 christos switch(ndx) {
7602 1.1 christos case 0:
7603 1.1 christos p = "pid_t";
7604 1.1 christos break;
7605 1.1 christos case 1:
7606 1.1 christos p = "lwpid_t";
7607 1.1 christos break;
7608 1.1 christos case 2:
7609 1.1 christos p = "netbsd32_intp";
7610 1.1 christos break;
7611 1.1 christos case 3:
7612 1.1 christos p = "netbsd32_sched_paramp_t";
7613 1.1 christos break;
7614 1.1 christos default:
7615 1.1 christos break;
7616 1.1 christos };
7617 1.1 christos break;
7618 1.1 christos /* netbsd32__sched_setaffinity */
7619 1.1 christos case 348:
7620 1.1 christos switch(ndx) {
7621 1.1 christos case 0:
7622 1.1 christos p = "pid_t";
7623 1.1 christos break;
7624 1.1 christos case 1:
7625 1.1 christos p = "lwpid_t";
7626 1.1 christos break;
7627 1.1 christos case 2:
7628 1.1 christos p = "netbsd32_size_t";
7629 1.1 christos break;
7630 1.1 christos case 3:
7631 1.1 christos p = "const netbsd32_cpusetp_t";
7632 1.1 christos break;
7633 1.1 christos default:
7634 1.1 christos break;
7635 1.1 christos };
7636 1.1 christos break;
7637 1.1 christos /* netbsd32__sched_getaffinity */
7638 1.1 christos case 349:
7639 1.1 christos switch(ndx) {
7640 1.1 christos case 0:
7641 1.1 christos p = "pid_t";
7642 1.1 christos break;
7643 1.1 christos case 1:
7644 1.1 christos p = "lwpid_t";
7645 1.1 christos break;
7646 1.1 christos case 2:
7647 1.1 christos p = "netbsd32_size_t";
7648 1.1 christos break;
7649 1.1 christos case 3:
7650 1.1 christos p = "netbsd32_cpusetp_t";
7651 1.1 christos break;
7652 1.1 christos default:
7653 1.1 christos break;
7654 1.1 christos };
7655 1.1 christos break;
7656 1.1 christos /* sys_sched_yield */
7657 1.1 christos case 350:
7658 1.1 christos break;
7659 1.13 skrll /* netbsd32__sched_protect */
7660 1.13 skrll case 351:
7661 1.13 skrll switch(ndx) {
7662 1.13 skrll case 0:
7663 1.13 skrll p = "int";
7664 1.13 skrll break;
7665 1.13 skrll default:
7666 1.13 skrll break;
7667 1.13 skrll };
7668 1.13 skrll break;
7669 1.1 christos /* netbsd32_fsync_range */
7670 1.1 christos case 354:
7671 1.1 christos switch(ndx) {
7672 1.1 christos case 0:
7673 1.1 christos p = "int";
7674 1.1 christos break;
7675 1.1 christos case 1:
7676 1.1 christos p = "int";
7677 1.1 christos break;
7678 1.1 christos case 2:
7679 1.1 christos p = "netbsd32_off_t";
7680 1.1 christos break;
7681 1.1 christos case 3:
7682 1.1 christos p = "netbsd32_off_t";
7683 1.1 christos break;
7684 1.1 christos default:
7685 1.1 christos break;
7686 1.1 christos };
7687 1.1 christos break;
7688 1.1 christos /* netbsd32_uuidgen */
7689 1.1 christos case 355:
7690 1.1 christos switch(ndx) {
7691 1.1 christos case 0:
7692 1.1 christos p = "netbsd32_uuidp_t";
7693 1.1 christos break;
7694 1.1 christos case 1:
7695 1.1 christos p = "int";
7696 1.1 christos break;
7697 1.1 christos default:
7698 1.1 christos break;
7699 1.1 christos };
7700 1.1 christos break;
7701 1.1 christos /* netbsd32_getvfsstat */
7702 1.1 christos case 356:
7703 1.1 christos switch(ndx) {
7704 1.1 christos case 0:
7705 1.33 christos p = "netbsd32_statvfs90p_t";
7706 1.1 christos break;
7707 1.1 christos case 1:
7708 1.1 christos p = "netbsd32_size_t";
7709 1.1 christos break;
7710 1.1 christos case 2:
7711 1.1 christos p = "int";
7712 1.1 christos break;
7713 1.1 christos default:
7714 1.1 christos break;
7715 1.1 christos };
7716 1.1 christos break;
7717 1.1 christos /* netbsd32_statvfs1 */
7718 1.1 christos case 357:
7719 1.1 christos switch(ndx) {
7720 1.1 christos case 0:
7721 1.1 christos p = "netbsd32_charp";
7722 1.1 christos break;
7723 1.1 christos case 1:
7724 1.33 christos p = "netbsd32_statvfs90p_t";
7725 1.1 christos break;
7726 1.1 christos case 2:
7727 1.1 christos p = "int";
7728 1.1 christos break;
7729 1.1 christos default:
7730 1.1 christos break;
7731 1.1 christos };
7732 1.1 christos break;
7733 1.1 christos /* netbsd32_fstatvfs1 */
7734 1.1 christos case 358:
7735 1.1 christos switch(ndx) {
7736 1.1 christos case 0:
7737 1.1 christos p = "int";
7738 1.1 christos break;
7739 1.1 christos case 1:
7740 1.33 christos p = "netbsd32_statvfs90p_t";
7741 1.1 christos break;
7742 1.1 christos case 2:
7743 1.1 christos p = "int";
7744 1.1 christos break;
7745 1.1 christos default:
7746 1.1 christos break;
7747 1.1 christos };
7748 1.1 christos break;
7749 1.1 christos /* netbsd32_fhstatvfs1 */
7750 1.1 christos case 359:
7751 1.1 christos switch(ndx) {
7752 1.1 christos case 0:
7753 1.1 christos p = "netbsd32_fhandlep_t";
7754 1.1 christos break;
7755 1.1 christos case 1:
7756 1.33 christos p = "netbsd32_statvfs90p_t";
7757 1.1 christos break;
7758 1.1 christos case 2:
7759 1.1 christos p = "int";
7760 1.1 christos break;
7761 1.1 christos default:
7762 1.1 christos break;
7763 1.1 christos };
7764 1.1 christos break;
7765 1.1 christos /* netbsd32_extattrctl */
7766 1.1 christos case 360:
7767 1.1 christos switch(ndx) {
7768 1.1 christos case 0:
7769 1.1 christos p = "netbsd32_charp";
7770 1.1 christos break;
7771 1.1 christos case 1:
7772 1.1 christos p = "int";
7773 1.1 christos break;
7774 1.1 christos case 2:
7775 1.1 christos p = "netbsd32_charp";
7776 1.1 christos break;
7777 1.1 christos case 3:
7778 1.1 christos p = "int";
7779 1.1 christos break;
7780 1.1 christos case 4:
7781 1.1 christos p = "netbsd32_charp";
7782 1.1 christos break;
7783 1.1 christos default:
7784 1.1 christos break;
7785 1.1 christos };
7786 1.1 christos break;
7787 1.1 christos /* netbsd32_extattr_set_file */
7788 1.1 christos case 361:
7789 1.1 christos switch(ndx) {
7790 1.1 christos case 0:
7791 1.1 christos p = "netbsd32_charp";
7792 1.1 christos break;
7793 1.1 christos case 1:
7794 1.1 christos p = "int";
7795 1.1 christos break;
7796 1.1 christos case 2:
7797 1.1 christos p = "netbsd32_charp";
7798 1.1 christos break;
7799 1.1 christos case 3:
7800 1.1 christos p = "netbsd32_voidp";
7801 1.1 christos break;
7802 1.1 christos case 4:
7803 1.1 christos p = "netbsd32_size_t";
7804 1.1 christos break;
7805 1.1 christos default:
7806 1.1 christos break;
7807 1.1 christos };
7808 1.1 christos break;
7809 1.1 christos /* netbsd32_extattr_get_file */
7810 1.1 christos case 362:
7811 1.1 christos switch(ndx) {
7812 1.1 christos case 0:
7813 1.1 christos p = "netbsd32_charp";
7814 1.1 christos break;
7815 1.1 christos case 1:
7816 1.1 christos p = "int";
7817 1.1 christos break;
7818 1.1 christos case 2:
7819 1.1 christos p = "netbsd32_charp";
7820 1.1 christos break;
7821 1.1 christos case 3:
7822 1.1 christos p = "netbsd32_voidp";
7823 1.1 christos break;
7824 1.1 christos case 4:
7825 1.1 christos p = "netbsd32_size_t";
7826 1.1 christos break;
7827 1.1 christos default:
7828 1.1 christos break;
7829 1.1 christos };
7830 1.1 christos break;
7831 1.1 christos /* netbsd32_extattr_delete_file */
7832 1.1 christos case 363:
7833 1.1 christos switch(ndx) {
7834 1.1 christos case 0:
7835 1.1 christos p = "netbsd32_charp";
7836 1.1 christos break;
7837 1.1 christos case 1:
7838 1.1 christos p = "int";
7839 1.1 christos break;
7840 1.1 christos case 2:
7841 1.1 christos p = "netbsd32_charp";
7842 1.1 christos break;
7843 1.1 christos default:
7844 1.1 christos break;
7845 1.1 christos };
7846 1.1 christos break;
7847 1.1 christos /* netbsd32_extattr_set_fd */
7848 1.1 christos case 364:
7849 1.1 christos switch(ndx) {
7850 1.1 christos case 0:
7851 1.1 christos p = "int";
7852 1.1 christos break;
7853 1.1 christos case 1:
7854 1.1 christos p = "int";
7855 1.1 christos break;
7856 1.1 christos case 2:
7857 1.1 christos p = "netbsd32_charp";
7858 1.1 christos break;
7859 1.1 christos case 3:
7860 1.1 christos p = "netbsd32_voidp";
7861 1.1 christos break;
7862 1.1 christos case 4:
7863 1.1 christos p = "netbsd32_size_t";
7864 1.1 christos break;
7865 1.1 christos default:
7866 1.1 christos break;
7867 1.1 christos };
7868 1.1 christos break;
7869 1.1 christos /* netbsd32_extattr_get_fd */
7870 1.1 christos case 365:
7871 1.1 christos switch(ndx) {
7872 1.1 christos case 0:
7873 1.1 christos p = "int";
7874 1.1 christos break;
7875 1.1 christos case 1:
7876 1.1 christos p = "int";
7877 1.1 christos break;
7878 1.1 christos case 2:
7879 1.1 christos p = "netbsd32_charp";
7880 1.1 christos break;
7881 1.1 christos case 3:
7882 1.1 christos p = "netbsd32_voidp";
7883 1.1 christos break;
7884 1.1 christos case 4:
7885 1.1 christos p = "netbsd32_size_t";
7886 1.1 christos break;
7887 1.1 christos default:
7888 1.1 christos break;
7889 1.1 christos };
7890 1.1 christos break;
7891 1.1 christos /* netbsd32_extattr_delete_fd */
7892 1.1 christos case 366:
7893 1.1 christos switch(ndx) {
7894 1.1 christos case 0:
7895 1.1 christos p = "int";
7896 1.1 christos break;
7897 1.1 christos case 1:
7898 1.1 christos p = "int";
7899 1.1 christos break;
7900 1.1 christos case 2:
7901 1.1 christos p = "netbsd32_charp";
7902 1.1 christos break;
7903 1.1 christos default:
7904 1.1 christos break;
7905 1.1 christos };
7906 1.1 christos break;
7907 1.1 christos /* netbsd32_extattr_set_link */
7908 1.1 christos case 367:
7909 1.1 christos switch(ndx) {
7910 1.1 christos case 0:
7911 1.1 christos p = "netbsd32_charp";
7912 1.1 christos break;
7913 1.1 christos case 1:
7914 1.1 christos p = "int";
7915 1.1 christos break;
7916 1.1 christos case 2:
7917 1.1 christos p = "netbsd32_charp";
7918 1.1 christos break;
7919 1.1 christos case 3:
7920 1.1 christos p = "netbsd32_voidp";
7921 1.1 christos break;
7922 1.1 christos case 4:
7923 1.1 christos p = "netbsd32_size_t";
7924 1.1 christos break;
7925 1.1 christos default:
7926 1.1 christos break;
7927 1.1 christos };
7928 1.1 christos break;
7929 1.1 christos /* netbsd32_extattr_get_link */
7930 1.1 christos case 368:
7931 1.1 christos switch(ndx) {
7932 1.1 christos case 0:
7933 1.1 christos p = "netbsd32_charp";
7934 1.1 christos break;
7935 1.1 christos case 1:
7936 1.1 christos p = "int";
7937 1.1 christos break;
7938 1.1 christos case 2:
7939 1.1 christos p = "netbsd32_charp";
7940 1.1 christos break;
7941 1.1 christos case 3:
7942 1.1 christos p = "netbsd32_voidp";
7943 1.1 christos break;
7944 1.1 christos case 4:
7945 1.1 christos p = "netbsd32_size_t";
7946 1.1 christos break;
7947 1.1 christos default:
7948 1.1 christos break;
7949 1.1 christos };
7950 1.1 christos break;
7951 1.1 christos /* netbsd32_extattr_delete_link */
7952 1.1 christos case 369:
7953 1.1 christos switch(ndx) {
7954 1.1 christos case 0:
7955 1.1 christos p = "netbsd32_charp";
7956 1.1 christos break;
7957 1.1 christos case 1:
7958 1.1 christos p = "int";
7959 1.1 christos break;
7960 1.1 christos case 2:
7961 1.1 christos p = "netbsd32_charp";
7962 1.1 christos break;
7963 1.1 christos default:
7964 1.1 christos break;
7965 1.1 christos };
7966 1.1 christos break;
7967 1.1 christos /* netbsd32_extattr_list_fd */
7968 1.1 christos case 370:
7969 1.1 christos switch(ndx) {
7970 1.1 christos case 0:
7971 1.1 christos p = "int";
7972 1.1 christos break;
7973 1.1 christos case 1:
7974 1.1 christos p = "int";
7975 1.1 christos break;
7976 1.1 christos case 2:
7977 1.1 christos p = "netbsd32_voidp";
7978 1.1 christos break;
7979 1.1 christos case 3:
7980 1.1 christos p = "netbsd32_size_t";
7981 1.1 christos break;
7982 1.1 christos default:
7983 1.1 christos break;
7984 1.1 christos };
7985 1.1 christos break;
7986 1.1 christos /* netbsd32_extattr_list_file */
7987 1.1 christos case 371:
7988 1.1 christos switch(ndx) {
7989 1.1 christos case 0:
7990 1.1 christos p = "netbsd32_charp";
7991 1.1 christos break;
7992 1.1 christos case 1:
7993 1.1 christos p = "int";
7994 1.1 christos break;
7995 1.1 christos case 2:
7996 1.1 christos p = "netbsd32_voidp";
7997 1.1 christos break;
7998 1.1 christos case 3:
7999 1.1 christos p = "netbsd32_size_t";
8000 1.1 christos break;
8001 1.1 christos default:
8002 1.1 christos break;
8003 1.1 christos };
8004 1.1 christos break;
8005 1.1 christos /* netbsd32_extattr_list_link */
8006 1.1 christos case 372:
8007 1.1 christos switch(ndx) {
8008 1.1 christos case 0:
8009 1.1 christos p = "netbsd32_charp";
8010 1.1 christos break;
8011 1.1 christos case 1:
8012 1.1 christos p = "int";
8013 1.1 christos break;
8014 1.1 christos case 2:
8015 1.1 christos p = "netbsd32_voidp";
8016 1.1 christos break;
8017 1.1 christos case 3:
8018 1.1 christos p = "netbsd32_size_t";
8019 1.1 christos break;
8020 1.1 christos default:
8021 1.1 christos break;
8022 1.1 christos };
8023 1.1 christos break;
8024 1.1 christos /* netbsd32_pselect */
8025 1.1 christos case 373:
8026 1.1 christos switch(ndx) {
8027 1.1 christos case 0:
8028 1.1 christos p = "int";
8029 1.1 christos break;
8030 1.1 christos case 1:
8031 1.1 christos p = "netbsd32_fd_setp_t";
8032 1.1 christos break;
8033 1.1 christos case 2:
8034 1.1 christos p = "netbsd32_fd_setp_t";
8035 1.1 christos break;
8036 1.1 christos case 3:
8037 1.1 christos p = "netbsd32_fd_setp_t";
8038 1.1 christos break;
8039 1.1 christos case 4:
8040 1.1 christos p = "netbsd32_timespec50p_t";
8041 1.1 christos break;
8042 1.1 christos case 5:
8043 1.1 christos p = "netbsd32_sigsetp_t";
8044 1.1 christos break;
8045 1.1 christos default:
8046 1.1 christos break;
8047 1.1 christos };
8048 1.1 christos break;
8049 1.1 christos /* netbsd32_pollts */
8050 1.1 christos case 374:
8051 1.1 christos switch(ndx) {
8052 1.1 christos case 0:
8053 1.1 christos p = "netbsd32_pollfdp_t";
8054 1.1 christos break;
8055 1.1 christos case 1:
8056 1.1 christos p = "u_int";
8057 1.1 christos break;
8058 1.1 christos case 2:
8059 1.1 christos p = "netbsd32_timespec50p_t";
8060 1.1 christos break;
8061 1.1 christos case 3:
8062 1.1 christos p = "netbsd32_sigsetp_t";
8063 1.1 christos break;
8064 1.1 christos default:
8065 1.1 christos break;
8066 1.1 christos };
8067 1.1 christos break;
8068 1.1 christos /* netbsd32_setxattr */
8069 1.1 christos case 375:
8070 1.1 christos switch(ndx) {
8071 1.1 christos case 0:
8072 1.1 christos p = "netbsd32_charp";
8073 1.1 christos break;
8074 1.1 christos case 1:
8075 1.1 christos p = "netbsd32_charp";
8076 1.1 christos break;
8077 1.1 christos case 2:
8078 1.1 christos p = "netbsd32_voidp";
8079 1.1 christos break;
8080 1.1 christos case 3:
8081 1.1 christos p = "netbsd32_size_t";
8082 1.1 christos break;
8083 1.1 christos case 4:
8084 1.1 christos p = "int";
8085 1.1 christos break;
8086 1.1 christos default:
8087 1.1 christos break;
8088 1.1 christos };
8089 1.1 christos break;
8090 1.1 christos /* netbsd32_lsetxattr */
8091 1.1 christos case 376:
8092 1.1 christos switch(ndx) {
8093 1.1 christos case 0:
8094 1.1 christos p = "netbsd32_charp";
8095 1.1 christos break;
8096 1.1 christos case 1:
8097 1.1 christos p = "netbsd32_charp";
8098 1.1 christos break;
8099 1.1 christos case 2:
8100 1.1 christos p = "netbsd32_voidp";
8101 1.1 christos break;
8102 1.1 christos case 3:
8103 1.1 christos p = "netbsd32_size_t";
8104 1.1 christos break;
8105 1.1 christos case 4:
8106 1.1 christos p = "int";
8107 1.1 christos break;
8108 1.1 christos default:
8109 1.1 christos break;
8110 1.1 christos };
8111 1.1 christos break;
8112 1.1 christos /* netbsd32_fsetxattr */
8113 1.1 christos case 377:
8114 1.1 christos switch(ndx) {
8115 1.1 christos case 0:
8116 1.1 christos p = "int";
8117 1.1 christos break;
8118 1.1 christos case 1:
8119 1.1 christos p = "netbsd32_charp";
8120 1.1 christos break;
8121 1.1 christos case 2:
8122 1.1 christos p = "netbsd32_voidp";
8123 1.1 christos break;
8124 1.1 christos case 3:
8125 1.1 christos p = "netbsd32_size_t";
8126 1.1 christos break;
8127 1.1 christos case 4:
8128 1.1 christos p = "int";
8129 1.1 christos break;
8130 1.1 christos default:
8131 1.1 christos break;
8132 1.1 christos };
8133 1.1 christos break;
8134 1.1 christos /* netbsd32_getxattr */
8135 1.1 christos case 378:
8136 1.1 christos switch(ndx) {
8137 1.1 christos case 0:
8138 1.1 christos p = "netbsd32_charp";
8139 1.1 christos break;
8140 1.1 christos case 1:
8141 1.1 christos p = "netbsd32_charp";
8142 1.1 christos break;
8143 1.1 christos case 2:
8144 1.1 christos p = "netbsd32_voidp";
8145 1.1 christos break;
8146 1.1 christos case 3:
8147 1.1 christos p = "netbsd32_size_t";
8148 1.1 christos break;
8149 1.1 christos default:
8150 1.1 christos break;
8151 1.1 christos };
8152 1.1 christos break;
8153 1.1 christos /* netbsd32_lgetxattr */
8154 1.1 christos case 379:
8155 1.1 christos switch(ndx) {
8156 1.1 christos case 0:
8157 1.1 christos p = "netbsd32_charp";
8158 1.1 christos break;
8159 1.1 christos case 1:
8160 1.1 christos p = "netbsd32_charp";
8161 1.1 christos break;
8162 1.1 christos case 2:
8163 1.1 christos p = "netbsd32_voidp";
8164 1.1 christos break;
8165 1.1 christos case 3:
8166 1.1 christos p = "netbsd32_size_t";
8167 1.1 christos break;
8168 1.1 christos default:
8169 1.1 christos break;
8170 1.1 christos };
8171 1.1 christos break;
8172 1.1 christos /* netbsd32_fgetxattr */
8173 1.1 christos case 380:
8174 1.1 christos switch(ndx) {
8175 1.1 christos case 0:
8176 1.1 christos p = "int";
8177 1.1 christos break;
8178 1.1 christos case 1:
8179 1.1 christos p = "netbsd32_charp";
8180 1.1 christos break;
8181 1.1 christos case 2:
8182 1.1 christos p = "netbsd32_voidp";
8183 1.1 christos break;
8184 1.1 christos case 3:
8185 1.1 christos p = "netbsd32_size_t";
8186 1.1 christos break;
8187 1.1 christos default:
8188 1.1 christos break;
8189 1.1 christos };
8190 1.1 christos break;
8191 1.1 christos /* netbsd32_listxattr */
8192 1.1 christos case 381:
8193 1.1 christos switch(ndx) {
8194 1.1 christos case 0:
8195 1.1 christos p = "netbsd32_charp";
8196 1.1 christos break;
8197 1.1 christos case 1:
8198 1.1 christos p = "netbsd32_charp";
8199 1.1 christos break;
8200 1.1 christos case 2:
8201 1.1 christos p = "netbsd32_size_t";
8202 1.1 christos break;
8203 1.1 christos default:
8204 1.1 christos break;
8205 1.1 christos };
8206 1.1 christos break;
8207 1.1 christos /* netbsd32_llistxattr */
8208 1.1 christos case 382:
8209 1.1 christos switch(ndx) {
8210 1.1 christos case 0:
8211 1.1 christos p = "netbsd32_charp";
8212 1.1 christos break;
8213 1.1 christos case 1:
8214 1.1 christos p = "netbsd32_charp";
8215 1.1 christos break;
8216 1.1 christos case 2:
8217 1.1 christos p = "netbsd32_size_t";
8218 1.1 christos break;
8219 1.1 christos default:
8220 1.1 christos break;
8221 1.1 christos };
8222 1.1 christos break;
8223 1.1 christos /* netbsd32_flistxattr */
8224 1.1 christos case 383:
8225 1.1 christos switch(ndx) {
8226 1.1 christos case 0:
8227 1.1 christos p = "int";
8228 1.1 christos break;
8229 1.1 christos case 1:
8230 1.1 christos p = "netbsd32_charp";
8231 1.1 christos break;
8232 1.1 christos case 2:
8233 1.1 christos p = "netbsd32_size_t";
8234 1.1 christos break;
8235 1.1 christos default:
8236 1.1 christos break;
8237 1.1 christos };
8238 1.1 christos break;
8239 1.1 christos /* netbsd32_removexattr */
8240 1.1 christos case 384:
8241 1.1 christos switch(ndx) {
8242 1.1 christos case 0:
8243 1.1 christos p = "netbsd32_charp";
8244 1.1 christos break;
8245 1.1 christos case 1:
8246 1.1 christos p = "netbsd32_charp";
8247 1.1 christos break;
8248 1.1 christos default:
8249 1.1 christos break;
8250 1.1 christos };
8251 1.1 christos break;
8252 1.1 christos /* netbsd32_lremovexattr */
8253 1.1 christos case 385:
8254 1.1 christos switch(ndx) {
8255 1.1 christos case 0:
8256 1.1 christos p = "netbsd32_charp";
8257 1.1 christos break;
8258 1.1 christos case 1:
8259 1.1 christos p = "netbsd32_charp";
8260 1.1 christos break;
8261 1.1 christos default:
8262 1.1 christos break;
8263 1.1 christos };
8264 1.1 christos break;
8265 1.1 christos /* netbsd32_fremovexattr */
8266 1.1 christos case 386:
8267 1.1 christos switch(ndx) {
8268 1.1 christos case 0:
8269 1.1 christos p = "int";
8270 1.1 christos break;
8271 1.1 christos case 1:
8272 1.1 christos p = "netbsd32_charp";
8273 1.1 christos break;
8274 1.1 christos default:
8275 1.1 christos break;
8276 1.1 christos };
8277 1.1 christos break;
8278 1.1 christos /* netbsd32___stat30 */
8279 1.1 christos case 387:
8280 1.1 christos switch(ndx) {
8281 1.1 christos case 0:
8282 1.1 christos p = "netbsd32_charp";
8283 1.1 christos break;
8284 1.1 christos case 1:
8285 1.1 christos p = "netbsd32_stat50p_t";
8286 1.1 christos break;
8287 1.1 christos default:
8288 1.1 christos break;
8289 1.1 christos };
8290 1.1 christos break;
8291 1.1 christos /* netbsd32___fstat30 */
8292 1.1 christos case 388:
8293 1.1 christos switch(ndx) {
8294 1.1 christos case 0:
8295 1.1 christos p = "int";
8296 1.1 christos break;
8297 1.1 christos case 1:
8298 1.1 christos p = "netbsd32_stat50p_t";
8299 1.1 christos break;
8300 1.1 christos default:
8301 1.1 christos break;
8302 1.1 christos };
8303 1.1 christos break;
8304 1.1 christos /* netbsd32___lstat30 */
8305 1.1 christos case 389:
8306 1.1 christos switch(ndx) {
8307 1.1 christos case 0:
8308 1.1 christos p = "netbsd32_charp";
8309 1.1 christos break;
8310 1.1 christos case 1:
8311 1.1 christos p = "netbsd32_stat50p_t";
8312 1.1 christos break;
8313 1.1 christos default:
8314 1.1 christos break;
8315 1.1 christos };
8316 1.1 christos break;
8317 1.1 christos /* netbsd32___getdents30 */
8318 1.1 christos case 390:
8319 1.1 christos switch(ndx) {
8320 1.1 christos case 0:
8321 1.1 christos p = "int";
8322 1.1 christos break;
8323 1.1 christos case 1:
8324 1.1 christos p = "netbsd32_charp";
8325 1.1 christos break;
8326 1.1 christos case 2:
8327 1.1 christos p = "netbsd32_size_t";
8328 1.1 christos break;
8329 1.1 christos default:
8330 1.1 christos break;
8331 1.1 christos };
8332 1.1 christos break;
8333 1.1 christos /* netbsd32___fhstat30 */
8334 1.1 christos case 392:
8335 1.1 christos switch(ndx) {
8336 1.1 christos case 0:
8337 1.1 christos p = "netbsd32_fhandlep_t";
8338 1.1 christos break;
8339 1.1 christos case 1:
8340 1.1 christos p = "netbsd32_stat50p_t";
8341 1.1 christos break;
8342 1.1 christos default:
8343 1.1 christos break;
8344 1.1 christos };
8345 1.1 christos break;
8346 1.1 christos /* netbsd32_ntp_gettime */
8347 1.1 christos case 393:
8348 1.1 christos switch(ndx) {
8349 1.1 christos case 0:
8350 1.1 christos p = "netbsd32_ntptimeval50p_t";
8351 1.1 christos break;
8352 1.1 christos default:
8353 1.1 christos break;
8354 1.1 christos };
8355 1.1 christos break;
8356 1.1 christos /* netbsd32___socket30 */
8357 1.1 christos case 394:
8358 1.1 christos switch(ndx) {
8359 1.1 christos case 0:
8360 1.1 christos p = "int";
8361 1.1 christos break;
8362 1.1 christos case 1:
8363 1.1 christos p = "int";
8364 1.1 christos break;
8365 1.1 christos case 2:
8366 1.1 christos p = "int";
8367 1.1 christos break;
8368 1.1 christos default:
8369 1.1 christos break;
8370 1.1 christos };
8371 1.1 christos break;
8372 1.1 christos /* netbsd32___getfh30 */
8373 1.1 christos case 395:
8374 1.1 christos switch(ndx) {
8375 1.1 christos case 0:
8376 1.1 christos p = "netbsd32_charp";
8377 1.1 christos break;
8378 1.1 christos case 1:
8379 1.1 christos p = "netbsd32_pointer_t";
8380 1.1 christos break;
8381 1.1 christos case 2:
8382 1.1 christos p = "netbsd32_size_tp";
8383 1.1 christos break;
8384 1.1 christos default:
8385 1.1 christos break;
8386 1.1 christos };
8387 1.1 christos break;
8388 1.1 christos /* netbsd32___fhopen40 */
8389 1.1 christos case 396:
8390 1.1 christos switch(ndx) {
8391 1.1 christos case 0:
8392 1.1 christos p = "netbsd32_pointer_t";
8393 1.1 christos break;
8394 1.1 christos case 1:
8395 1.1 christos p = "netbsd32_size_t";
8396 1.1 christos break;
8397 1.1 christos case 2:
8398 1.1 christos p = "int";
8399 1.1 christos break;
8400 1.1 christos default:
8401 1.1 christos break;
8402 1.1 christos };
8403 1.1 christos break;
8404 1.33 christos /* netbsd32_fhstatvfs1 */
8405 1.1 christos case 397:
8406 1.1 christos switch(ndx) {
8407 1.1 christos case 0:
8408 1.1 christos p = "netbsd32_pointer_t";
8409 1.1 christos break;
8410 1.1 christos case 1:
8411 1.1 christos p = "netbsd32_size_t";
8412 1.1 christos break;
8413 1.1 christos case 2:
8414 1.33 christos p = "netbsd32_statvfs90p_t";
8415 1.1 christos break;
8416 1.1 christos case 3:
8417 1.1 christos p = "int";
8418 1.1 christos break;
8419 1.1 christos default:
8420 1.1 christos break;
8421 1.1 christos };
8422 1.1 christos break;
8423 1.1 christos /* netbsd32___fhstat40 */
8424 1.1 christos case 398:
8425 1.1 christos switch(ndx) {
8426 1.1 christos case 0:
8427 1.1 christos p = "netbsd32_pointer_t";
8428 1.1 christos break;
8429 1.1 christos case 1:
8430 1.1 christos p = "netbsd32_size_t";
8431 1.1 christos break;
8432 1.1 christos case 2:
8433 1.1 christos p = "netbsd32_stat50p_t";
8434 1.1 christos break;
8435 1.1 christos default:
8436 1.1 christos break;
8437 1.1 christos };
8438 1.1 christos break;
8439 1.1 christos /* netbsd32___mount50 */
8440 1.1 christos case 410:
8441 1.1 christos switch(ndx) {
8442 1.1 christos case 0:
8443 1.1 christos p = "netbsd32_charp";
8444 1.1 christos break;
8445 1.1 christos case 1:
8446 1.1 christos p = "netbsd32_charp";
8447 1.1 christos break;
8448 1.1 christos case 2:
8449 1.1 christos p = "int";
8450 1.1 christos break;
8451 1.1 christos case 3:
8452 1.1 christos p = "netbsd32_voidp";
8453 1.1 christos break;
8454 1.1 christos case 4:
8455 1.1 christos p = "netbsd32_size_t";
8456 1.1 christos break;
8457 1.1 christos default:
8458 1.1 christos break;
8459 1.1 christos };
8460 1.1 christos break;
8461 1.1 christos /* netbsd32_mremap */
8462 1.1 christos case 411:
8463 1.1 christos switch(ndx) {
8464 1.1 christos case 0:
8465 1.1 christos p = "netbsd32_voidp";
8466 1.1 christos break;
8467 1.1 christos case 1:
8468 1.1 christos p = "netbsd32_size_t";
8469 1.1 christos break;
8470 1.1 christos case 2:
8471 1.1 christos p = "netbsd32_voidp";
8472 1.1 christos break;
8473 1.1 christos case 3:
8474 1.1 christos p = "netbsd32_size_t";
8475 1.1 christos break;
8476 1.1 christos case 4:
8477 1.1 christos p = "int";
8478 1.1 christos break;
8479 1.1 christos default:
8480 1.1 christos break;
8481 1.1 christos };
8482 1.1 christos break;
8483 1.5 martin /* netbsd32_pset_create */
8484 1.5 martin case 412:
8485 1.5 martin switch(ndx) {
8486 1.5 martin case 0:
8487 1.5 martin p = "netbsd32_psetidp_t";
8488 1.5 martin break;
8489 1.5 martin default:
8490 1.5 martin break;
8491 1.5 martin };
8492 1.5 martin break;
8493 1.5 martin /* netbsd32_pset_destroy */
8494 1.5 martin case 413:
8495 1.5 martin switch(ndx) {
8496 1.5 martin case 0:
8497 1.5 martin p = "psetid_t";
8498 1.5 martin break;
8499 1.5 martin default:
8500 1.5 martin break;
8501 1.5 martin };
8502 1.5 martin break;
8503 1.5 martin /* netbsd32_pset_assign */
8504 1.5 martin case 414:
8505 1.5 martin switch(ndx) {
8506 1.5 martin case 0:
8507 1.5 martin p = "psetid_t";
8508 1.5 martin break;
8509 1.5 martin case 1:
8510 1.5 martin p = "cpuid_t";
8511 1.5 martin break;
8512 1.5 martin case 2:
8513 1.5 martin p = "netbsd32_psetidp_t";
8514 1.5 martin break;
8515 1.5 martin default:
8516 1.5 martin break;
8517 1.5 martin };
8518 1.5 martin break;
8519 1.5 martin /* netbsd32__pset_bind */
8520 1.5 martin case 415:
8521 1.5 martin switch(ndx) {
8522 1.5 martin case 0:
8523 1.5 martin p = "idtype_t";
8524 1.5 martin break;
8525 1.5 martin case 1:
8526 1.5 martin p = "id_t";
8527 1.5 martin break;
8528 1.5 martin case 2:
8529 1.5 martin p = "id_t";
8530 1.5 martin break;
8531 1.5 martin case 3:
8532 1.5 martin p = "psetid_t";
8533 1.5 martin break;
8534 1.5 martin case 4:
8535 1.5 martin p = "netbsd32_psetidp_t";
8536 1.5 martin break;
8537 1.5 martin default:
8538 1.5 martin break;
8539 1.5 martin };
8540 1.5 martin break;
8541 1.1 christos /* netbsd32___posix_fadvise50 */
8542 1.1 christos case 416:
8543 1.1 christos switch(ndx) {
8544 1.1 christos case 0:
8545 1.1 christos p = "int";
8546 1.1 christos break;
8547 1.1 christos case 1:
8548 1.1 christos p = "int";
8549 1.1 christos break;
8550 1.1 christos case 2:
8551 1.1 christos p = "netbsd32_off_t";
8552 1.1 christos break;
8553 1.1 christos case 3:
8554 1.1 christos p = "netbsd32_off_t";
8555 1.1 christos break;
8556 1.1 christos case 4:
8557 1.1 christos p = "int";
8558 1.1 christos break;
8559 1.1 christos default:
8560 1.1 christos break;
8561 1.1 christos };
8562 1.1 christos break;
8563 1.1 christos /* netbsd32___select50 */
8564 1.1 christos case 417:
8565 1.1 christos switch(ndx) {
8566 1.1 christos case 0:
8567 1.1 christos p = "int";
8568 1.1 christos break;
8569 1.1 christos case 1:
8570 1.1 christos p = "netbsd32_fd_setp_t";
8571 1.1 christos break;
8572 1.1 christos case 2:
8573 1.1 christos p = "netbsd32_fd_setp_t";
8574 1.1 christos break;
8575 1.1 christos case 3:
8576 1.1 christos p = "netbsd32_fd_setp_t";
8577 1.1 christos break;
8578 1.1 christos case 4:
8579 1.1 christos p = "netbsd32_timevalp_t";
8580 1.1 christos break;
8581 1.1 christos default:
8582 1.1 christos break;
8583 1.1 christos };
8584 1.1 christos break;
8585 1.1 christos /* netbsd32___gettimeofday50 */
8586 1.1 christos case 418:
8587 1.1 christos switch(ndx) {
8588 1.1 christos case 0:
8589 1.1 christos p = "netbsd32_timevalp_t";
8590 1.1 christos break;
8591 1.1 christos case 1:
8592 1.1 christos p = "netbsd32_voidp";
8593 1.1 christos break;
8594 1.1 christos default:
8595 1.1 christos break;
8596 1.1 christos };
8597 1.1 christos break;
8598 1.1 christos /* netbsd32___settimeofday50 */
8599 1.1 christos case 419:
8600 1.1 christos switch(ndx) {
8601 1.1 christos case 0:
8602 1.1 christos p = "const netbsd32_timevalp_t";
8603 1.1 christos break;
8604 1.1 christos case 1:
8605 1.1 christos p = "const netbsd32_voidp";
8606 1.1 christos break;
8607 1.1 christos default:
8608 1.1 christos break;
8609 1.1 christos };
8610 1.1 christos break;
8611 1.1 christos /* netbsd32___utimes50 */
8612 1.1 christos case 420:
8613 1.1 christos switch(ndx) {
8614 1.1 christos case 0:
8615 1.1 christos p = "const netbsd32_charp";
8616 1.1 christos break;
8617 1.1 christos case 1:
8618 1.1 christos p = "const netbsd32_timevalp_t";
8619 1.1 christos break;
8620 1.1 christos default:
8621 1.1 christos break;
8622 1.1 christos };
8623 1.1 christos break;
8624 1.1 christos /* netbsd32___adjtime50 */
8625 1.1 christos case 421:
8626 1.1 christos switch(ndx) {
8627 1.1 christos case 0:
8628 1.1 christos p = "const netbsd32_timevalp_t";
8629 1.1 christos break;
8630 1.1 christos case 1:
8631 1.1 christos p = "netbsd32_timevalp_t";
8632 1.1 christos break;
8633 1.1 christos default:
8634 1.1 christos break;
8635 1.1 christos };
8636 1.1 christos break;
8637 1.1 christos /* netbsd32___futimes50 */
8638 1.1 christos case 423:
8639 1.1 christos switch(ndx) {
8640 1.1 christos case 0:
8641 1.1 christos p = "int";
8642 1.1 christos break;
8643 1.1 christos case 1:
8644 1.1 christos p = "const netbsd32_timevalp_t";
8645 1.1 christos break;
8646 1.1 christos default:
8647 1.1 christos break;
8648 1.1 christos };
8649 1.1 christos break;
8650 1.1 christos /* netbsd32___lutimes50 */
8651 1.1 christos case 424:
8652 1.1 christos switch(ndx) {
8653 1.1 christos case 0:
8654 1.1 christos p = "const netbsd32_charp";
8655 1.1 christos break;
8656 1.1 christos case 1:
8657 1.1 christos p = "const netbsd32_timevalp_t";
8658 1.1 christos break;
8659 1.1 christos default:
8660 1.1 christos break;
8661 1.1 christos };
8662 1.1 christos break;
8663 1.1 christos /* netbsd32___setitimer50 */
8664 1.1 christos case 425:
8665 1.1 christos switch(ndx) {
8666 1.1 christos case 0:
8667 1.1 christos p = "int";
8668 1.1 christos break;
8669 1.1 christos case 1:
8670 1.1 christos p = "const netbsd32_itimervalp_t";
8671 1.1 christos break;
8672 1.1 christos case 2:
8673 1.1 christos p = "netbsd32_itimervalp_t";
8674 1.1 christos break;
8675 1.1 christos default:
8676 1.1 christos break;
8677 1.1 christos };
8678 1.1 christos break;
8679 1.1 christos /* netbsd32___getitimer50 */
8680 1.1 christos case 426:
8681 1.1 christos switch(ndx) {
8682 1.1 christos case 0:
8683 1.1 christos p = "int";
8684 1.1 christos break;
8685 1.1 christos case 1:
8686 1.1 christos p = "netbsd32_itimervalp_t";
8687 1.1 christos break;
8688 1.1 christos default:
8689 1.1 christos break;
8690 1.1 christos };
8691 1.1 christos break;
8692 1.1 christos /* netbsd32___clock_gettime50 */
8693 1.1 christos case 427:
8694 1.1 christos switch(ndx) {
8695 1.1 christos case 0:
8696 1.1 christos p = "clockid_t";
8697 1.1 christos break;
8698 1.1 christos case 1:
8699 1.1 christos p = "netbsd32_timespecp_t";
8700 1.1 christos break;
8701 1.1 christos default:
8702 1.1 christos break;
8703 1.1 christos };
8704 1.1 christos break;
8705 1.1 christos /* netbsd32___clock_settime50 */
8706 1.1 christos case 428:
8707 1.1 christos switch(ndx) {
8708 1.1 christos case 0:
8709 1.1 christos p = "clockid_t";
8710 1.1 christos break;
8711 1.1 christos case 1:
8712 1.1 christos p = "const netbsd32_timespecp_t";
8713 1.1 christos break;
8714 1.1 christos default:
8715 1.1 christos break;
8716 1.1 christos };
8717 1.1 christos break;
8718 1.1 christos /* netbsd32___clock_getres50 */
8719 1.1 christos case 429:
8720 1.1 christos switch(ndx) {
8721 1.1 christos case 0:
8722 1.1 christos p = "clockid_t";
8723 1.1 christos break;
8724 1.1 christos case 1:
8725 1.1 christos p = "netbsd32_timespecp_t";
8726 1.1 christos break;
8727 1.1 christos default:
8728 1.1 christos break;
8729 1.1 christos };
8730 1.1 christos break;
8731 1.1 christos /* netbsd32___nanosleep50 */
8732 1.1 christos case 430:
8733 1.1 christos switch(ndx) {
8734 1.1 christos case 0:
8735 1.1 christos p = "const netbsd32_timespecp_t";
8736 1.1 christos break;
8737 1.1 christos case 1:
8738 1.1 christos p = "netbsd32_timespecp_t";
8739 1.1 christos break;
8740 1.1 christos default:
8741 1.1 christos break;
8742 1.1 christos };
8743 1.1 christos break;
8744 1.1 christos /* netbsd32_____sigtimedwait50 */
8745 1.1 christos case 431:
8746 1.1 christos switch(ndx) {
8747 1.1 christos case 0:
8748 1.1 christos p = "const netbsd32_sigsetp_t";
8749 1.1 christos break;
8750 1.1 christos case 1:
8751 1.1 christos p = "netbsd32_siginfop_t";
8752 1.1 christos break;
8753 1.1 christos case 2:
8754 1.1 christos p = "netbsd32_timespecp_t";
8755 1.1 christos break;
8756 1.1 christos default:
8757 1.1 christos break;
8758 1.1 christos };
8759 1.1 christos break;
8760 1.4 martin /* netbsd32___mq_timedsend50 */
8761 1.4 martin case 432:
8762 1.4 martin switch(ndx) {
8763 1.4 martin case 0:
8764 1.4 martin p = "mqd_t";
8765 1.4 martin break;
8766 1.4 martin case 1:
8767 1.4 martin p = "const netbsd32_charp";
8768 1.4 martin break;
8769 1.4 martin case 2:
8770 1.4 martin p = "netbsd32_size_t";
8771 1.4 martin break;
8772 1.4 martin case 3:
8773 1.4 martin p = "unsigned";
8774 1.4 martin break;
8775 1.4 martin case 4:
8776 1.4 martin p = "const netbsd32_timespecp_t";
8777 1.4 martin break;
8778 1.4 martin default:
8779 1.4 martin break;
8780 1.4 martin };
8781 1.4 martin break;
8782 1.4 martin /* netbsd32___mq_timedreceive50 */
8783 1.4 martin case 433:
8784 1.4 martin switch(ndx) {
8785 1.4 martin case 0:
8786 1.4 martin p = "mqd_t";
8787 1.4 martin break;
8788 1.4 martin case 1:
8789 1.4 martin p = "netbsd32_charp";
8790 1.4 martin break;
8791 1.4 martin case 2:
8792 1.4 martin p = "netbsd32_size_t";
8793 1.4 martin break;
8794 1.4 martin case 3:
8795 1.4 martin p = "netbsd32_uintp";
8796 1.4 martin break;
8797 1.4 martin case 4:
8798 1.4 martin p = "const netbsd32_timespecp_t";
8799 1.4 martin break;
8800 1.4 martin default:
8801 1.4 martin break;
8802 1.4 martin };
8803 1.4 martin break;
8804 1.1 christos /* netbsd32__lwp_park */
8805 1.1 christos case 434:
8806 1.1 christos switch(ndx) {
8807 1.1 christos case 0:
8808 1.1 christos p = "const netbsd32_timespecp_t";
8809 1.1 christos break;
8810 1.1 christos case 1:
8811 1.1 christos p = "lwpid_t";
8812 1.1 christos break;
8813 1.1 christos case 2:
8814 1.1 christos p = "const netbsd32_voidp";
8815 1.1 christos break;
8816 1.1 christos case 3:
8817 1.1 christos p = "const netbsd32_voidp";
8818 1.1 christos break;
8819 1.1 christos default:
8820 1.1 christos break;
8821 1.1 christos };
8822 1.1 christos break;
8823 1.1 christos /* netbsd32___kevent50 */
8824 1.1 christos case 435:
8825 1.1 christos switch(ndx) {
8826 1.1 christos case 0:
8827 1.1 christos p = "int";
8828 1.1 christos break;
8829 1.1 christos case 1:
8830 1.1 christos p = "const netbsd32_keventp_t";
8831 1.1 christos break;
8832 1.1 christos case 2:
8833 1.1 christos p = "netbsd32_size_t";
8834 1.1 christos break;
8835 1.1 christos case 3:
8836 1.1 christos p = "netbsd32_keventp_t";
8837 1.1 christos break;
8838 1.1 christos case 4:
8839 1.1 christos p = "netbsd32_size_t";
8840 1.1 christos break;
8841 1.1 christos case 5:
8842 1.1 christos p = "const netbsd32_timespecp_t";
8843 1.1 christos break;
8844 1.1 christos default:
8845 1.1 christos break;
8846 1.1 christos };
8847 1.1 christos break;
8848 1.1 christos /* netbsd32___pselect50 */
8849 1.1 christos case 436:
8850 1.1 christos switch(ndx) {
8851 1.1 christos case 0:
8852 1.1 christos p = "int";
8853 1.1 christos break;
8854 1.1 christos case 1:
8855 1.1 christos p = "netbsd32_fd_setp_t";
8856 1.1 christos break;
8857 1.1 christos case 2:
8858 1.1 christos p = "netbsd32_fd_setp_t";
8859 1.1 christos break;
8860 1.1 christos case 3:
8861 1.1 christos p = "netbsd32_fd_setp_t";
8862 1.1 christos break;
8863 1.1 christos case 4:
8864 1.1 christos p = "const netbsd32_timespecp_t";
8865 1.1 christos break;
8866 1.1 christos case 5:
8867 1.1 christos p = "const netbsd32_sigsetp_t";
8868 1.1 christos break;
8869 1.1 christos default:
8870 1.1 christos break;
8871 1.1 christos };
8872 1.1 christos break;
8873 1.1 christos /* netbsd32___pollts50 */
8874 1.1 christos case 437:
8875 1.1 christos switch(ndx) {
8876 1.1 christos case 0:
8877 1.1 christos p = "netbsd32_pollfdp_t";
8878 1.1 christos break;
8879 1.1 christos case 1:
8880 1.1 christos p = "u_int";
8881 1.1 christos break;
8882 1.1 christos case 2:
8883 1.1 christos p = "const netbsd32_timespecp_t";
8884 1.1 christos break;
8885 1.1 christos case 3:
8886 1.1 christos p = "const netbsd32_sigsetp_t";
8887 1.1 christos break;
8888 1.1 christos default:
8889 1.1 christos break;
8890 1.1 christos };
8891 1.1 christos break;
8892 1.1 christos /* netbsd32___stat50 */
8893 1.1 christos case 439:
8894 1.1 christos switch(ndx) {
8895 1.1 christos case 0:
8896 1.1 christos p = "const netbsd32_charp";
8897 1.1 christos break;
8898 1.1 christos case 1:
8899 1.1 christos p = "netbsd32_statp_t";
8900 1.1 christos break;
8901 1.1 christos default:
8902 1.1 christos break;
8903 1.1 christos };
8904 1.1 christos break;
8905 1.1 christos /* netbsd32___fstat50 */
8906 1.1 christos case 440:
8907 1.1 christos switch(ndx) {
8908 1.1 christos case 0:
8909 1.1 christos p = "int";
8910 1.1 christos break;
8911 1.1 christos case 1:
8912 1.1 christos p = "netbsd32_statp_t";
8913 1.1 christos break;
8914 1.1 christos default:
8915 1.1 christos break;
8916 1.1 christos };
8917 1.1 christos break;
8918 1.1 christos /* netbsd32___lstat50 */
8919 1.1 christos case 441:
8920 1.1 christos switch(ndx) {
8921 1.1 christos case 0:
8922 1.1 christos p = "const netbsd32_charp";
8923 1.1 christos break;
8924 1.1 christos case 1:
8925 1.1 christos p = "netbsd32_statp_t";
8926 1.1 christos break;
8927 1.1 christos default:
8928 1.1 christos break;
8929 1.1 christos };
8930 1.1 christos break;
8931 1.1 christos /* netbsd32_____semctl50 */
8932 1.1 christos case 442:
8933 1.1 christos switch(ndx) {
8934 1.1 christos case 0:
8935 1.1 christos p = "int";
8936 1.1 christos break;
8937 1.1 christos case 1:
8938 1.1 christos p = "int";
8939 1.1 christos break;
8940 1.1 christos case 2:
8941 1.1 christos p = "int";
8942 1.1 christos break;
8943 1.1 christos case 3:
8944 1.1 christos p = "netbsd32_semunp_t";
8945 1.1 christos break;
8946 1.1 christos default:
8947 1.1 christos break;
8948 1.1 christos };
8949 1.1 christos break;
8950 1.1 christos /* netbsd32___shmctl50 */
8951 1.1 christos case 443:
8952 1.1 christos switch(ndx) {
8953 1.1 christos case 0:
8954 1.1 christos p = "int";
8955 1.1 christos break;
8956 1.1 christos case 1:
8957 1.1 christos p = "int";
8958 1.1 christos break;
8959 1.1 christos case 2:
8960 1.1 christos p = "netbsd32_shmid_dsp_t";
8961 1.1 christos break;
8962 1.1 christos default:
8963 1.1 christos break;
8964 1.1 christos };
8965 1.1 christos break;
8966 1.1 christos /* netbsd32___msgctl50 */
8967 1.1 christos case 444:
8968 1.1 christos switch(ndx) {
8969 1.1 christos case 0:
8970 1.1 christos p = "int";
8971 1.1 christos break;
8972 1.1 christos case 1:
8973 1.1 christos p = "int";
8974 1.1 christos break;
8975 1.1 christos case 2:
8976 1.1 christos p = "netbsd32_msqid_dsp_t";
8977 1.1 christos break;
8978 1.1 christos default:
8979 1.1 christos break;
8980 1.1 christos };
8981 1.1 christos break;
8982 1.1 christos /* netbsd32___getrusage50 */
8983 1.1 christos case 445:
8984 1.1 christos switch(ndx) {
8985 1.1 christos case 0:
8986 1.1 christos p = "int";
8987 1.1 christos break;
8988 1.1 christos case 1:
8989 1.1 christos p = "netbsd32_rusagep_t";
8990 1.1 christos break;
8991 1.1 christos default:
8992 1.1 christos break;
8993 1.1 christos };
8994 1.1 christos break;
8995 1.1 christos /* netbsd32___timer_settime50 */
8996 1.1 christos case 446:
8997 1.1 christos switch(ndx) {
8998 1.1 christos case 0:
8999 1.1 christos p = "timer_t";
9000 1.1 christos break;
9001 1.1 christos case 1:
9002 1.1 christos p = "int";
9003 1.1 christos break;
9004 1.1 christos case 2:
9005 1.1 christos p = "const netbsd32_itimerspecp_t";
9006 1.1 christos break;
9007 1.1 christos case 3:
9008 1.1 christos p = "netbsd32_itimerspecp_t";
9009 1.1 christos break;
9010 1.1 christos default:
9011 1.1 christos break;
9012 1.1 christos };
9013 1.1 christos break;
9014 1.1 christos /* netbsd32___timer_gettime50 */
9015 1.1 christos case 447:
9016 1.1 christos switch(ndx) {
9017 1.1 christos case 0:
9018 1.1 christos p = "timer_t";
9019 1.1 christos break;
9020 1.1 christos case 1:
9021 1.1 christos p = "netbsd32_itimerspecp_t";
9022 1.1 christos break;
9023 1.1 christos default:
9024 1.1 christos break;
9025 1.1 christos };
9026 1.1 christos break;
9027 1.1 christos #if defined(NTP) || !defined(_KERNEL_OPT)
9028 1.1 christos /* netbsd32___ntp_gettime50 */
9029 1.1 christos case 448:
9030 1.1 christos switch(ndx) {
9031 1.1 christos case 0:
9032 1.1 christos p = "netbsd32_ntptimevalp_t";
9033 1.1 christos break;
9034 1.1 christos default:
9035 1.1 christos break;
9036 1.1 christos };
9037 1.1 christos break;
9038 1.1 christos #else
9039 1.1 christos #endif
9040 1.1 christos /* netbsd32___wait450 */
9041 1.1 christos case 449:
9042 1.1 christos switch(ndx) {
9043 1.1 christos case 0:
9044 1.1 christos p = "int";
9045 1.1 christos break;
9046 1.1 christos case 1:
9047 1.1 christos p = "netbsd32_intp";
9048 1.1 christos break;
9049 1.1 christos case 2:
9050 1.1 christos p = "int";
9051 1.1 christos break;
9052 1.1 christos case 3:
9053 1.1 christos p = "netbsd32_rusagep_t";
9054 1.1 christos break;
9055 1.1 christos default:
9056 1.1 christos break;
9057 1.1 christos };
9058 1.1 christos break;
9059 1.1 christos /* netbsd32___mknod50 */
9060 1.1 christos case 450:
9061 1.1 christos switch(ndx) {
9062 1.1 christos case 0:
9063 1.1 christos p = "const netbsd32_charp";
9064 1.1 christos break;
9065 1.1 christos case 1:
9066 1.1 christos p = "mode_t";
9067 1.1 christos break;
9068 1.1 christos case 2:
9069 1.1 christos p = "netbsd32_dev_t";
9070 1.1 christos break;
9071 1.1 christos default:
9072 1.1 christos break;
9073 1.1 christos };
9074 1.1 christos break;
9075 1.1 christos /* netbsd32___fhstat50 */
9076 1.1 christos case 451:
9077 1.1 christos switch(ndx) {
9078 1.1 christos case 0:
9079 1.1 christos p = "const netbsd32_voidp";
9080 1.1 christos break;
9081 1.1 christos case 1:
9082 1.1 christos p = "netbsd32_size_t";
9083 1.1 christos break;
9084 1.1 christos case 2:
9085 1.1 christos p = "netbsd32_statp_t";
9086 1.1 christos break;
9087 1.1 christos default:
9088 1.1 christos break;
9089 1.1 christos };
9090 1.1 christos break;
9091 1.1 christos /* netbsd32_pipe2 */
9092 1.1 christos case 453:
9093 1.1 christos switch(ndx) {
9094 1.1 christos case 0:
9095 1.1 christos p = "netbsd32_intp";
9096 1.1 christos break;
9097 1.1 christos case 1:
9098 1.1 christos p = "int";
9099 1.1 christos break;
9100 1.1 christos default:
9101 1.1 christos break;
9102 1.1 christos };
9103 1.1 christos break;
9104 1.1 christos /* netbsd32_dup3 */
9105 1.1 christos case 454:
9106 1.1 christos switch(ndx) {
9107 1.1 christos case 0:
9108 1.1 christos p = "int";
9109 1.1 christos break;
9110 1.1 christos case 1:
9111 1.1 christos p = "int";
9112 1.1 christos break;
9113 1.1 christos case 2:
9114 1.1 christos p = "int";
9115 1.1 christos break;
9116 1.1 christos default:
9117 1.1 christos break;
9118 1.1 christos };
9119 1.1 christos break;
9120 1.1 christos /* netbsd32_kqueue1 */
9121 1.1 christos case 455:
9122 1.1 christos switch(ndx) {
9123 1.1 christos case 0:
9124 1.1 christos p = "int";
9125 1.1 christos break;
9126 1.1 christos default:
9127 1.1 christos break;
9128 1.1 christos };
9129 1.1 christos break;
9130 1.1 christos /* netbsd32_paccept */
9131 1.1 christos case 456:
9132 1.1 christos switch(ndx) {
9133 1.1 christos case 0:
9134 1.1 christos p = "int";
9135 1.1 christos break;
9136 1.1 christos case 1:
9137 1.1 christos p = "netbsd32_sockaddrp_t";
9138 1.1 christos break;
9139 1.1 christos case 2:
9140 1.1 christos p = "netbsd32_socklenp_t";
9141 1.1 christos break;
9142 1.1 christos case 3:
9143 1.1 christos p = "const netbsd32_sigsetp_t";
9144 1.1 christos break;
9145 1.1 christos case 4:
9146 1.1 christos p = "int";
9147 1.1 christos break;
9148 1.1 christos default:
9149 1.1 christos break;
9150 1.1 christos };
9151 1.1 christos break;
9152 1.1 christos /* netbsd32_linkat */
9153 1.1 christos case 457:
9154 1.1 christos switch(ndx) {
9155 1.1 christos case 0:
9156 1.1 christos p = "int";
9157 1.1 christos break;
9158 1.1 christos case 1:
9159 1.1 christos p = "const netbsd32_charp";
9160 1.1 christos break;
9161 1.1 christos case 2:
9162 1.1 christos p = "int";
9163 1.1 christos break;
9164 1.1 christos case 3:
9165 1.1 christos p = "const netbsd32_charp";
9166 1.1 christos break;
9167 1.1 christos case 4:
9168 1.1 christos p = "int";
9169 1.1 christos break;
9170 1.1 christos default:
9171 1.1 christos break;
9172 1.1 christos };
9173 1.1 christos break;
9174 1.1 christos /* netbsd32_renameat */
9175 1.1 christos case 458:
9176 1.1 christos switch(ndx) {
9177 1.1 christos case 0:
9178 1.1 christos p = "int";
9179 1.1 christos break;
9180 1.1 christos case 1:
9181 1.1 christos p = "const netbsd32_charp";
9182 1.1 christos break;
9183 1.1 christos case 2:
9184 1.1 christos p = "int";
9185 1.1 christos break;
9186 1.1 christos case 3:
9187 1.1 christos p = "const netbsd32_charp";
9188 1.1 christos break;
9189 1.1 christos default:
9190 1.1 christos break;
9191 1.1 christos };
9192 1.1 christos break;
9193 1.1 christos /* netbsd32_mkfifoat */
9194 1.1 christos case 459:
9195 1.1 christos switch(ndx) {
9196 1.1 christos case 0:
9197 1.1 christos p = "int";
9198 1.1 christos break;
9199 1.1 christos case 1:
9200 1.1 christos p = "const netbsd32_charp";
9201 1.1 christos break;
9202 1.1 christos case 2:
9203 1.1 christos p = "mode_t";
9204 1.1 christos break;
9205 1.1 christos default:
9206 1.1 christos break;
9207 1.1 christos };
9208 1.1 christos break;
9209 1.1 christos /* netbsd32_mknodat */
9210 1.1 christos case 460:
9211 1.1 christos switch(ndx) {
9212 1.1 christos case 0:
9213 1.1 christos p = "int";
9214 1.1 christos break;
9215 1.1 christos case 1:
9216 1.1 christos p = "const netbsd32_charp";
9217 1.1 christos break;
9218 1.1 christos case 2:
9219 1.1 christos p = "mode_t";
9220 1.1 christos break;
9221 1.1 christos case 3:
9222 1.1 christos p = "int";
9223 1.1 christos break;
9224 1.1 christos case 4:
9225 1.1 christos p = "netbsd32_dev_t";
9226 1.1 christos break;
9227 1.1 christos default:
9228 1.1 christos break;
9229 1.1 christos };
9230 1.1 christos break;
9231 1.1 christos /* netbsd32_mkdirat */
9232 1.1 christos case 461:
9233 1.1 christos switch(ndx) {
9234 1.1 christos case 0:
9235 1.1 christos p = "int";
9236 1.1 christos break;
9237 1.1 christos case 1:
9238 1.1 christos p = "const netbsd32_charp";
9239 1.1 christos break;
9240 1.1 christos case 2:
9241 1.1 christos p = "mode_t";
9242 1.1 christos break;
9243 1.1 christos default:
9244 1.1 christos break;
9245 1.1 christos };
9246 1.1 christos break;
9247 1.1 christos /* netbsd32_faccessat */
9248 1.1 christos case 462:
9249 1.1 christos switch(ndx) {
9250 1.1 christos case 0:
9251 1.1 christos p = "int";
9252 1.1 christos break;
9253 1.1 christos case 1:
9254 1.1 christos p = "const netbsd32_charp";
9255 1.1 christos break;
9256 1.1 christos case 2:
9257 1.1 christos p = "int";
9258 1.1 christos break;
9259 1.1 christos case 3:
9260 1.1 christos p = "int";
9261 1.1 christos break;
9262 1.1 christos default:
9263 1.1 christos break;
9264 1.1 christos };
9265 1.1 christos break;
9266 1.1 christos /* netbsd32_fchmodat */
9267 1.1 christos case 463:
9268 1.1 christos switch(ndx) {
9269 1.1 christos case 0:
9270 1.1 christos p = "int";
9271 1.1 christos break;
9272 1.1 christos case 1:
9273 1.1 christos p = "const netbsd32_charp";
9274 1.1 christos break;
9275 1.1 christos case 2:
9276 1.1 christos p = "mode_t";
9277 1.1 christos break;
9278 1.1 christos case 3:
9279 1.1 christos p = "int";
9280 1.1 christos break;
9281 1.1 christos default:
9282 1.1 christos break;
9283 1.1 christos };
9284 1.1 christos break;
9285 1.1 christos /* netbsd32_fchownat */
9286 1.1 christos case 464:
9287 1.1 christos switch(ndx) {
9288 1.1 christos case 0:
9289 1.1 christos p = "int";
9290 1.1 christos break;
9291 1.1 christos case 1:
9292 1.1 christos p = "const netbsd32_charp";
9293 1.1 christos break;
9294 1.1 christos case 2:
9295 1.1 christos p = "uid_t";
9296 1.1 christos break;
9297 1.1 christos case 3:
9298 1.1 christos p = "gid_t";
9299 1.1 christos break;
9300 1.1 christos case 4:
9301 1.1 christos p = "int";
9302 1.1 christos break;
9303 1.1 christos default:
9304 1.1 christos break;
9305 1.1 christos };
9306 1.1 christos break;
9307 1.1 christos /* netbsd32_fexecve */
9308 1.1 christos case 465:
9309 1.1 christos switch(ndx) {
9310 1.1 christos case 0:
9311 1.1 christos p = "int";
9312 1.1 christos break;
9313 1.1 christos case 1:
9314 1.1 christos p = "netbsd32_charpp";
9315 1.1 christos break;
9316 1.1 christos case 2:
9317 1.1 christos p = "netbsd32_charpp";
9318 1.1 christos break;
9319 1.1 christos default:
9320 1.1 christos break;
9321 1.1 christos };
9322 1.1 christos break;
9323 1.1 christos /* netbsd32_fstatat */
9324 1.1 christos case 466:
9325 1.1 christos switch(ndx) {
9326 1.1 christos case 0:
9327 1.1 christos p = "int";
9328 1.1 christos break;
9329 1.1 christos case 1:
9330 1.1 christos p = "const netbsd32_charp";
9331 1.1 christos break;
9332 1.1 christos case 2:
9333 1.1 christos p = "netbsd32_statp_t";
9334 1.1 christos break;
9335 1.1 christos case 3:
9336 1.1 christos p = "int";
9337 1.1 christos break;
9338 1.1 christos default:
9339 1.1 christos break;
9340 1.1 christos };
9341 1.1 christos break;
9342 1.1 christos /* netbsd32_utimensat */
9343 1.1 christos case 467:
9344 1.1 christos switch(ndx) {
9345 1.1 christos case 0:
9346 1.1 christos p = "int";
9347 1.1 christos break;
9348 1.1 christos case 1:
9349 1.1 christos p = "const netbsd32_charp";
9350 1.1 christos break;
9351 1.1 christos case 2:
9352 1.1 christos p = "const netbsd32_timespecp_t";
9353 1.1 christos break;
9354 1.1 christos case 3:
9355 1.1 christos p = "int";
9356 1.1 christos break;
9357 1.1 christos default:
9358 1.1 christos break;
9359 1.1 christos };
9360 1.1 christos break;
9361 1.1 christos /* netbsd32_openat */
9362 1.1 christos case 468:
9363 1.1 christos switch(ndx) {
9364 1.1 christos case 0:
9365 1.1 christos p = "int";
9366 1.1 christos break;
9367 1.1 christos case 1:
9368 1.1 christos p = "const netbsd32_charp";
9369 1.1 christos break;
9370 1.1 christos case 2:
9371 1.1 christos p = "int";
9372 1.1 christos break;
9373 1.1 christos case 3:
9374 1.1 christos p = "mode_t";
9375 1.1 christos break;
9376 1.1 christos default:
9377 1.1 christos break;
9378 1.1 christos };
9379 1.1 christos break;
9380 1.1 christos /* netbsd32_readlinkat */
9381 1.1 christos case 469:
9382 1.1 christos switch(ndx) {
9383 1.1 christos case 0:
9384 1.1 christos p = "int";
9385 1.1 christos break;
9386 1.1 christos case 1:
9387 1.1 christos p = "const netbsd32_charp";
9388 1.1 christos break;
9389 1.1 christos case 2:
9390 1.1 christos p = "netbsd32_charp";
9391 1.1 christos break;
9392 1.1 christos case 3:
9393 1.35 rin p = "netbsd32_size_t";
9394 1.1 christos break;
9395 1.1 christos default:
9396 1.1 christos break;
9397 1.1 christos };
9398 1.1 christos break;
9399 1.1 christos /* netbsd32_symlinkat */
9400 1.1 christos case 470:
9401 1.1 christos switch(ndx) {
9402 1.1 christos case 0:
9403 1.1 christos p = "const netbsd32_charp";
9404 1.1 christos break;
9405 1.1 christos case 1:
9406 1.1 christos p = "int";
9407 1.1 christos break;
9408 1.1 christos case 2:
9409 1.1 christos p = "const netbsd32_charp";
9410 1.1 christos break;
9411 1.1 christos default:
9412 1.1 christos break;
9413 1.1 christos };
9414 1.1 christos break;
9415 1.1 christos /* netbsd32_unlinkat */
9416 1.1 christos case 471:
9417 1.1 christos switch(ndx) {
9418 1.1 christos case 0:
9419 1.1 christos p = "int";
9420 1.1 christos break;
9421 1.1 christos case 1:
9422 1.1 christos p = "const netbsd32_charp";
9423 1.1 christos break;
9424 1.1 christos case 2:
9425 1.1 christos p = "int";
9426 1.1 christos break;
9427 1.1 christos default:
9428 1.1 christos break;
9429 1.1 christos };
9430 1.1 christos break;
9431 1.1 christos /* netbsd32_futimens */
9432 1.1 christos case 472:
9433 1.1 christos switch(ndx) {
9434 1.1 christos case 0:
9435 1.1 christos p = "int";
9436 1.1 christos break;
9437 1.1 christos case 1:
9438 1.1 christos p = "const netbsd32_timespecp_t";
9439 1.1 christos break;
9440 1.1 christos default:
9441 1.1 christos break;
9442 1.1 christos };
9443 1.1 christos break;
9444 1.1 christos /* netbsd32___quotactl */
9445 1.1 christos case 473:
9446 1.1 christos switch(ndx) {
9447 1.1 christos case 0:
9448 1.1 christos p = "const netbsd32_charp";
9449 1.1 christos break;
9450 1.1 christos case 1:
9451 1.1 christos p = "netbsd32_voidp";
9452 1.1 christos break;
9453 1.1 christos default:
9454 1.1 christos break;
9455 1.1 christos };
9456 1.1 christos break;
9457 1.1 christos /* netbsd32_posix_spawn */
9458 1.1 christos case 474:
9459 1.1 christos switch(ndx) {
9460 1.1 christos case 0:
9461 1.1 christos p = "netbsd32_pid_tp";
9462 1.1 christos break;
9463 1.1 christos case 1:
9464 1.1 christos p = "const netbsd32_charp";
9465 1.1 christos break;
9466 1.1 christos case 2:
9467 1.1 christos p = "const netbsd32_posix_spawn_file_actionsp";
9468 1.1 christos break;
9469 1.1 christos case 3:
9470 1.1 christos p = "const netbsd32_posix_spawnattrp";
9471 1.1 christos break;
9472 1.1 christos case 4:
9473 1.1 christos p = "netbsd32_charpp";
9474 1.1 christos break;
9475 1.1 christos case 5:
9476 1.1 christos p = "netbsd32_charpp";
9477 1.1 christos break;
9478 1.1 christos default:
9479 1.1 christos break;
9480 1.1 christos };
9481 1.1 christos break;
9482 1.25 christos /* netbsd32_recvmmsg */
9483 1.25 christos case 475:
9484 1.25 christos switch(ndx) {
9485 1.25 christos case 0:
9486 1.25 christos p = "int";
9487 1.25 christos break;
9488 1.25 christos case 1:
9489 1.25 christos p = "netbsd32_mmsghdrp_t";
9490 1.25 christos break;
9491 1.25 christos case 2:
9492 1.25 christos p = "unsigned int";
9493 1.25 christos break;
9494 1.25 christos case 3:
9495 1.25 christos p = "unsigned int";
9496 1.25 christos break;
9497 1.25 christos case 4:
9498 1.25 christos p = "netbsd32_timespecp_t";
9499 1.25 christos break;
9500 1.25 christos default:
9501 1.25 christos break;
9502 1.25 christos };
9503 1.25 christos break;
9504 1.25 christos /* netbsd32_sendmmsg */
9505 1.25 christos case 476:
9506 1.25 christos switch(ndx) {
9507 1.25 christos case 0:
9508 1.25 christos p = "int";
9509 1.25 christos break;
9510 1.25 christos case 1:
9511 1.25 christos p = "netbsd32_mmsghdrp_t";
9512 1.25 christos break;
9513 1.25 christos case 2:
9514 1.25 christos p = "unsigned int";
9515 1.25 christos break;
9516 1.25 christos case 3:
9517 1.25 christos p = "unsigned int";
9518 1.25 christos break;
9519 1.25 christos default:
9520 1.25 christos break;
9521 1.25 christos };
9522 1.25 christos break;
9523 1.1 christos /* netbsd32_clock_nanosleep */
9524 1.1 christos case 477:
9525 1.1 christos switch(ndx) {
9526 1.1 christos case 0:
9527 1.1 christos p = "netbsd32_clockid_t";
9528 1.1 christos break;
9529 1.1 christos case 1:
9530 1.1 christos p = "int";
9531 1.1 christos break;
9532 1.1 christos case 2:
9533 1.1 christos p = "const netbsd32_timespecp_t";
9534 1.1 christos break;
9535 1.1 christos case 3:
9536 1.1 christos p = "netbsd32_timespecp_t";
9537 1.1 christos break;
9538 1.1 christos default:
9539 1.1 christos break;
9540 1.1 christos };
9541 1.1 christos break;
9542 1.1 christos /* netbsd32____lwp_park60 */
9543 1.1 christos case 478:
9544 1.1 christos switch(ndx) {
9545 1.1 christos case 0:
9546 1.1 christos p = "netbsd32_clockid_t";
9547 1.1 christos break;
9548 1.1 christos case 1:
9549 1.1 christos p = "int";
9550 1.1 christos break;
9551 1.1 christos case 2:
9552 1.20 kamil p = "netbsd32_timespecp_t";
9553 1.1 christos break;
9554 1.1 christos case 3:
9555 1.1 christos p = "lwpid_t";
9556 1.1 christos break;
9557 1.1 christos case 4:
9558 1.1 christos p = "netbsd32_voidp";
9559 1.1 christos break;
9560 1.1 christos case 5:
9561 1.1 christos p = "netbsd32_voidp";
9562 1.1 christos break;
9563 1.1 christos default:
9564 1.1 christos break;
9565 1.1 christos };
9566 1.1 christos break;
9567 1.2 martin /* netbsd32_posix_fallocate */
9568 1.2 martin case 479:
9569 1.2 martin switch(ndx) {
9570 1.2 martin case 0:
9571 1.2 martin p = "int";
9572 1.2 martin break;
9573 1.2 martin case 1:
9574 1.2 martin p = "int";
9575 1.2 martin break;
9576 1.2 martin case 2:
9577 1.2 martin p = "netbsd32_off_t";
9578 1.2 martin break;
9579 1.2 martin case 3:
9580 1.2 martin p = "netbsd32_off_t";
9581 1.2 martin break;
9582 1.2 martin default:
9583 1.2 martin break;
9584 1.2 martin };
9585 1.2 martin break;
9586 1.2 martin /* netbsd32_fdiscard */
9587 1.2 martin case 480:
9588 1.2 martin switch(ndx) {
9589 1.2 martin case 0:
9590 1.2 martin p = "int";
9591 1.2 martin break;
9592 1.2 martin case 1:
9593 1.2 martin p = "int";
9594 1.2 martin break;
9595 1.2 martin case 2:
9596 1.2 martin p = "netbsd32_off_t";
9597 1.2 martin break;
9598 1.2 martin case 3:
9599 1.2 martin p = "netbsd32_off_t";
9600 1.2 martin break;
9601 1.2 martin default:
9602 1.2 martin break;
9603 1.2 martin };
9604 1.2 martin break;
9605 1.14 skrll /* netbsd32_wait6 */
9606 1.14 skrll case 481:
9607 1.14 skrll switch(ndx) {
9608 1.14 skrll case 0:
9609 1.14 skrll p = "idtype_t";
9610 1.14 skrll break;
9611 1.14 skrll case 1:
9612 1.14 skrll p = "id_t";
9613 1.14 skrll break;
9614 1.14 skrll case 2:
9615 1.14 skrll p = "netbsd32_intp";
9616 1.14 skrll break;
9617 1.14 skrll case 3:
9618 1.14 skrll p = "int";
9619 1.14 skrll break;
9620 1.14 skrll case 4:
9621 1.14 skrll p = "netbsd32_wrusagep_t";
9622 1.14 skrll break;
9623 1.14 skrll case 5:
9624 1.14 skrll p = "netbsd32_siginfop_t";
9625 1.14 skrll break;
9626 1.14 skrll default:
9627 1.14 skrll break;
9628 1.14 skrll };
9629 1.14 skrll break;
9630 1.14 skrll /* netbsd32_clock_getcpuclockid2 */
9631 1.14 skrll case 482:
9632 1.14 skrll switch(ndx) {
9633 1.14 skrll case 0:
9634 1.14 skrll p = "idtype_t";
9635 1.14 skrll break;
9636 1.14 skrll case 1:
9637 1.14 skrll p = "id_t";
9638 1.14 skrll break;
9639 1.14 skrll case 2:
9640 1.14 skrll p = "netbsd32_clockidp_t";
9641 1.14 skrll break;
9642 1.14 skrll default:
9643 1.14 skrll break;
9644 1.14 skrll };
9645 1.14 skrll break;
9646 1.33 christos /* netbsd32___getvfsstat90 */
9647 1.33 christos case 483:
9648 1.33 christos switch(ndx) {
9649 1.33 christos case 0:
9650 1.33 christos p = "netbsd32_statvfsp_t";
9651 1.33 christos break;
9652 1.33 christos case 1:
9653 1.36 rin p = "netbsd32_size_t";
9654 1.33 christos break;
9655 1.33 christos case 2:
9656 1.33 christos p = "int";
9657 1.33 christos break;
9658 1.33 christos default:
9659 1.33 christos break;
9660 1.33 christos };
9661 1.33 christos break;
9662 1.33 christos /* netbsd32___statvfs190 */
9663 1.33 christos case 484:
9664 1.33 christos switch(ndx) {
9665 1.33 christos case 0:
9666 1.33 christos p = "netbsd32_charp";
9667 1.33 christos break;
9668 1.33 christos case 1:
9669 1.33 christos p = "netbsd32_statvfsp_t";
9670 1.33 christos break;
9671 1.33 christos case 2:
9672 1.33 christos p = "int";
9673 1.33 christos break;
9674 1.33 christos default:
9675 1.33 christos break;
9676 1.33 christos };
9677 1.33 christos break;
9678 1.33 christos /* netbsd32___fstatvfs190 */
9679 1.33 christos case 485:
9680 1.33 christos switch(ndx) {
9681 1.33 christos case 0:
9682 1.33 christos p = "int";
9683 1.33 christos break;
9684 1.33 christos case 1:
9685 1.33 christos p = "netbsd32_statvfsp_t";
9686 1.33 christos break;
9687 1.33 christos case 2:
9688 1.33 christos p = "int";
9689 1.33 christos break;
9690 1.33 christos default:
9691 1.33 christos break;
9692 1.33 christos };
9693 1.33 christos break;
9694 1.33 christos /* netbsd32___fhstatvfs190 */
9695 1.33 christos case 486:
9696 1.33 christos switch(ndx) {
9697 1.33 christos case 0:
9698 1.33 christos p = "netbsd32_voidp";
9699 1.33 christos break;
9700 1.33 christos case 1:
9701 1.36 rin p = "netbsd32_size_t";
9702 1.33 christos break;
9703 1.33 christos case 2:
9704 1.33 christos p = "netbsd32_statvfsp_t";
9705 1.33 christos break;
9706 1.33 christos case 3:
9707 1.33 christos p = "int";
9708 1.33 christos break;
9709 1.33 christos default:
9710 1.33 christos break;
9711 1.33 christos };
9712 1.33 christos break;
9713 1.44 christos /* netbsd32___acl_get_link */
9714 1.44 christos case 487:
9715 1.44 christos switch(ndx) {
9716 1.44 christos case 0:
9717 1.44 christos p = "const netbsd32_charp";
9718 1.44 christos break;
9719 1.44 christos case 1:
9720 1.44 christos p = "acl_type_t";
9721 1.44 christos break;
9722 1.44 christos case 2:
9723 1.44 christos p = "netbsd32_aclp_t";
9724 1.44 christos break;
9725 1.44 christos default:
9726 1.44 christos break;
9727 1.44 christos };
9728 1.44 christos break;
9729 1.44 christos /* netbsd32___acl_set_link */
9730 1.44 christos case 488:
9731 1.44 christos switch(ndx) {
9732 1.44 christos case 0:
9733 1.44 christos p = "const netbsd32_charp";
9734 1.44 christos break;
9735 1.44 christos case 1:
9736 1.44 christos p = "acl_type_t";
9737 1.44 christos break;
9738 1.44 christos case 2:
9739 1.44 christos p = "netbsd32_aclp_t";
9740 1.44 christos break;
9741 1.44 christos default:
9742 1.44 christos break;
9743 1.44 christos };
9744 1.44 christos break;
9745 1.44 christos /* netbsd32___acl_delete_link */
9746 1.44 christos case 489:
9747 1.44 christos switch(ndx) {
9748 1.44 christos case 0:
9749 1.44 christos p = "const netbsd32_charp";
9750 1.44 christos break;
9751 1.44 christos case 1:
9752 1.44 christos p = "acl_type_t";
9753 1.44 christos break;
9754 1.44 christos default:
9755 1.44 christos break;
9756 1.44 christos };
9757 1.44 christos break;
9758 1.44 christos /* netbsd32___acl_aclcheck_link */
9759 1.44 christos case 490:
9760 1.44 christos switch(ndx) {
9761 1.44 christos case 0:
9762 1.44 christos p = "const netbsd32_charp";
9763 1.44 christos break;
9764 1.44 christos case 1:
9765 1.44 christos p = "acl_type_t";
9766 1.44 christos break;
9767 1.44 christos case 2:
9768 1.44 christos p = "netbsd32_aclp_t";
9769 1.44 christos break;
9770 1.44 christos default:
9771 1.44 christos break;
9772 1.44 christos };
9773 1.44 christos break;
9774 1.44 christos /* netbsd32___acl_get_file */
9775 1.44 christos case 491:
9776 1.44 christos switch(ndx) {
9777 1.44 christos case 0:
9778 1.44 christos p = "const netbsd32_charp";
9779 1.44 christos break;
9780 1.44 christos case 1:
9781 1.44 christos p = "acl_type_t";
9782 1.44 christos break;
9783 1.44 christos case 2:
9784 1.44 christos p = "netbsd32_aclp_t";
9785 1.44 christos break;
9786 1.44 christos default:
9787 1.44 christos break;
9788 1.44 christos };
9789 1.44 christos break;
9790 1.44 christos /* netbsd32___acl_set_file */
9791 1.44 christos case 492:
9792 1.44 christos switch(ndx) {
9793 1.44 christos case 0:
9794 1.44 christos p = "const netbsd32_charp";
9795 1.44 christos break;
9796 1.44 christos case 1:
9797 1.44 christos p = "acl_type_t";
9798 1.44 christos break;
9799 1.44 christos case 2:
9800 1.44 christos p = "netbsd32_aclp_t";
9801 1.44 christos break;
9802 1.44 christos default:
9803 1.44 christos break;
9804 1.44 christos };
9805 1.44 christos break;
9806 1.44 christos /* netbsd32___acl_get_fd */
9807 1.44 christos case 493:
9808 1.44 christos switch(ndx) {
9809 1.44 christos case 0:
9810 1.44 christos p = "int";
9811 1.44 christos break;
9812 1.44 christos case 1:
9813 1.44 christos p = "acl_type_t";
9814 1.44 christos break;
9815 1.44 christos case 2:
9816 1.44 christos p = "netbsd32_aclp_t";
9817 1.44 christos break;
9818 1.44 christos default:
9819 1.44 christos break;
9820 1.44 christos };
9821 1.44 christos break;
9822 1.44 christos /* netbsd32___acl_set_fd */
9823 1.44 christos case 494:
9824 1.44 christos switch(ndx) {
9825 1.44 christos case 0:
9826 1.44 christos p = "int";
9827 1.44 christos break;
9828 1.44 christos case 1:
9829 1.44 christos p = "acl_type_t";
9830 1.44 christos break;
9831 1.44 christos case 2:
9832 1.44 christos p = "netbsd32_aclp_t";
9833 1.44 christos break;
9834 1.44 christos default:
9835 1.44 christos break;
9836 1.44 christos };
9837 1.44 christos break;
9838 1.44 christos /* netbsd32___acl_delete_file */
9839 1.44 christos case 495:
9840 1.44 christos switch(ndx) {
9841 1.44 christos case 0:
9842 1.44 christos p = "const netbsd32_charp";
9843 1.44 christos break;
9844 1.44 christos case 1:
9845 1.44 christos p = "acl_type_t";
9846 1.44 christos break;
9847 1.44 christos default:
9848 1.44 christos break;
9849 1.44 christos };
9850 1.44 christos break;
9851 1.44 christos /* netbsd32___acl_delete_fd */
9852 1.44 christos case 496:
9853 1.44 christos switch(ndx) {
9854 1.44 christos case 0:
9855 1.44 christos p = "int";
9856 1.44 christos break;
9857 1.44 christos case 1:
9858 1.44 christos p = "acl_type_t";
9859 1.44 christos break;
9860 1.44 christos default:
9861 1.44 christos break;
9862 1.44 christos };
9863 1.44 christos break;
9864 1.44 christos /* netbsd32___acl_aclcheck_file */
9865 1.44 christos case 497:
9866 1.44 christos switch(ndx) {
9867 1.44 christos case 0:
9868 1.44 christos p = "const netbsd32_charp";
9869 1.44 christos break;
9870 1.44 christos case 1:
9871 1.44 christos p = "acl_type_t";
9872 1.44 christos break;
9873 1.44 christos case 2:
9874 1.44 christos p = "netbsd32_aclp_t";
9875 1.44 christos break;
9876 1.44 christos default:
9877 1.44 christos break;
9878 1.44 christos };
9879 1.44 christos break;
9880 1.44 christos /* netbsd32___acl_aclcheck_fd */
9881 1.44 christos case 498:
9882 1.44 christos switch(ndx) {
9883 1.44 christos case 0:
9884 1.44 christos p = "int";
9885 1.44 christos break;
9886 1.44 christos case 1:
9887 1.44 christos p = "acl_type_t";
9888 1.44 christos break;
9889 1.44 christos case 2:
9890 1.44 christos p = "netbsd32_aclp_t";
9891 1.44 christos break;
9892 1.44 christos default:
9893 1.44 christos break;
9894 1.44 christos };
9895 1.44 christos break;
9896 1.44 christos /* netbsd32_lpathconf */
9897 1.44 christos case 499:
9898 1.44 christos switch(ndx) {
9899 1.44 christos case 0:
9900 1.44 christos p = "const netbsd32_charp";
9901 1.44 christos break;
9902 1.44 christos case 1:
9903 1.44 christos p = "int";
9904 1.44 christos break;
9905 1.44 christos default:
9906 1.44 christos break;
9907 1.44 christos };
9908 1.44 christos break;
9909 1.1 christos default:
9910 1.1 christos break;
9911 1.1 christos };
9912 1.1 christos if (p != NULL)
9913 1.1 christos strlcpy(desc, p, descsz);
9914 1.1 christos }
9915 1.1 christos static void
9916 1.1 christos systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
9917 1.1 christos {
9918 1.1 christos const char *p = NULL;
9919 1.1 christos switch (sysnum) {
9920 1.1 christos /* netbsd32_syscall */
9921 1.1 christos case 0:
9922 1.1 christos if (ndx == 0 || ndx == 1)
9923 1.1 christos p = "int";
9924 1.1 christos break;
9925 1.1 christos /* netbsd32_exit */
9926 1.1 christos case 1:
9927 1.1 christos if (ndx == 0 || ndx == 1)
9928 1.1 christos p = "void";
9929 1.1 christos break;
9930 1.1 christos /* sys_fork */
9931 1.1 christos case 2:
9932 1.1 christos /* netbsd32_read */
9933 1.1 christos case 3:
9934 1.1 christos if (ndx == 0 || ndx == 1)
9935 1.1 christos p = "netbsd32_ssize_t";
9936 1.1 christos break;
9937 1.1 christos /* netbsd32_write */
9938 1.1 christos case 4:
9939 1.1 christos if (ndx == 0 || ndx == 1)
9940 1.1 christos p = "netbsd32_ssize_t";
9941 1.1 christos break;
9942 1.1 christos /* netbsd32_open */
9943 1.1 christos case 5:
9944 1.1 christos if (ndx == 0 || ndx == 1)
9945 1.1 christos p = "int";
9946 1.1 christos break;
9947 1.1 christos /* netbsd32_close */
9948 1.1 christos case 6:
9949 1.1 christos if (ndx == 0 || ndx == 1)
9950 1.1 christos p = "int";
9951 1.1 christos break;
9952 1.1 christos /* netbsd32_wait4 */
9953 1.1 christos case 7:
9954 1.1 christos if (ndx == 0 || ndx == 1)
9955 1.1 christos p = "int";
9956 1.1 christos break;
9957 1.1 christos /* netbsd32_ocreat */
9958 1.1 christos case 8:
9959 1.1 christos if (ndx == 0 || ndx == 1)
9960 1.1 christos p = "int";
9961 1.1 christos break;
9962 1.1 christos /* netbsd32_link */
9963 1.1 christos case 9:
9964 1.1 christos if (ndx == 0 || ndx == 1)
9965 1.1 christos p = "int";
9966 1.1 christos break;
9967 1.1 christos /* netbsd32_unlink */
9968 1.1 christos case 10:
9969 1.1 christos if (ndx == 0 || ndx == 1)
9970 1.1 christos p = "int";
9971 1.1 christos break;
9972 1.1 christos /* netbsd32_chdir */
9973 1.1 christos case 12:
9974 1.1 christos if (ndx == 0 || ndx == 1)
9975 1.1 christos p = "int";
9976 1.1 christos break;
9977 1.1 christos /* netbsd32_fchdir */
9978 1.1 christos case 13:
9979 1.1 christos if (ndx == 0 || ndx == 1)
9980 1.1 christos p = "int";
9981 1.1 christos break;
9982 1.1 christos /* netbsd32_mknod */
9983 1.1 christos case 14:
9984 1.1 christos if (ndx == 0 || ndx == 1)
9985 1.1 christos p = "int";
9986 1.1 christos break;
9987 1.1 christos /* netbsd32_chmod */
9988 1.1 christos case 15:
9989 1.1 christos if (ndx == 0 || ndx == 1)
9990 1.1 christos p = "int";
9991 1.1 christos break;
9992 1.1 christos /* netbsd32_chown */
9993 1.1 christos case 16:
9994 1.1 christos if (ndx == 0 || ndx == 1)
9995 1.1 christos p = "int";
9996 1.1 christos break;
9997 1.1 christos /* netbsd32_break */
9998 1.1 christos case 17:
9999 1.1 christos if (ndx == 0 || ndx == 1)
10000 1.1 christos p = "int";
10001 1.1 christos break;
10002 1.1 christos /* netbsd32_getfsstat */
10003 1.1 christos case 18:
10004 1.1 christos if (ndx == 0 || ndx == 1)
10005 1.1 christos p = "int";
10006 1.1 christos break;
10007 1.1 christos /* netbsd32_olseek */
10008 1.1 christos case 19:
10009 1.1 christos if (ndx == 0 || ndx == 1)
10010 1.1 christos p = "netbsd32_long";
10011 1.1 christos break;
10012 1.37 kamil /* sys_getpid_with_ppid */
10013 1.1 christos case 20:
10014 1.1 christos /* netbsd32_mount */
10015 1.1 christos case 21:
10016 1.1 christos if (ndx == 0 || ndx == 1)
10017 1.1 christos p = "int";
10018 1.1 christos break;
10019 1.1 christos /* netbsd32_unmount */
10020 1.1 christos case 22:
10021 1.1 christos if (ndx == 0 || ndx == 1)
10022 1.1 christos p = "int";
10023 1.1 christos break;
10024 1.1 christos /* netbsd32_setuid */
10025 1.1 christos case 23:
10026 1.1 christos if (ndx == 0 || ndx == 1)
10027 1.1 christos p = "int";
10028 1.1 christos break;
10029 1.37 kamil /* sys_getuid_with_euid */
10030 1.1 christos case 24:
10031 1.1 christos /* sys_geteuid */
10032 1.1 christos case 25:
10033 1.1 christos /* netbsd32_ptrace */
10034 1.1 christos case 26:
10035 1.1 christos if (ndx == 0 || ndx == 1)
10036 1.1 christos p = "int";
10037 1.1 christos break;
10038 1.1 christos /* netbsd32_recvmsg */
10039 1.1 christos case 27:
10040 1.1 christos if (ndx == 0 || ndx == 1)
10041 1.1 christos p = "netbsd32_ssize_t";
10042 1.1 christos break;
10043 1.1 christos /* netbsd32_sendmsg */
10044 1.1 christos case 28:
10045 1.1 christos if (ndx == 0 || ndx == 1)
10046 1.1 christos p = "netbsd32_ssize_t";
10047 1.1 christos break;
10048 1.1 christos /* netbsd32_recvfrom */
10049 1.1 christos case 29:
10050 1.1 christos if (ndx == 0 || ndx == 1)
10051 1.1 christos p = "netbsd32_ssize_t";
10052 1.1 christos break;
10053 1.1 christos /* netbsd32_accept */
10054 1.1 christos case 30:
10055 1.1 christos if (ndx == 0 || ndx == 1)
10056 1.1 christos p = "int";
10057 1.1 christos break;
10058 1.1 christos /* netbsd32_getpeername */
10059 1.1 christos case 31:
10060 1.1 christos if (ndx == 0 || ndx == 1)
10061 1.1 christos p = "int";
10062 1.1 christos break;
10063 1.1 christos /* netbsd32_getsockname */
10064 1.1 christos case 32:
10065 1.1 christos if (ndx == 0 || ndx == 1)
10066 1.1 christos p = "int";
10067 1.1 christos break;
10068 1.1 christos /* netbsd32_access */
10069 1.1 christos case 33:
10070 1.1 christos if (ndx == 0 || ndx == 1)
10071 1.1 christos p = "int";
10072 1.1 christos break;
10073 1.1 christos /* netbsd32_chflags */
10074 1.1 christos case 34:
10075 1.1 christos if (ndx == 0 || ndx == 1)
10076 1.1 christos p = "int";
10077 1.1 christos break;
10078 1.1 christos /* netbsd32_fchflags */
10079 1.1 christos case 35:
10080 1.1 christos if (ndx == 0 || ndx == 1)
10081 1.1 christos p = "int";
10082 1.1 christos break;
10083 1.1 christos /* sys_sync */
10084 1.1 christos case 36:
10085 1.1 christos /* netbsd32_kill */
10086 1.1 christos case 37:
10087 1.1 christos if (ndx == 0 || ndx == 1)
10088 1.1 christos p = "int";
10089 1.1 christos break;
10090 1.1 christos /* netbsd32_stat43 */
10091 1.1 christos case 38:
10092 1.1 christos if (ndx == 0 || ndx == 1)
10093 1.1 christos p = "int";
10094 1.1 christos break;
10095 1.1 christos /* sys_getppid */
10096 1.1 christos case 39:
10097 1.1 christos /* netbsd32_lstat43 */
10098 1.1 christos case 40:
10099 1.1 christos if (ndx == 0 || ndx == 1)
10100 1.1 christos p = "int";
10101 1.1 christos break;
10102 1.1 christos /* netbsd32_dup */
10103 1.1 christos case 41:
10104 1.1 christos if (ndx == 0 || ndx == 1)
10105 1.1 christos p = "int";
10106 1.1 christos break;
10107 1.1 christos /* sys_pipe */
10108 1.1 christos case 42:
10109 1.1 christos /* sys_getegid */
10110 1.1 christos case 43:
10111 1.1 christos /* netbsd32_profil */
10112 1.1 christos case 44:
10113 1.1 christos if (ndx == 0 || ndx == 1)
10114 1.1 christos p = "int";
10115 1.1 christos break;
10116 1.1 christos /* netbsd32_ktrace */
10117 1.1 christos case 45:
10118 1.1 christos if (ndx == 0 || ndx == 1)
10119 1.1 christos p = "int";
10120 1.1 christos break;
10121 1.1 christos /* netbsd32_sigaction */
10122 1.1 christos case 46:
10123 1.1 christos if (ndx == 0 || ndx == 1)
10124 1.1 christos p = "int";
10125 1.1 christos break;
10126 1.37 kamil /* sys_getgid_with_egid */
10127 1.1 christos case 47:
10128 1.1 christos /* netbsd32_sigprocmask */
10129 1.1 christos case 48:
10130 1.1 christos if (ndx == 0 || ndx == 1)
10131 1.1 christos p = "int";
10132 1.1 christos break;
10133 1.1 christos /* netbsd32___getlogin */
10134 1.1 christos case 49:
10135 1.1 christos if (ndx == 0 || ndx == 1)
10136 1.1 christos p = "int";
10137 1.1 christos break;
10138 1.1 christos /* netbsd32_setlogin */
10139 1.1 christos case 50:
10140 1.1 christos if (ndx == 0 || ndx == 1)
10141 1.1 christos p = "int";
10142 1.1 christos break;
10143 1.1 christos /* netbsd32_acct */
10144 1.1 christos case 51:
10145 1.1 christos if (ndx == 0 || ndx == 1)
10146 1.1 christos p = "int";
10147 1.1 christos break;
10148 1.1 christos /* sys_sigpending */
10149 1.1 christos case 52:
10150 1.1 christos /* netbsd32_sigaltstack13 */
10151 1.1 christos case 53:
10152 1.1 christos if (ndx == 0 || ndx == 1)
10153 1.1 christos p = "int";
10154 1.1 christos break;
10155 1.1 christos /* netbsd32_ioctl */
10156 1.1 christos case 54:
10157 1.1 christos if (ndx == 0 || ndx == 1)
10158 1.1 christos p = "int";
10159 1.1 christos break;
10160 1.1 christos /* netbsd32_reboot */
10161 1.1 christos case 55:
10162 1.1 christos if (ndx == 0 || ndx == 1)
10163 1.1 christos p = "int";
10164 1.1 christos break;
10165 1.1 christos /* netbsd32_revoke */
10166 1.1 christos case 56:
10167 1.1 christos if (ndx == 0 || ndx == 1)
10168 1.1 christos p = "int";
10169 1.1 christos break;
10170 1.1 christos /* netbsd32_symlink */
10171 1.1 christos case 57:
10172 1.1 christos if (ndx == 0 || ndx == 1)
10173 1.1 christos p = "int";
10174 1.1 christos break;
10175 1.1 christos /* netbsd32_readlink */
10176 1.1 christos case 58:
10177 1.1 christos if (ndx == 0 || ndx == 1)
10178 1.1 christos p = "int";
10179 1.1 christos break;
10180 1.1 christos /* netbsd32_execve */
10181 1.1 christos case 59:
10182 1.1 christos if (ndx == 0 || ndx == 1)
10183 1.1 christos p = "int";
10184 1.1 christos break;
10185 1.1 christos /* netbsd32_umask */
10186 1.1 christos case 60:
10187 1.1 christos if (ndx == 0 || ndx == 1)
10188 1.1 christos p = "mode_t";
10189 1.1 christos break;
10190 1.1 christos /* netbsd32_chroot */
10191 1.1 christos case 61:
10192 1.1 christos if (ndx == 0 || ndx == 1)
10193 1.1 christos p = "int";
10194 1.1 christos break;
10195 1.1 christos /* netbsd32_fstat43 */
10196 1.1 christos case 62:
10197 1.1 christos if (ndx == 0 || ndx == 1)
10198 1.1 christos p = "int";
10199 1.1 christos break;
10200 1.1 christos /* netbsd32_ogetkerninfo */
10201 1.1 christos case 63:
10202 1.1 christos if (ndx == 0 || ndx == 1)
10203 1.1 christos p = "int";
10204 1.1 christos break;
10205 1.1 christos /* sys_getpagesize */
10206 1.1 christos case 64:
10207 1.1 christos /* netbsd32_msync */
10208 1.1 christos case 65:
10209 1.1 christos if (ndx == 0 || ndx == 1)
10210 1.1 christos p = "int";
10211 1.1 christos break;
10212 1.1 christos /* sys_vfork */
10213 1.1 christos case 66:
10214 1.1 christos /* netbsd32_ommap */
10215 1.1 christos case 71:
10216 1.1 christos if (ndx == 0 || ndx == 1)
10217 1.1 christos p = "int";
10218 1.1 christos break;
10219 1.24 kamil /* netbsd32_ovadvise */
10220 1.24 kamil case 72:
10221 1.24 kamil if (ndx == 0 || ndx == 1)
10222 1.24 kamil p = "int";
10223 1.24 kamil break;
10224 1.1 christos /* netbsd32_munmap */
10225 1.1 christos case 73:
10226 1.1 christos if (ndx == 0 || ndx == 1)
10227 1.1 christos p = "int";
10228 1.1 christos break;
10229 1.1 christos /* netbsd32_mprotect */
10230 1.1 christos case 74:
10231 1.1 christos if (ndx == 0 || ndx == 1)
10232 1.1 christos p = "int";
10233 1.1 christos break;
10234 1.1 christos /* netbsd32_madvise */
10235 1.1 christos case 75:
10236 1.1 christos if (ndx == 0 || ndx == 1)
10237 1.1 christos p = "int";
10238 1.1 christos break;
10239 1.1 christos /* netbsd32_mincore */
10240 1.1 christos case 78:
10241 1.1 christos if (ndx == 0 || ndx == 1)
10242 1.1 christos p = "int";
10243 1.1 christos break;
10244 1.1 christos /* netbsd32_getgroups */
10245 1.1 christos case 79:
10246 1.1 christos if (ndx == 0 || ndx == 1)
10247 1.1 christos p = "int";
10248 1.1 christos break;
10249 1.1 christos /* netbsd32_setgroups */
10250 1.1 christos case 80:
10251 1.1 christos if (ndx == 0 || ndx == 1)
10252 1.1 christos p = "int";
10253 1.1 christos break;
10254 1.1 christos /* sys_getpgrp */
10255 1.1 christos case 81:
10256 1.1 christos /* netbsd32_setpgid */
10257 1.1 christos case 82:
10258 1.1 christos if (ndx == 0 || ndx == 1)
10259 1.1 christos p = "int";
10260 1.1 christos break;
10261 1.1 christos /* netbsd32_setitimer */
10262 1.1 christos case 83:
10263 1.1 christos if (ndx == 0 || ndx == 1)
10264 1.1 christos p = "int";
10265 1.1 christos break;
10266 1.1 christos /* sys_wait */
10267 1.1 christos case 84:
10268 1.1 christos /* netbsd32_oswapon */
10269 1.1 christos case 85:
10270 1.1 christos if (ndx == 0 || ndx == 1)
10271 1.1 christos p = "int";
10272 1.1 christos break;
10273 1.1 christos /* netbsd32_getitimer */
10274 1.1 christos case 86:
10275 1.1 christos if (ndx == 0 || ndx == 1)
10276 1.1 christos p = "int";
10277 1.1 christos break;
10278 1.1 christos /* netbsd32_ogethostname */
10279 1.1 christos case 87:
10280 1.1 christos if (ndx == 0 || ndx == 1)
10281 1.1 christos p = "int";
10282 1.1 christos break;
10283 1.1 christos /* netbsd32_osethostname */
10284 1.1 christos case 88:
10285 1.1 christos if (ndx == 0 || ndx == 1)
10286 1.1 christos p = "int";
10287 1.1 christos break;
10288 1.1 christos /* sys_getdtablesize */
10289 1.1 christos case 89:
10290 1.1 christos /* netbsd32_dup2 */
10291 1.1 christos case 90:
10292 1.1 christos if (ndx == 0 || ndx == 1)
10293 1.1 christos p = "int";
10294 1.1 christos break;
10295 1.1 christos /* netbsd32_fcntl */
10296 1.1 christos case 92:
10297 1.1 christos if (ndx == 0 || ndx == 1)
10298 1.1 christos p = "int";
10299 1.1 christos break;
10300 1.1 christos /* netbsd32_select */
10301 1.1 christos case 93:
10302 1.1 christos if (ndx == 0 || ndx == 1)
10303 1.1 christos p = "int";
10304 1.1 christos break;
10305 1.1 christos /* netbsd32_fsync */
10306 1.1 christos case 95:
10307 1.1 christos if (ndx == 0 || ndx == 1)
10308 1.1 christos p = "int";
10309 1.1 christos break;
10310 1.1 christos /* netbsd32_setpriority */
10311 1.1 christos case 96:
10312 1.1 christos if (ndx == 0 || ndx == 1)
10313 1.1 christos p = "int";
10314 1.1 christos break;
10315 1.1 christos /* netbsd32_socket */
10316 1.1 christos case 97:
10317 1.1 christos if (ndx == 0 || ndx == 1)
10318 1.1 christos p = "int";
10319 1.1 christos break;
10320 1.1 christos /* netbsd32_connect */
10321 1.1 christos case 98:
10322 1.1 christos if (ndx == 0 || ndx == 1)
10323 1.1 christos p = "int";
10324 1.1 christos break;
10325 1.1 christos /* netbsd32_oaccept */
10326 1.1 christos case 99:
10327 1.1 christos if (ndx == 0 || ndx == 1)
10328 1.1 christos p = "int";
10329 1.1 christos break;
10330 1.1 christos /* netbsd32_getpriority */
10331 1.1 christos case 100:
10332 1.1 christos if (ndx == 0 || ndx == 1)
10333 1.1 christos p = "int";
10334 1.1 christos break;
10335 1.1 christos /* netbsd32_osend */
10336 1.1 christos case 101:
10337 1.1 christos if (ndx == 0 || ndx == 1)
10338 1.1 christos p = "int";
10339 1.1 christos break;
10340 1.1 christos /* netbsd32_orecv */
10341 1.1 christos case 102:
10342 1.1 christos if (ndx == 0 || ndx == 1)
10343 1.1 christos p = "int";
10344 1.1 christos break;
10345 1.1 christos /* netbsd32_sigreturn */
10346 1.1 christos case 103:
10347 1.1 christos if (ndx == 0 || ndx == 1)
10348 1.1 christos p = "int";
10349 1.1 christos break;
10350 1.1 christos /* netbsd32_bind */
10351 1.1 christos case 104:
10352 1.1 christos if (ndx == 0 || ndx == 1)
10353 1.1 christos p = "int";
10354 1.1 christos break;
10355 1.1 christos /* netbsd32_setsockopt */
10356 1.1 christos case 105:
10357 1.1 christos if (ndx == 0 || ndx == 1)
10358 1.1 christos p = "int";
10359 1.1 christos break;
10360 1.1 christos /* netbsd32_listen */
10361 1.1 christos case 106:
10362 1.1 christos if (ndx == 0 || ndx == 1)
10363 1.1 christos p = "int";
10364 1.1 christos break;
10365 1.1 christos /* netbsd32_osigvec */
10366 1.1 christos case 108:
10367 1.1 christos if (ndx == 0 || ndx == 1)
10368 1.1 christos p = "int";
10369 1.1 christos break;
10370 1.1 christos /* netbsd32_sigblock */
10371 1.1 christos case 109:
10372 1.1 christos if (ndx == 0 || ndx == 1)
10373 1.1 christos p = "int";
10374 1.1 christos break;
10375 1.1 christos /* netbsd32_sigsetmask */
10376 1.1 christos case 110:
10377 1.1 christos if (ndx == 0 || ndx == 1)
10378 1.1 christos p = "int";
10379 1.1 christos break;
10380 1.1 christos /* netbsd32_sigsuspend */
10381 1.1 christos case 111:
10382 1.1 christos if (ndx == 0 || ndx == 1)
10383 1.1 christos p = "int";
10384 1.1 christos break;
10385 1.1 christos /* netbsd32_osigstack */
10386 1.1 christos case 112:
10387 1.1 christos if (ndx == 0 || ndx == 1)
10388 1.1 christos p = "int";
10389 1.1 christos break;
10390 1.1 christos /* netbsd32_orecvmsg */
10391 1.1 christos case 113:
10392 1.1 christos if (ndx == 0 || ndx == 1)
10393 1.1 christos p = "int";
10394 1.1 christos break;
10395 1.1 christos /* netbsd32_osendmsg */
10396 1.1 christos case 114:
10397 1.1 christos if (ndx == 0 || ndx == 1)
10398 1.1 christos p = "int";
10399 1.1 christos break;
10400 1.1 christos /* netbsd32_gettimeofday */
10401 1.1 christos case 116:
10402 1.1 christos if (ndx == 0 || ndx == 1)
10403 1.1 christos p = "int";
10404 1.1 christos break;
10405 1.1 christos /* netbsd32_getrusage */
10406 1.1 christos case 117:
10407 1.1 christos if (ndx == 0 || ndx == 1)
10408 1.1 christos p = "int";
10409 1.1 christos break;
10410 1.1 christos /* netbsd32_getsockopt */
10411 1.1 christos case 118:
10412 1.1 christos if (ndx == 0 || ndx == 1)
10413 1.1 christos p = "int";
10414 1.1 christos break;
10415 1.1 christos /* netbsd32_readv */
10416 1.1 christos case 120:
10417 1.1 christos if (ndx == 0 || ndx == 1)
10418 1.1 christos p = "netbsd32_ssize_t";
10419 1.1 christos break;
10420 1.1 christos /* netbsd32_writev */
10421 1.1 christos case 121:
10422 1.1 christos if (ndx == 0 || ndx == 1)
10423 1.1 christos p = "netbsd32_ssize_t";
10424 1.1 christos break;
10425 1.1 christos /* netbsd32_settimeofday */
10426 1.1 christos case 122:
10427 1.1 christos if (ndx == 0 || ndx == 1)
10428 1.1 christos p = "int";
10429 1.1 christos break;
10430 1.1 christos /* netbsd32_fchown */
10431 1.1 christos case 123:
10432 1.1 christos if (ndx == 0 || ndx == 1)
10433 1.1 christos p = "int";
10434 1.1 christos break;
10435 1.1 christos /* netbsd32_fchmod */
10436 1.1 christos case 124:
10437 1.1 christos if (ndx == 0 || ndx == 1)
10438 1.1 christos p = "int";
10439 1.1 christos break;
10440 1.1 christos /* netbsd32_orecvfrom */
10441 1.1 christos case 125:
10442 1.1 christos if (ndx == 0 || ndx == 1)
10443 1.1 christos p = "int";
10444 1.1 christos break;
10445 1.1 christos /* netbsd32_setreuid */
10446 1.1 christos case 126:
10447 1.1 christos if (ndx == 0 || ndx == 1)
10448 1.1 christos p = "int";
10449 1.1 christos break;
10450 1.1 christos /* netbsd32_setregid */
10451 1.1 christos case 127:
10452 1.1 christos if (ndx == 0 || ndx == 1)
10453 1.1 christos p = "int";
10454 1.1 christos break;
10455 1.1 christos /* netbsd32_rename */
10456 1.1 christos case 128:
10457 1.1 christos if (ndx == 0 || ndx == 1)
10458 1.1 christos p = "int";
10459 1.1 christos break;
10460 1.1 christos /* netbsd32_otruncate */
10461 1.1 christos case 129:
10462 1.1 christos if (ndx == 0 || ndx == 1)
10463 1.1 christos p = "int";
10464 1.1 christos break;
10465 1.1 christos /* netbsd32_oftruncate */
10466 1.1 christos case 130:
10467 1.1 christos if (ndx == 0 || ndx == 1)
10468 1.1 christos p = "int";
10469 1.1 christos break;
10470 1.1 christos /* netbsd32_flock */
10471 1.1 christos case 131:
10472 1.1 christos if (ndx == 0 || ndx == 1)
10473 1.1 christos p = "int";
10474 1.1 christos break;
10475 1.1 christos /* netbsd32_mkfifo */
10476 1.1 christos case 132:
10477 1.1 christos if (ndx == 0 || ndx == 1)
10478 1.1 christos p = "int";
10479 1.1 christos break;
10480 1.1 christos /* netbsd32_sendto */
10481 1.1 christos case 133:
10482 1.1 christos if (ndx == 0 || ndx == 1)
10483 1.1 christos p = "netbsd32_ssize_t";
10484 1.1 christos break;
10485 1.1 christos /* netbsd32_shutdown */
10486 1.1 christos case 134:
10487 1.1 christos if (ndx == 0 || ndx == 1)
10488 1.1 christos p = "int";
10489 1.1 christos break;
10490 1.1 christos /* netbsd32_socketpair */
10491 1.1 christos case 135:
10492 1.1 christos if (ndx == 0 || ndx == 1)
10493 1.1 christos p = "int";
10494 1.1 christos break;
10495 1.1 christos /* netbsd32_mkdir */
10496 1.1 christos case 136:
10497 1.1 christos if (ndx == 0 || ndx == 1)
10498 1.1 christos p = "int";
10499 1.1 christos break;
10500 1.1 christos /* netbsd32_rmdir */
10501 1.1 christos case 137:
10502 1.1 christos if (ndx == 0 || ndx == 1)
10503 1.1 christos p = "int";
10504 1.1 christos break;
10505 1.1 christos /* netbsd32_utimes */
10506 1.1 christos case 138:
10507 1.1 christos if (ndx == 0 || ndx == 1)
10508 1.1 christos p = "int";
10509 1.1 christos break;
10510 1.1 christos /* netbsd32_adjtime */
10511 1.1 christos case 140:
10512 1.1 christos if (ndx == 0 || ndx == 1)
10513 1.1 christos p = "int";
10514 1.1 christos break;
10515 1.1 christos /* netbsd32_ogetpeername */
10516 1.1 christos case 141:
10517 1.1 christos if (ndx == 0 || ndx == 1)
10518 1.1 christos p = "int";
10519 1.1 christos break;
10520 1.1 christos /* sys_gethostid */
10521 1.1 christos case 142:
10522 1.1 christos /* netbsd32_sethostid */
10523 1.1 christos case 143:
10524 1.1 christos if (ndx == 0 || ndx == 1)
10525 1.1 christos p = "int";
10526 1.1 christos break;
10527 1.1 christos /* netbsd32_ogetrlimit */
10528 1.1 christos case 144:
10529 1.1 christos if (ndx == 0 || ndx == 1)
10530 1.1 christos p = "int";
10531 1.1 christos break;
10532 1.1 christos /* netbsd32_osetrlimit */
10533 1.1 christos case 145:
10534 1.1 christos if (ndx == 0 || ndx == 1)
10535 1.1 christos p = "int";
10536 1.1 christos break;
10537 1.1 christos /* netbsd32_killpg */
10538 1.1 christos case 146:
10539 1.1 christos if (ndx == 0 || ndx == 1)
10540 1.1 christos p = "int";
10541 1.1 christos break;
10542 1.1 christos /* sys_setsid */
10543 1.1 christos case 147:
10544 1.1 christos /* netbsd32_quotactl */
10545 1.1 christos case 148:
10546 1.1 christos if (ndx == 0 || ndx == 1)
10547 1.1 christos p = "int";
10548 1.1 christos break;
10549 1.1 christos /* netbsd32_ogetsockname */
10550 1.1 christos case 150:
10551 1.1 christos if (ndx == 0 || ndx == 1)
10552 1.1 christos p = "int";
10553 1.1 christos break;
10554 1.6 mrg /* netbsd32_nfssvc */
10555 1.6 mrg case 155:
10556 1.6 mrg if (ndx == 0 || ndx == 1)
10557 1.6 mrg p = "int";
10558 1.6 mrg break;
10559 1.1 christos /* netbsd32_ogetdirentries */
10560 1.1 christos case 156:
10561 1.1 christos if (ndx == 0 || ndx == 1)
10562 1.1 christos p = "int";
10563 1.1 christos break;
10564 1.1 christos /* netbsd32_statfs */
10565 1.1 christos case 157:
10566 1.1 christos if (ndx == 0 || ndx == 1)
10567 1.1 christos p = "int";
10568 1.1 christos break;
10569 1.1 christos /* netbsd32_fstatfs */
10570 1.1 christos case 158:
10571 1.1 christos if (ndx == 0 || ndx == 1)
10572 1.1 christos p = "int";
10573 1.1 christos break;
10574 1.1 christos /* netbsd32_getfh */
10575 1.1 christos case 161:
10576 1.1 christos if (ndx == 0 || ndx == 1)
10577 1.1 christos p = "int";
10578 1.1 christos break;
10579 1.1 christos /* netbsd32_ogetdomainname */
10580 1.1 christos case 162:
10581 1.1 christos if (ndx == 0 || ndx == 1)
10582 1.1 christos p = "int";
10583 1.1 christos break;
10584 1.1 christos /* netbsd32_osetdomainname */
10585 1.1 christos case 163:
10586 1.1 christos if (ndx == 0 || ndx == 1)
10587 1.1 christos p = "int";
10588 1.1 christos break;
10589 1.1 christos /* netbsd32_uname */
10590 1.1 christos case 164:
10591 1.1 christos if (ndx == 0 || ndx == 1)
10592 1.1 christos p = "int";
10593 1.1 christos break;
10594 1.1 christos /* netbsd32_sysarch */
10595 1.1 christos case 165:
10596 1.1 christos if (ndx == 0 || ndx == 1)
10597 1.1 christos p = "int";
10598 1.1 christos break;
10599 1.43 thorpej /* netbsd32___futex */
10600 1.43 thorpej case 166:
10601 1.43 thorpej if (ndx == 0 || ndx == 1)
10602 1.43 thorpej p = "int";
10603 1.43 thorpej break;
10604 1.43 thorpej /* netbsd32___futex_set_robust_list */
10605 1.43 thorpej case 167:
10606 1.43 thorpej if (ndx == 0 || ndx == 1)
10607 1.43 thorpej p = "int";
10608 1.43 thorpej break;
10609 1.43 thorpej /* netbsd32___futex_get_robust_list */
10610 1.43 thorpej case 168:
10611 1.43 thorpej if (ndx == 0 || ndx == 1)
10612 1.43 thorpej p = "int";
10613 1.43 thorpej break;
10614 1.1 christos /* netbsd32_semsys */
10615 1.1 christos case 169:
10616 1.1 christos if (ndx == 0 || ndx == 1)
10617 1.1 christos p = "int";
10618 1.1 christos break;
10619 1.1 christos /* netbsd32_msgsys */
10620 1.1 christos case 170:
10621 1.1 christos if (ndx == 0 || ndx == 1)
10622 1.1 christos p = "int";
10623 1.1 christos break;
10624 1.1 christos /* netbsd32_shmsys */
10625 1.1 christos case 171:
10626 1.1 christos if (ndx == 0 || ndx == 1)
10627 1.1 christos p = "int";
10628 1.1 christos break;
10629 1.1 christos /* netbsd32_pread */
10630 1.1 christos case 173:
10631 1.1 christos if (ndx == 0 || ndx == 1)
10632 1.1 christos p = "netbsd32_ssize_t";
10633 1.1 christos break;
10634 1.1 christos /* netbsd32_pwrite */
10635 1.1 christos case 174:
10636 1.1 christos if (ndx == 0 || ndx == 1)
10637 1.1 christos p = "netbsd32_ssize_t";
10638 1.1 christos break;
10639 1.1 christos /* netbsd32_ntp_gettime */
10640 1.1 christos case 175:
10641 1.1 christos if (ndx == 0 || ndx == 1)
10642 1.1 christos p = "int";
10643 1.1 christos break;
10644 1.30 pgoyette #if defined(NTP) || !defined(_KERNEL_OPT)
10645 1.1 christos /* netbsd32_ntp_adjtime */
10646 1.1 christos case 176:
10647 1.1 christos if (ndx == 0 || ndx == 1)
10648 1.1 christos p = "int";
10649 1.1 christos break;
10650 1.1 christos #else
10651 1.1 christos #endif
10652 1.1 christos /* netbsd32_setgid */
10653 1.1 christos case 181:
10654 1.1 christos if (ndx == 0 || ndx == 1)
10655 1.1 christos p = "int";
10656 1.1 christos break;
10657 1.1 christos /* netbsd32_setegid */
10658 1.1 christos case 182:
10659 1.1 christos if (ndx == 0 || ndx == 1)
10660 1.1 christos p = "int";
10661 1.1 christos break;
10662 1.1 christos /* netbsd32_seteuid */
10663 1.1 christos case 183:
10664 1.1 christos if (ndx == 0 || ndx == 1)
10665 1.1 christos p = "int";
10666 1.1 christos break;
10667 1.1 christos /* netbsd32_stat12 */
10668 1.1 christos case 188:
10669 1.1 christos if (ndx == 0 || ndx == 1)
10670 1.1 christos p = "int";
10671 1.1 christos break;
10672 1.1 christos /* netbsd32_fstat12 */
10673 1.1 christos case 189:
10674 1.1 christos if (ndx == 0 || ndx == 1)
10675 1.1 christos p = "int";
10676 1.1 christos break;
10677 1.1 christos /* netbsd32_lstat12 */
10678 1.1 christos case 190:
10679 1.1 christos if (ndx == 0 || ndx == 1)
10680 1.1 christos p = "int";
10681 1.1 christos break;
10682 1.1 christos /* netbsd32_pathconf */
10683 1.1 christos case 191:
10684 1.1 christos if (ndx == 0 || ndx == 1)
10685 1.1 christos p = "netbsd32_long";
10686 1.1 christos break;
10687 1.1 christos /* netbsd32_fpathconf */
10688 1.1 christos case 192:
10689 1.1 christos if (ndx == 0 || ndx == 1)
10690 1.1 christos p = "netbsd32_long";
10691 1.1 christos break;
10692 1.26 rjs /* netbsd32_getsockopt2 */
10693 1.26 rjs case 193:
10694 1.26 rjs if (ndx == 0 || ndx == 1)
10695 1.26 rjs p = "int";
10696 1.26 rjs break;
10697 1.1 christos /* netbsd32_getrlimit */
10698 1.1 christos case 194:
10699 1.1 christos if (ndx == 0 || ndx == 1)
10700 1.1 christos p = "int";
10701 1.1 christos break;
10702 1.1 christos /* netbsd32_setrlimit */
10703 1.1 christos case 195:
10704 1.1 christos if (ndx == 0 || ndx == 1)
10705 1.1 christos p = "int";
10706 1.1 christos break;
10707 1.1 christos /* netbsd32_getdirentries */
10708 1.1 christos case 196:
10709 1.1 christos if (ndx == 0 || ndx == 1)
10710 1.1 christos p = "int";
10711 1.1 christos break;
10712 1.1 christos /* netbsd32_mmap */
10713 1.1 christos case 197:
10714 1.1 christos if (ndx == 0 || ndx == 1)
10715 1.1 christos p = "netbsd32_voidp";
10716 1.1 christos break;
10717 1.1 christos /* netbsd32____syscall */
10718 1.1 christos case 198:
10719 1.1 christos if (ndx == 0 || ndx == 1)
10720 1.1 christos p = "quad_t";
10721 1.1 christos break;
10722 1.1 christos /* netbsd32_lseek */
10723 1.1 christos case 199:
10724 1.1 christos if (ndx == 0 || ndx == 1)
10725 1.1 christos p = "netbsd32_off_t";
10726 1.1 christos break;
10727 1.1 christos /* netbsd32_truncate */
10728 1.1 christos case 200:
10729 1.1 christos if (ndx == 0 || ndx == 1)
10730 1.1 christos p = "int";
10731 1.1 christos break;
10732 1.1 christos /* netbsd32_ftruncate */
10733 1.1 christos case 201:
10734 1.1 christos if (ndx == 0 || ndx == 1)
10735 1.1 christos p = "int";
10736 1.1 christos break;
10737 1.1 christos /* netbsd32___sysctl */
10738 1.1 christos case 202:
10739 1.1 christos if (ndx == 0 || ndx == 1)
10740 1.1 christos p = "int";
10741 1.1 christos break;
10742 1.1 christos /* netbsd32_mlock */
10743 1.1 christos case 203:
10744 1.1 christos if (ndx == 0 || ndx == 1)
10745 1.1 christos p = "int";
10746 1.1 christos break;
10747 1.1 christos /* netbsd32_munlock */
10748 1.1 christos case 204:
10749 1.1 christos if (ndx == 0 || ndx == 1)
10750 1.1 christos p = "int";
10751 1.1 christos break;
10752 1.1 christos /* netbsd32_undelete */
10753 1.1 christos case 205:
10754 1.1 christos if (ndx == 0 || ndx == 1)
10755 1.1 christos p = "int";
10756 1.1 christos break;
10757 1.1 christos /* netbsd32_futimes */
10758 1.1 christos case 206:
10759 1.1 christos if (ndx == 0 || ndx == 1)
10760 1.1 christos p = "int";
10761 1.1 christos break;
10762 1.1 christos /* netbsd32_getpgid */
10763 1.1 christos case 207:
10764 1.1 christos if (ndx == 0 || ndx == 1)
10765 1.1 christos p = "int";
10766 1.1 christos break;
10767 1.1 christos /* netbsd32_reboot */
10768 1.1 christos case 208:
10769 1.1 christos if (ndx == 0 || ndx == 1)
10770 1.1 christos p = "int";
10771 1.1 christos break;
10772 1.1 christos /* netbsd32_poll */
10773 1.1 christos case 209:
10774 1.1 christos if (ndx == 0 || ndx == 1)
10775 1.1 christos p = "int";
10776 1.1 christos break;
10777 1.1 christos /* netbsd32___semctl */
10778 1.1 christos case 220:
10779 1.1 christos if (ndx == 0 || ndx == 1)
10780 1.1 christos p = "int";
10781 1.1 christos break;
10782 1.1 christos /* netbsd32_semget */
10783 1.1 christos case 221:
10784 1.1 christos if (ndx == 0 || ndx == 1)
10785 1.1 christos p = "int";
10786 1.1 christos break;
10787 1.1 christos /* netbsd32_semop */
10788 1.1 christos case 222:
10789 1.1 christos if (ndx == 0 || ndx == 1)
10790 1.1 christos p = "int";
10791 1.1 christos break;
10792 1.1 christos /* netbsd32_semconfig */
10793 1.1 christos case 223:
10794 1.1 christos if (ndx == 0 || ndx == 1)
10795 1.1 christos p = "int";
10796 1.1 christos break;
10797 1.1 christos /* netbsd32_msgctl */
10798 1.1 christos case 224:
10799 1.1 christos if (ndx == 0 || ndx == 1)
10800 1.1 christos p = "int";
10801 1.1 christos break;
10802 1.1 christos /* netbsd32_msgget */
10803 1.1 christos case 225:
10804 1.1 christos if (ndx == 0 || ndx == 1)
10805 1.1 christos p = "int";
10806 1.1 christos break;
10807 1.1 christos /* netbsd32_msgsnd */
10808 1.1 christos case 226:
10809 1.1 christos if (ndx == 0 || ndx == 1)
10810 1.1 christos p = "int";
10811 1.1 christos break;
10812 1.1 christos /* netbsd32_msgrcv */
10813 1.1 christos case 227:
10814 1.1 christos if (ndx == 0 || ndx == 1)
10815 1.1 christos p = "netbsd32_ssize_t";
10816 1.1 christos break;
10817 1.1 christos /* netbsd32_shmat */
10818 1.1 christos case 228:
10819 1.1 christos if (ndx == 0 || ndx == 1)
10820 1.1 christos p = "netbsd32_voidp";
10821 1.1 christos break;
10822 1.1 christos /* netbsd32_shmctl */
10823 1.1 christos case 229:
10824 1.1 christos if (ndx == 0 || ndx == 1)
10825 1.1 christos p = "int";
10826 1.1 christos break;
10827 1.1 christos /* netbsd32_shmdt */
10828 1.1 christos case 230:
10829 1.1 christos if (ndx == 0 || ndx == 1)
10830 1.1 christos p = "int";
10831 1.1 christos break;
10832 1.1 christos /* netbsd32_shmget */
10833 1.1 christos case 231:
10834 1.1 christos if (ndx == 0 || ndx == 1)
10835 1.1 christos p = "int";
10836 1.1 christos break;
10837 1.1 christos /* netbsd32_clock_gettime */
10838 1.1 christos case 232:
10839 1.1 christos if (ndx == 0 || ndx == 1)
10840 1.1 christos p = "int";
10841 1.1 christos break;
10842 1.1 christos /* netbsd32_clock_settime */
10843 1.1 christos case 233:
10844 1.1 christos if (ndx == 0 || ndx == 1)
10845 1.1 christos p = "int";
10846 1.1 christos break;
10847 1.1 christos /* netbsd32_clock_getres */
10848 1.1 christos case 234:
10849 1.1 christos if (ndx == 0 || ndx == 1)
10850 1.1 christos p = "int";
10851 1.1 christos break;
10852 1.1 christos /* netbsd32_timer_create */
10853 1.1 christos case 235:
10854 1.1 christos if (ndx == 0 || ndx == 1)
10855 1.1 christos p = "int";
10856 1.1 christos break;
10857 1.1 christos /* netbsd32_timer_delete */
10858 1.1 christos case 236:
10859 1.1 christos if (ndx == 0 || ndx == 1)
10860 1.1 christos p = "int";
10861 1.1 christos break;
10862 1.1 christos /* netbsd32_timer_settime */
10863 1.1 christos case 237:
10864 1.1 christos if (ndx == 0 || ndx == 1)
10865 1.1 christos p = "int";
10866 1.1 christos break;
10867 1.1 christos /* netbsd32_timer_gettime */
10868 1.1 christos case 238:
10869 1.1 christos if (ndx == 0 || ndx == 1)
10870 1.1 christos p = "int";
10871 1.1 christos break;
10872 1.1 christos /* netbsd32_timer_getoverrun */
10873 1.1 christos case 239:
10874 1.1 christos if (ndx == 0 || ndx == 1)
10875 1.1 christos p = "int";
10876 1.1 christos break;
10877 1.1 christos /* netbsd32_nanosleep */
10878 1.1 christos case 240:
10879 1.1 christos if (ndx == 0 || ndx == 1)
10880 1.1 christos p = "int";
10881 1.1 christos break;
10882 1.1 christos /* netbsd32_fdatasync */
10883 1.1 christos case 241:
10884 1.1 christos if (ndx == 0 || ndx == 1)
10885 1.1 christos p = "int";
10886 1.1 christos break;
10887 1.1 christos /* netbsd32_mlockall */
10888 1.1 christos case 242:
10889 1.1 christos if (ndx == 0 || ndx == 1)
10890 1.1 christos p = "int";
10891 1.1 christos break;
10892 1.1 christos /* sys_munlockall */
10893 1.1 christos case 243:
10894 1.1 christos /* netbsd32___sigtimedwait */
10895 1.1 christos case 244:
10896 1.1 christos if (ndx == 0 || ndx == 1)
10897 1.1 christos p = "int";
10898 1.1 christos break;
10899 1.3 martin /* netbsd32_sigqueueinfo */
10900 1.3 martin case 245:
10901 1.3 martin if (ndx == 0 || ndx == 1)
10902 1.3 martin p = "int";
10903 1.3 martin break;
10904 1.3 martin /* netbsd32_modctl */
10905 1.3 martin case 246:
10906 1.3 martin if (ndx == 0 || ndx == 1)
10907 1.3 martin p = "int";
10908 1.3 martin break;
10909 1.1 christos /* netbsd32__ksem_init */
10910 1.1 christos case 247:
10911 1.1 christos if (ndx == 0 || ndx == 1)
10912 1.1 christos p = "int";
10913 1.1 christos break;
10914 1.1 christos /* netbsd32__ksem_open */
10915 1.1 christos case 248:
10916 1.1 christos if (ndx == 0 || ndx == 1)
10917 1.1 christos p = "int";
10918 1.1 christos break;
10919 1.1 christos /* netbsd32__ksem_unlink */
10920 1.1 christos case 249:
10921 1.1 christos if (ndx == 0 || ndx == 1)
10922 1.1 christos p = "int";
10923 1.1 christos break;
10924 1.1 christos /* netbsd32__ksem_close */
10925 1.1 christos case 250:
10926 1.1 christos if (ndx == 0 || ndx == 1)
10927 1.1 christos p = "int";
10928 1.1 christos break;
10929 1.1 christos /* netbsd32__ksem_post */
10930 1.1 christos case 251:
10931 1.1 christos if (ndx == 0 || ndx == 1)
10932 1.1 christos p = "int";
10933 1.1 christos break;
10934 1.1 christos /* netbsd32__ksem_wait */
10935 1.1 christos case 252:
10936 1.1 christos if (ndx == 0 || ndx == 1)
10937 1.1 christos p = "int";
10938 1.1 christos break;
10939 1.1 christos /* netbsd32__ksem_trywait */
10940 1.1 christos case 253:
10941 1.1 christos if (ndx == 0 || ndx == 1)
10942 1.1 christos p = "int";
10943 1.1 christos break;
10944 1.1 christos /* netbsd32__ksem_getvalue */
10945 1.1 christos case 254:
10946 1.1 christos if (ndx == 0 || ndx == 1)
10947 1.1 christos p = "int";
10948 1.1 christos break;
10949 1.1 christos /* netbsd32__ksem_destroy */
10950 1.1 christos case 255:
10951 1.1 christos if (ndx == 0 || ndx == 1)
10952 1.1 christos p = "int";
10953 1.1 christos break;
10954 1.1 christos /* netbsd32__ksem_timedwait */
10955 1.1 christos case 256:
10956 1.1 christos if (ndx == 0 || ndx == 1)
10957 1.1 christos p = "int";
10958 1.1 christos break;
10959 1.3 martin /* netbsd32_mq_open */
10960 1.3 martin case 257:
10961 1.3 martin if (ndx == 0 || ndx == 1)
10962 1.3 martin p = "mqd_t";
10963 1.3 martin break;
10964 1.3 martin /* netbsd32_mq_close */
10965 1.3 martin case 258:
10966 1.3 martin if (ndx == 0 || ndx == 1)
10967 1.3 martin p = "int";
10968 1.3 martin break;
10969 1.3 martin /* netbsd32_mq_unlink */
10970 1.3 martin case 259:
10971 1.3 martin if (ndx == 0 || ndx == 1)
10972 1.3 martin p = "int";
10973 1.3 martin break;
10974 1.3 martin /* netbsd32_mq_getattr */
10975 1.3 martin case 260:
10976 1.3 martin if (ndx == 0 || ndx == 1)
10977 1.3 martin p = "int";
10978 1.3 martin break;
10979 1.3 martin /* netbsd32_mq_setattr */
10980 1.3 martin case 261:
10981 1.3 martin if (ndx == 0 || ndx == 1)
10982 1.3 martin p = "int";
10983 1.3 martin break;
10984 1.3 martin /* netbsd32_mq_notify */
10985 1.3 martin case 262:
10986 1.3 martin if (ndx == 0 || ndx == 1)
10987 1.3 martin p = "int";
10988 1.3 martin break;
10989 1.3 martin /* netbsd32_mq_send */
10990 1.3 martin case 263:
10991 1.3 martin if (ndx == 0 || ndx == 1)
10992 1.3 martin p = "int";
10993 1.3 martin break;
10994 1.3 martin /* netbsd32_mq_receive */
10995 1.3 martin case 264:
10996 1.3 martin if (ndx == 0 || ndx == 1)
10997 1.3 martin p = "netbsd32_ssize_t";
10998 1.3 martin break;
10999 1.3 martin /* netbsd32_mq_timedsend */
11000 1.3 martin case 265:
11001 1.3 martin if (ndx == 0 || ndx == 1)
11002 1.3 martin p = "int";
11003 1.3 martin break;
11004 1.3 martin /* netbsd32_mq_timedreceive */
11005 1.3 martin case 266:
11006 1.3 martin if (ndx == 0 || ndx == 1)
11007 1.3 martin p = "netbsd32_ssize_t";
11008 1.3 martin break;
11009 1.1 christos /* netbsd32___posix_rename */
11010 1.1 christos case 270:
11011 1.1 christos if (ndx == 0 || ndx == 1)
11012 1.1 christos p = "int";
11013 1.1 christos break;
11014 1.1 christos /* netbsd32_swapctl */
11015 1.1 christos case 271:
11016 1.1 christos if (ndx == 0 || ndx == 1)
11017 1.1 christos p = "int";
11018 1.1 christos break;
11019 1.1 christos /* netbsd32_getdents */
11020 1.1 christos case 272:
11021 1.1 christos if (ndx == 0 || ndx == 1)
11022 1.1 christos p = "int";
11023 1.1 christos break;
11024 1.1 christos /* netbsd32_minherit */
11025 1.1 christos case 273:
11026 1.1 christos if (ndx == 0 || ndx == 1)
11027 1.1 christos p = "int";
11028 1.1 christos break;
11029 1.1 christos /* netbsd32_lchmod */
11030 1.1 christos case 274:
11031 1.1 christos if (ndx == 0 || ndx == 1)
11032 1.1 christos p = "int";
11033 1.1 christos break;
11034 1.1 christos /* netbsd32_lchown */
11035 1.1 christos case 275:
11036 1.1 christos if (ndx == 0 || ndx == 1)
11037 1.1 christos p = "int";
11038 1.1 christos break;
11039 1.1 christos /* netbsd32_lutimes */
11040 1.1 christos case 276:
11041 1.1 christos if (ndx == 0 || ndx == 1)
11042 1.1 christos p = "int";
11043 1.1 christos break;
11044 1.1 christos /* netbsd32___msync13 */
11045 1.1 christos case 277:
11046 1.1 christos if (ndx == 0 || ndx == 1)
11047 1.1 christos p = "int";
11048 1.1 christos break;
11049 1.1 christos /* netbsd32___stat13 */
11050 1.1 christos case 278:
11051 1.1 christos if (ndx == 0 || ndx == 1)
11052 1.1 christos p = "int";
11053 1.1 christos break;
11054 1.1 christos /* netbsd32___fstat13 */
11055 1.1 christos case 279:
11056 1.1 christos if (ndx == 0 || ndx == 1)
11057 1.1 christos p = "int";
11058 1.1 christos break;
11059 1.1 christos /* netbsd32___lstat13 */
11060 1.1 christos case 280:
11061 1.1 christos if (ndx == 0 || ndx == 1)
11062 1.1 christos p = "int";
11063 1.1 christos break;
11064 1.1 christos /* netbsd32___sigaltstack14 */
11065 1.1 christos case 281:
11066 1.1 christos if (ndx == 0 || ndx == 1)
11067 1.1 christos p = "int";
11068 1.1 christos break;
11069 1.1 christos /* sys___vfork14 */
11070 1.1 christos case 282:
11071 1.1 christos /* netbsd32___posix_chown */
11072 1.1 christos case 283:
11073 1.1 christos if (ndx == 0 || ndx == 1)
11074 1.1 christos p = "int";
11075 1.1 christos break;
11076 1.1 christos /* netbsd32___posix_fchown */
11077 1.1 christos case 284:
11078 1.1 christos if (ndx == 0 || ndx == 1)
11079 1.1 christos p = "int";
11080 1.1 christos break;
11081 1.1 christos /* netbsd32___posix_lchown */
11082 1.1 christos case 285:
11083 1.1 christos if (ndx == 0 || ndx == 1)
11084 1.1 christos p = "int";
11085 1.1 christos break;
11086 1.1 christos /* netbsd32_getsid */
11087 1.1 christos case 286:
11088 1.1 christos if (ndx == 0 || ndx == 1)
11089 1.1 christos p = "pid_t";
11090 1.1 christos break;
11091 1.1 christos /* netbsd32___clone */
11092 1.1 christos case 287:
11093 1.1 christos if (ndx == 0 || ndx == 1)
11094 1.1 christos p = "int";
11095 1.1 christos break;
11096 1.1 christos /* netbsd32_fktrace */
11097 1.1 christos case 288:
11098 1.1 christos if (ndx == 0 || ndx == 1)
11099 1.1 christos p = "int";
11100 1.1 christos break;
11101 1.1 christos /* netbsd32_preadv */
11102 1.1 christos case 289:
11103 1.1 christos if (ndx == 0 || ndx == 1)
11104 1.1 christos p = "netbsd32_ssize_t";
11105 1.1 christos break;
11106 1.1 christos /* netbsd32_pwritev */
11107 1.1 christos case 290:
11108 1.1 christos if (ndx == 0 || ndx == 1)
11109 1.1 christos p = "netbsd32_ssize_t";
11110 1.1 christos break;
11111 1.1 christos /* netbsd32___sigaction14 */
11112 1.1 christos case 291:
11113 1.1 christos if (ndx == 0 || ndx == 1)
11114 1.1 christos p = "int";
11115 1.1 christos break;
11116 1.1 christos /* netbsd32___sigpending14 */
11117 1.1 christos case 292:
11118 1.1 christos if (ndx == 0 || ndx == 1)
11119 1.1 christos p = "int";
11120 1.1 christos break;
11121 1.1 christos /* netbsd32___sigprocmask14 */
11122 1.1 christos case 293:
11123 1.1 christos if (ndx == 0 || ndx == 1)
11124 1.1 christos p = "int";
11125 1.1 christos break;
11126 1.1 christos /* netbsd32___sigsuspend14 */
11127 1.1 christos case 294:
11128 1.1 christos if (ndx == 0 || ndx == 1)
11129 1.1 christos p = "int";
11130 1.1 christos break;
11131 1.1 christos /* netbsd32___sigreturn14 */
11132 1.1 christos case 295:
11133 1.1 christos if (ndx == 0 || ndx == 1)
11134 1.1 christos p = "int";
11135 1.1 christos break;
11136 1.1 christos /* netbsd32___getcwd */
11137 1.1 christos case 296:
11138 1.1 christos if (ndx == 0 || ndx == 1)
11139 1.1 christos p = "int";
11140 1.1 christos break;
11141 1.1 christos /* netbsd32_fchroot */
11142 1.1 christos case 297:
11143 1.1 christos if (ndx == 0 || ndx == 1)
11144 1.1 christos p = "int";
11145 1.1 christos break;
11146 1.1 christos /* netbsd32_fhopen */
11147 1.1 christos case 298:
11148 1.1 christos if (ndx == 0 || ndx == 1)
11149 1.1 christos p = "int";
11150 1.1 christos break;
11151 1.1 christos /* netbsd32_fhstat */
11152 1.1 christos case 299:
11153 1.1 christos if (ndx == 0 || ndx == 1)
11154 1.1 christos p = "int";
11155 1.1 christos break;
11156 1.1 christos /* netbsd32_fhstatfs */
11157 1.1 christos case 300:
11158 1.1 christos if (ndx == 0 || ndx == 1)
11159 1.1 christos p = "int";
11160 1.1 christos break;
11161 1.1 christos /* netbsd32___semctl14 */
11162 1.1 christos case 301:
11163 1.1 christos if (ndx == 0 || ndx == 1)
11164 1.1 christos p = "int";
11165 1.1 christos break;
11166 1.1 christos /* netbsd32___msgctl13 */
11167 1.1 christos case 302:
11168 1.1 christos if (ndx == 0 || ndx == 1)
11169 1.1 christos p = "int";
11170 1.1 christos break;
11171 1.1 christos /* netbsd32___shmctl13 */
11172 1.1 christos case 303:
11173 1.1 christos if (ndx == 0 || ndx == 1)
11174 1.1 christos p = "int";
11175 1.1 christos break;
11176 1.1 christos /* netbsd32_lchflags */
11177 1.1 christos case 304:
11178 1.1 christos if (ndx == 0 || ndx == 1)
11179 1.1 christos p = "int";
11180 1.1 christos break;
11181 1.1 christos /* sys_issetugid */
11182 1.1 christos case 305:
11183 1.1 christos /* netbsd32_utrace */
11184 1.1 christos case 306:
11185 1.1 christos if (ndx == 0 || ndx == 1)
11186 1.1 christos p = "int";
11187 1.1 christos break;
11188 1.1 christos /* netbsd32_getcontext */
11189 1.1 christos case 307:
11190 1.1 christos if (ndx == 0 || ndx == 1)
11191 1.1 christos p = "int";
11192 1.1 christos break;
11193 1.1 christos /* netbsd32_setcontext */
11194 1.1 christos case 308:
11195 1.1 christos if (ndx == 0 || ndx == 1)
11196 1.1 christos p = "int";
11197 1.1 christos break;
11198 1.1 christos /* netbsd32__lwp_create */
11199 1.1 christos case 309:
11200 1.1 christos if (ndx == 0 || ndx == 1)
11201 1.1 christos p = "int";
11202 1.1 christos break;
11203 1.1 christos /* sys__lwp_exit */
11204 1.1 christos case 310:
11205 1.1 christos /* sys__lwp_self */
11206 1.1 christos case 311:
11207 1.1 christos /* netbsd32__lwp_wait */
11208 1.1 christos case 312:
11209 1.1 christos if (ndx == 0 || ndx == 1)
11210 1.1 christos p = "int";
11211 1.1 christos break;
11212 1.1 christos /* netbsd32__lwp_suspend */
11213 1.1 christos case 313:
11214 1.1 christos if (ndx == 0 || ndx == 1)
11215 1.1 christos p = "int";
11216 1.1 christos break;
11217 1.1 christos /* netbsd32__lwp_continue */
11218 1.1 christos case 314:
11219 1.1 christos if (ndx == 0 || ndx == 1)
11220 1.1 christos p = "int";
11221 1.1 christos break;
11222 1.1 christos /* netbsd32__lwp_wakeup */
11223 1.1 christos case 315:
11224 1.1 christos if (ndx == 0 || ndx == 1)
11225 1.1 christos p = "int";
11226 1.1 christos break;
11227 1.1 christos /* sys__lwp_getprivate */
11228 1.1 christos case 316:
11229 1.1 christos /* netbsd32__lwp_setprivate */
11230 1.1 christos case 317:
11231 1.1 christos if (ndx == 0 || ndx == 1)
11232 1.1 christos p = "void";
11233 1.1 christos break;
11234 1.1 christos /* netbsd32__lwp_kill */
11235 1.1 christos case 318:
11236 1.1 christos if (ndx == 0 || ndx == 1)
11237 1.1 christos p = "int";
11238 1.1 christos break;
11239 1.1 christos /* netbsd32__lwp_detach */
11240 1.1 christos case 319:
11241 1.1 christos if (ndx == 0 || ndx == 1)
11242 1.1 christos p = "int";
11243 1.1 christos break;
11244 1.1 christos /* netbsd32__lwp_park */
11245 1.1 christos case 320:
11246 1.1 christos if (ndx == 0 || ndx == 1)
11247 1.1 christos p = "int";
11248 1.1 christos break;
11249 1.1 christos /* netbsd32__lwp_unpark */
11250 1.1 christos case 321:
11251 1.1 christos if (ndx == 0 || ndx == 1)
11252 1.1 christos p = "int";
11253 1.1 christos break;
11254 1.1 christos /* netbsd32__lwp_unpark_all */
11255 1.1 christos case 322:
11256 1.1 christos if (ndx == 0 || ndx == 1)
11257 1.1 christos p = "netbsd32_size_t";
11258 1.1 christos break;
11259 1.1 christos /* netbsd32__lwp_setname */
11260 1.1 christos case 323:
11261 1.1 christos if (ndx == 0 || ndx == 1)
11262 1.1 christos p = "int";
11263 1.1 christos break;
11264 1.1 christos /* netbsd32__lwp_getname */
11265 1.1 christos case 324:
11266 1.1 christos if (ndx == 0 || ndx == 1)
11267 1.1 christos p = "int";
11268 1.1 christos break;
11269 1.1 christos /* netbsd32__lwp_ctl */
11270 1.1 christos case 325:
11271 1.1 christos if (ndx == 0 || ndx == 1)
11272 1.1 christos p = "int";
11273 1.1 christos break;
11274 1.1 christos /* netbsd32___sigaction_sigtramp */
11275 1.1 christos case 340:
11276 1.1 christos if (ndx == 0 || ndx == 1)
11277 1.1 christos p = "int";
11278 1.1 christos break;
11279 1.1 christos /* netbsd32_rasctl */
11280 1.1 christos case 343:
11281 1.1 christos if (ndx == 0 || ndx == 1)
11282 1.1 christos p = "int";
11283 1.1 christos break;
11284 1.1 christos /* sys_kqueue */
11285 1.1 christos case 344:
11286 1.1 christos /* netbsd32_kevent */
11287 1.1 christos case 345:
11288 1.1 christos if (ndx == 0 || ndx == 1)
11289 1.1 christos p = "int";
11290 1.1 christos break;
11291 1.1 christos /* netbsd32__sched_setparam */
11292 1.1 christos case 346:
11293 1.1 christos if (ndx == 0 || ndx == 1)
11294 1.1 christos p = "int";
11295 1.1 christos break;
11296 1.1 christos /* netbsd32__sched_getparam */
11297 1.1 christos case 347:
11298 1.1 christos if (ndx == 0 || ndx == 1)
11299 1.1 christos p = "int";
11300 1.1 christos break;
11301 1.1 christos /* netbsd32__sched_setaffinity */
11302 1.1 christos case 348:
11303 1.1 christos if (ndx == 0 || ndx == 1)
11304 1.1 christos p = "int";
11305 1.1 christos break;
11306 1.1 christos /* netbsd32__sched_getaffinity */
11307 1.1 christos case 349:
11308 1.1 christos if (ndx == 0 || ndx == 1)
11309 1.1 christos p = "int";
11310 1.1 christos break;
11311 1.1 christos /* sys_sched_yield */
11312 1.1 christos case 350:
11313 1.13 skrll /* netbsd32__sched_protect */
11314 1.13 skrll case 351:
11315 1.13 skrll if (ndx == 0 || ndx == 1)
11316 1.13 skrll p = "int";
11317 1.13 skrll break;
11318 1.1 christos /* netbsd32_fsync_range */
11319 1.1 christos case 354:
11320 1.1 christos if (ndx == 0 || ndx == 1)
11321 1.1 christos p = "int";
11322 1.1 christos break;
11323 1.1 christos /* netbsd32_uuidgen */
11324 1.1 christos case 355:
11325 1.1 christos if (ndx == 0 || ndx == 1)
11326 1.1 christos p = "int";
11327 1.1 christos break;
11328 1.1 christos /* netbsd32_getvfsstat */
11329 1.1 christos case 356:
11330 1.1 christos if (ndx == 0 || ndx == 1)
11331 1.1 christos p = "int";
11332 1.1 christos break;
11333 1.1 christos /* netbsd32_statvfs1 */
11334 1.1 christos case 357:
11335 1.1 christos if (ndx == 0 || ndx == 1)
11336 1.1 christos p = "int";
11337 1.1 christos break;
11338 1.1 christos /* netbsd32_fstatvfs1 */
11339 1.1 christos case 358:
11340 1.1 christos if (ndx == 0 || ndx == 1)
11341 1.1 christos p = "int";
11342 1.1 christos break;
11343 1.1 christos /* netbsd32_fhstatvfs1 */
11344 1.1 christos case 359:
11345 1.1 christos if (ndx == 0 || ndx == 1)
11346 1.1 christos p = "int";
11347 1.1 christos break;
11348 1.1 christos /* netbsd32_extattrctl */
11349 1.1 christos case 360:
11350 1.1 christos if (ndx == 0 || ndx == 1)
11351 1.1 christos p = "int";
11352 1.1 christos break;
11353 1.1 christos /* netbsd32_extattr_set_file */
11354 1.1 christos case 361:
11355 1.1 christos if (ndx == 0 || ndx == 1)
11356 1.1 christos p = "int";
11357 1.1 christos break;
11358 1.1 christos /* netbsd32_extattr_get_file */
11359 1.1 christos case 362:
11360 1.1 christos if (ndx == 0 || ndx == 1)
11361 1.1 christos p = "int";
11362 1.1 christos break;
11363 1.1 christos /* netbsd32_extattr_delete_file */
11364 1.1 christos case 363:
11365 1.1 christos if (ndx == 0 || ndx == 1)
11366 1.1 christos p = "int";
11367 1.1 christos break;
11368 1.1 christos /* netbsd32_extattr_set_fd */
11369 1.1 christos case 364:
11370 1.1 christos if (ndx == 0 || ndx == 1)
11371 1.1 christos p = "int";
11372 1.1 christos break;
11373 1.1 christos /* netbsd32_extattr_get_fd */
11374 1.1 christos case 365:
11375 1.1 christos if (ndx == 0 || ndx == 1)
11376 1.1 christos p = "int";
11377 1.1 christos break;
11378 1.1 christos /* netbsd32_extattr_delete_fd */
11379 1.1 christos case 366:
11380 1.1 christos if (ndx == 0 || ndx == 1)
11381 1.1 christos p = "int";
11382 1.1 christos break;
11383 1.1 christos /* netbsd32_extattr_set_link */
11384 1.1 christos case 367:
11385 1.1 christos if (ndx == 0 || ndx == 1)
11386 1.1 christos p = "int";
11387 1.1 christos break;
11388 1.1 christos /* netbsd32_extattr_get_link */
11389 1.1 christos case 368:
11390 1.1 christos if (ndx == 0 || ndx == 1)
11391 1.1 christos p = "int";
11392 1.1 christos break;
11393 1.1 christos /* netbsd32_extattr_delete_link */
11394 1.1 christos case 369:
11395 1.1 christos if (ndx == 0 || ndx == 1)
11396 1.1 christos p = "int";
11397 1.1 christos break;
11398 1.1 christos /* netbsd32_extattr_list_fd */
11399 1.1 christos case 370:
11400 1.1 christos if (ndx == 0 || ndx == 1)
11401 1.1 christos p = "int";
11402 1.1 christos break;
11403 1.1 christos /* netbsd32_extattr_list_file */
11404 1.1 christos case 371:
11405 1.1 christos if (ndx == 0 || ndx == 1)
11406 1.1 christos p = "int";
11407 1.1 christos break;
11408 1.1 christos /* netbsd32_extattr_list_link */
11409 1.1 christos case 372:
11410 1.1 christos if (ndx == 0 || ndx == 1)
11411 1.1 christos p = "int";
11412 1.1 christos break;
11413 1.1 christos /* netbsd32_pselect */
11414 1.1 christos case 373:
11415 1.1 christos if (ndx == 0 || ndx == 1)
11416 1.1 christos p = "int";
11417 1.1 christos break;
11418 1.1 christos /* netbsd32_pollts */
11419 1.1 christos case 374:
11420 1.1 christos if (ndx == 0 || ndx == 1)
11421 1.1 christos p = "int";
11422 1.1 christos break;
11423 1.1 christos /* netbsd32_setxattr */
11424 1.1 christos case 375:
11425 1.1 christos if (ndx == 0 || ndx == 1)
11426 1.1 christos p = "int";
11427 1.1 christos break;
11428 1.1 christos /* netbsd32_lsetxattr */
11429 1.1 christos case 376:
11430 1.1 christos if (ndx == 0 || ndx == 1)
11431 1.1 christos p = "int";
11432 1.1 christos break;
11433 1.1 christos /* netbsd32_fsetxattr */
11434 1.1 christos case 377:
11435 1.1 christos if (ndx == 0 || ndx == 1)
11436 1.1 christos p = "int";
11437 1.1 christos break;
11438 1.1 christos /* netbsd32_getxattr */
11439 1.1 christos case 378:
11440 1.1 christos if (ndx == 0 || ndx == 1)
11441 1.1 christos p = "int";
11442 1.1 christos break;
11443 1.1 christos /* netbsd32_lgetxattr */
11444 1.1 christos case 379:
11445 1.1 christos if (ndx == 0 || ndx == 1)
11446 1.1 christos p = "int";
11447 1.1 christos break;
11448 1.1 christos /* netbsd32_fgetxattr */
11449 1.1 christos case 380:
11450 1.1 christos if (ndx == 0 || ndx == 1)
11451 1.1 christos p = "int";
11452 1.1 christos break;
11453 1.1 christos /* netbsd32_listxattr */
11454 1.1 christos case 381:
11455 1.1 christos if (ndx == 0 || ndx == 1)
11456 1.1 christos p = "int";
11457 1.1 christos break;
11458 1.1 christos /* netbsd32_llistxattr */
11459 1.1 christos case 382:
11460 1.1 christos if (ndx == 0 || ndx == 1)
11461 1.1 christos p = "int";
11462 1.1 christos break;
11463 1.1 christos /* netbsd32_flistxattr */
11464 1.1 christos case 383:
11465 1.1 christos if (ndx == 0 || ndx == 1)
11466 1.1 christos p = "int";
11467 1.1 christos break;
11468 1.1 christos /* netbsd32_removexattr */
11469 1.1 christos case 384:
11470 1.1 christos if (ndx == 0 || ndx == 1)
11471 1.1 christos p = "int";
11472 1.1 christos break;
11473 1.1 christos /* netbsd32_lremovexattr */
11474 1.1 christos case 385:
11475 1.1 christos if (ndx == 0 || ndx == 1)
11476 1.1 christos p = "int";
11477 1.1 christos break;
11478 1.1 christos /* netbsd32_fremovexattr */
11479 1.1 christos case 386:
11480 1.1 christos if (ndx == 0 || ndx == 1)
11481 1.1 christos p = "int";
11482 1.1 christos break;
11483 1.1 christos /* netbsd32___stat30 */
11484 1.1 christos case 387:
11485 1.1 christos if (ndx == 0 || ndx == 1)
11486 1.1 christos p = "int";
11487 1.1 christos break;
11488 1.1 christos /* netbsd32___fstat30 */
11489 1.1 christos case 388:
11490 1.1 christos if (ndx == 0 || ndx == 1)
11491 1.1 christos p = "int";
11492 1.1 christos break;
11493 1.1 christos /* netbsd32___lstat30 */
11494 1.1 christos case 389:
11495 1.1 christos if (ndx == 0 || ndx == 1)
11496 1.1 christos p = "int";
11497 1.1 christos break;
11498 1.1 christos /* netbsd32___getdents30 */
11499 1.1 christos case 390:
11500 1.1 christos if (ndx == 0 || ndx == 1)
11501 1.1 christos p = "int";
11502 1.1 christos break;
11503 1.1 christos /* netbsd32___fhstat30 */
11504 1.1 christos case 392:
11505 1.1 christos if (ndx == 0 || ndx == 1)
11506 1.1 christos p = "int";
11507 1.1 christos break;
11508 1.1 christos /* netbsd32_ntp_gettime */
11509 1.1 christos case 393:
11510 1.1 christos if (ndx == 0 || ndx == 1)
11511 1.1 christos p = "int";
11512 1.1 christos break;
11513 1.1 christos /* netbsd32___socket30 */
11514 1.1 christos case 394:
11515 1.1 christos if (ndx == 0 || ndx == 1)
11516 1.1 christos p = "int";
11517 1.1 christos break;
11518 1.1 christos /* netbsd32___getfh30 */
11519 1.1 christos case 395:
11520 1.1 christos if (ndx == 0 || ndx == 1)
11521 1.1 christos p = "int";
11522 1.1 christos break;
11523 1.1 christos /* netbsd32___fhopen40 */
11524 1.1 christos case 396:
11525 1.1 christos if (ndx == 0 || ndx == 1)
11526 1.1 christos p = "int";
11527 1.1 christos break;
11528 1.33 christos /* netbsd32_fhstatvfs1 */
11529 1.1 christos case 397:
11530 1.1 christos if (ndx == 0 || ndx == 1)
11531 1.1 christos p = "int";
11532 1.1 christos break;
11533 1.1 christos /* netbsd32___fhstat40 */
11534 1.1 christos case 398:
11535 1.1 christos if (ndx == 0 || ndx == 1)
11536 1.1 christos p = "int";
11537 1.1 christos break;
11538 1.1 christos /* netbsd32___mount50 */
11539 1.1 christos case 410:
11540 1.1 christos if (ndx == 0 || ndx == 1)
11541 1.1 christos p = "int";
11542 1.1 christos break;
11543 1.1 christos /* netbsd32_mremap */
11544 1.1 christos case 411:
11545 1.1 christos if (ndx == 0 || ndx == 1)
11546 1.1 christos p = "netbsd32_voidp";
11547 1.1 christos break;
11548 1.5 martin /* netbsd32_pset_create */
11549 1.5 martin case 412:
11550 1.5 martin if (ndx == 0 || ndx == 1)
11551 1.5 martin p = "int";
11552 1.5 martin break;
11553 1.5 martin /* netbsd32_pset_destroy */
11554 1.5 martin case 413:
11555 1.5 martin if (ndx == 0 || ndx == 1)
11556 1.5 martin p = "int";
11557 1.5 martin break;
11558 1.5 martin /* netbsd32_pset_assign */
11559 1.5 martin case 414:
11560 1.5 martin if (ndx == 0 || ndx == 1)
11561 1.5 martin p = "int";
11562 1.5 martin break;
11563 1.5 martin /* netbsd32__pset_bind */
11564 1.5 martin case 415:
11565 1.5 martin if (ndx == 0 || ndx == 1)
11566 1.5 martin p = "int";
11567 1.5 martin break;
11568 1.1 christos /* netbsd32___posix_fadvise50 */
11569 1.1 christos case 416:
11570 1.1 christos if (ndx == 0 || ndx == 1)
11571 1.1 christos p = "int";
11572 1.1 christos break;
11573 1.1 christos /* netbsd32___select50 */
11574 1.1 christos case 417:
11575 1.1 christos if (ndx == 0 || ndx == 1)
11576 1.1 christos p = "int";
11577 1.1 christos break;
11578 1.1 christos /* netbsd32___gettimeofday50 */
11579 1.1 christos case 418:
11580 1.1 christos if (ndx == 0 || ndx == 1)
11581 1.1 christos p = "int";
11582 1.1 christos break;
11583 1.1 christos /* netbsd32___settimeofday50 */
11584 1.1 christos case 419:
11585 1.1 christos if (ndx == 0 || ndx == 1)
11586 1.1 christos p = "int";
11587 1.1 christos break;
11588 1.1 christos /* netbsd32___utimes50 */
11589 1.1 christos case 420:
11590 1.1 christos if (ndx == 0 || ndx == 1)
11591 1.1 christos p = "int";
11592 1.1 christos break;
11593 1.1 christos /* netbsd32___adjtime50 */
11594 1.1 christos case 421:
11595 1.1 christos if (ndx == 0 || ndx == 1)
11596 1.1 christos p = "int";
11597 1.1 christos break;
11598 1.1 christos /* netbsd32___futimes50 */
11599 1.1 christos case 423:
11600 1.1 christos if (ndx == 0 || ndx == 1)
11601 1.1 christos p = "int";
11602 1.1 christos break;
11603 1.1 christos /* netbsd32___lutimes50 */
11604 1.1 christos case 424:
11605 1.1 christos if (ndx == 0 || ndx == 1)
11606 1.1 christos p = "int";
11607 1.1 christos break;
11608 1.1 christos /* netbsd32___setitimer50 */
11609 1.1 christos case 425:
11610 1.1 christos if (ndx == 0 || ndx == 1)
11611 1.1 christos p = "int";
11612 1.1 christos break;
11613 1.1 christos /* netbsd32___getitimer50 */
11614 1.1 christos case 426:
11615 1.1 christos if (ndx == 0 || ndx == 1)
11616 1.1 christos p = "int";
11617 1.1 christos break;
11618 1.1 christos /* netbsd32___clock_gettime50 */
11619 1.1 christos case 427:
11620 1.1 christos if (ndx == 0 || ndx == 1)
11621 1.1 christos p = "int";
11622 1.1 christos break;
11623 1.1 christos /* netbsd32___clock_settime50 */
11624 1.1 christos case 428:
11625 1.1 christos if (ndx == 0 || ndx == 1)
11626 1.1 christos p = "int";
11627 1.1 christos break;
11628 1.1 christos /* netbsd32___clock_getres50 */
11629 1.1 christos case 429:
11630 1.1 christos if (ndx == 0 || ndx == 1)
11631 1.1 christos p = "int";
11632 1.1 christos break;
11633 1.1 christos /* netbsd32___nanosleep50 */
11634 1.1 christos case 430:
11635 1.1 christos if (ndx == 0 || ndx == 1)
11636 1.1 christos p = "int";
11637 1.1 christos break;
11638 1.1 christos /* netbsd32_____sigtimedwait50 */
11639 1.1 christos case 431:
11640 1.1 christos if (ndx == 0 || ndx == 1)
11641 1.1 christos p = "int";
11642 1.1 christos break;
11643 1.4 martin /* netbsd32___mq_timedsend50 */
11644 1.4 martin case 432:
11645 1.4 martin if (ndx == 0 || ndx == 1)
11646 1.4 martin p = "int";
11647 1.4 martin break;
11648 1.4 martin /* netbsd32___mq_timedreceive50 */
11649 1.4 martin case 433:
11650 1.4 martin if (ndx == 0 || ndx == 1)
11651 1.4 martin p = "netbsd32_ssize_t";
11652 1.4 martin break;
11653 1.1 christos /* netbsd32__lwp_park */
11654 1.1 christos case 434:
11655 1.1 christos if (ndx == 0 || ndx == 1)
11656 1.1 christos p = "int";
11657 1.1 christos break;
11658 1.1 christos /* netbsd32___kevent50 */
11659 1.1 christos case 435:
11660 1.1 christos if (ndx == 0 || ndx == 1)
11661 1.1 christos p = "int";
11662 1.1 christos break;
11663 1.1 christos /* netbsd32___pselect50 */
11664 1.1 christos case 436:
11665 1.1 christos if (ndx == 0 || ndx == 1)
11666 1.1 christos p = "int";
11667 1.1 christos break;
11668 1.1 christos /* netbsd32___pollts50 */
11669 1.1 christos case 437:
11670 1.1 christos if (ndx == 0 || ndx == 1)
11671 1.1 christos p = "int";
11672 1.1 christos break;
11673 1.1 christos /* netbsd32___stat50 */
11674 1.1 christos case 439:
11675 1.1 christos if (ndx == 0 || ndx == 1)
11676 1.1 christos p = "int";
11677 1.1 christos break;
11678 1.1 christos /* netbsd32___fstat50 */
11679 1.1 christos case 440:
11680 1.1 christos if (ndx == 0 || ndx == 1)
11681 1.1 christos p = "int";
11682 1.1 christos break;
11683 1.1 christos /* netbsd32___lstat50 */
11684 1.1 christos case 441:
11685 1.1 christos if (ndx == 0 || ndx == 1)
11686 1.1 christos p = "int";
11687 1.1 christos break;
11688 1.1 christos /* netbsd32_____semctl50 */
11689 1.1 christos case 442:
11690 1.1 christos if (ndx == 0 || ndx == 1)
11691 1.1 christos p = "int";
11692 1.1 christos break;
11693 1.1 christos /* netbsd32___shmctl50 */
11694 1.1 christos case 443:
11695 1.1 christos if (ndx == 0 || ndx == 1)
11696 1.1 christos p = "int";
11697 1.1 christos break;
11698 1.1 christos /* netbsd32___msgctl50 */
11699 1.1 christos case 444:
11700 1.1 christos if (ndx == 0 || ndx == 1)
11701 1.1 christos p = "int";
11702 1.1 christos break;
11703 1.1 christos /* netbsd32___getrusage50 */
11704 1.1 christos case 445:
11705 1.1 christos if (ndx == 0 || ndx == 1)
11706 1.1 christos p = "int";
11707 1.1 christos break;
11708 1.1 christos /* netbsd32___timer_settime50 */
11709 1.1 christos case 446:
11710 1.1 christos if (ndx == 0 || ndx == 1)
11711 1.1 christos p = "int";
11712 1.1 christos break;
11713 1.1 christos /* netbsd32___timer_gettime50 */
11714 1.1 christos case 447:
11715 1.1 christos if (ndx == 0 || ndx == 1)
11716 1.1 christos p = "int";
11717 1.1 christos break;
11718 1.1 christos #if defined(NTP) || !defined(_KERNEL_OPT)
11719 1.1 christos /* netbsd32___ntp_gettime50 */
11720 1.1 christos case 448:
11721 1.1 christos if (ndx == 0 || ndx == 1)
11722 1.1 christos p = "int";
11723 1.1 christos break;
11724 1.1 christos #else
11725 1.1 christos #endif
11726 1.1 christos /* netbsd32___wait450 */
11727 1.1 christos case 449:
11728 1.1 christos if (ndx == 0 || ndx == 1)
11729 1.1 christos p = "int";
11730 1.1 christos break;
11731 1.1 christos /* netbsd32___mknod50 */
11732 1.1 christos case 450:
11733 1.1 christos if (ndx == 0 || ndx == 1)
11734 1.1 christos p = "int";
11735 1.1 christos break;
11736 1.1 christos /* netbsd32___fhstat50 */
11737 1.1 christos case 451:
11738 1.1 christos if (ndx == 0 || ndx == 1)
11739 1.1 christos p = "int";
11740 1.1 christos break;
11741 1.1 christos /* netbsd32_pipe2 */
11742 1.1 christos case 453:
11743 1.1 christos if (ndx == 0 || ndx == 1)
11744 1.1 christos p = "int";
11745 1.1 christos break;
11746 1.1 christos /* netbsd32_dup3 */
11747 1.1 christos case 454:
11748 1.1 christos if (ndx == 0 || ndx == 1)
11749 1.1 christos p = "int";
11750 1.1 christos break;
11751 1.1 christos /* netbsd32_kqueue1 */
11752 1.1 christos case 455:
11753 1.1 christos if (ndx == 0 || ndx == 1)
11754 1.1 christos p = "int";
11755 1.1 christos break;
11756 1.1 christos /* netbsd32_paccept */
11757 1.1 christos case 456:
11758 1.1 christos if (ndx == 0 || ndx == 1)
11759 1.1 christos p = "int";
11760 1.1 christos break;
11761 1.1 christos /* netbsd32_linkat */
11762 1.1 christos case 457:
11763 1.1 christos if (ndx == 0 || ndx == 1)
11764 1.1 christos p = "int";
11765 1.1 christos break;
11766 1.1 christos /* netbsd32_renameat */
11767 1.1 christos case 458:
11768 1.1 christos if (ndx == 0 || ndx == 1)
11769 1.1 christos p = "int";
11770 1.1 christos break;
11771 1.1 christos /* netbsd32_mkfifoat */
11772 1.1 christos case 459:
11773 1.1 christos if (ndx == 0 || ndx == 1)
11774 1.1 christos p = "int";
11775 1.1 christos break;
11776 1.1 christos /* netbsd32_mknodat */
11777 1.1 christos case 460:
11778 1.1 christos if (ndx == 0 || ndx == 1)
11779 1.1 christos p = "int";
11780 1.1 christos break;
11781 1.1 christos /* netbsd32_mkdirat */
11782 1.1 christos case 461:
11783 1.1 christos if (ndx == 0 || ndx == 1)
11784 1.1 christos p = "int";
11785 1.1 christos break;
11786 1.1 christos /* netbsd32_faccessat */
11787 1.1 christos case 462:
11788 1.1 christos if (ndx == 0 || ndx == 1)
11789 1.1 christos p = "int";
11790 1.1 christos break;
11791 1.1 christos /* netbsd32_fchmodat */
11792 1.1 christos case 463:
11793 1.1 christos if (ndx == 0 || ndx == 1)
11794 1.1 christos p = "int";
11795 1.1 christos break;
11796 1.1 christos /* netbsd32_fchownat */
11797 1.1 christos case 464:
11798 1.1 christos if (ndx == 0 || ndx == 1)
11799 1.1 christos p = "int";
11800 1.1 christos break;
11801 1.1 christos /* netbsd32_fexecve */
11802 1.1 christos case 465:
11803 1.1 christos if (ndx == 0 || ndx == 1)
11804 1.1 christos p = "int";
11805 1.1 christos break;
11806 1.1 christos /* netbsd32_fstatat */
11807 1.1 christos case 466:
11808 1.1 christos if (ndx == 0 || ndx == 1)
11809 1.1 christos p = "int";
11810 1.1 christos break;
11811 1.1 christos /* netbsd32_utimensat */
11812 1.1 christos case 467:
11813 1.1 christos if (ndx == 0 || ndx == 1)
11814 1.1 christos p = "int";
11815 1.1 christos break;
11816 1.1 christos /* netbsd32_openat */
11817 1.1 christos case 468:
11818 1.1 christos if (ndx == 0 || ndx == 1)
11819 1.1 christos p = "int";
11820 1.1 christos break;
11821 1.1 christos /* netbsd32_readlinkat */
11822 1.1 christos case 469:
11823 1.1 christos if (ndx == 0 || ndx == 1)
11824 1.1 christos p = "netbsd32_ssize_t";
11825 1.1 christos break;
11826 1.1 christos /* netbsd32_symlinkat */
11827 1.1 christos case 470:
11828 1.1 christos if (ndx == 0 || ndx == 1)
11829 1.1 christos p = "int";
11830 1.1 christos break;
11831 1.1 christos /* netbsd32_unlinkat */
11832 1.1 christos case 471:
11833 1.1 christos if (ndx == 0 || ndx == 1)
11834 1.1 christos p = "int";
11835 1.1 christos break;
11836 1.1 christos /* netbsd32_futimens */
11837 1.1 christos case 472:
11838 1.1 christos if (ndx == 0 || ndx == 1)
11839 1.1 christos p = "int";
11840 1.1 christos break;
11841 1.1 christos /* netbsd32___quotactl */
11842 1.1 christos case 473:
11843 1.1 christos if (ndx == 0 || ndx == 1)
11844 1.1 christos p = "int";
11845 1.1 christos break;
11846 1.1 christos /* netbsd32_posix_spawn */
11847 1.1 christos case 474:
11848 1.1 christos if (ndx == 0 || ndx == 1)
11849 1.1 christos p = "int";
11850 1.1 christos break;
11851 1.25 christos /* netbsd32_recvmmsg */
11852 1.25 christos case 475:
11853 1.25 christos if (ndx == 0 || ndx == 1)
11854 1.25 christos p = "int";
11855 1.25 christos break;
11856 1.25 christos /* netbsd32_sendmmsg */
11857 1.25 christos case 476:
11858 1.25 christos if (ndx == 0 || ndx == 1)
11859 1.25 christos p = "int";
11860 1.25 christos break;
11861 1.1 christos /* netbsd32_clock_nanosleep */
11862 1.1 christos case 477:
11863 1.1 christos if (ndx == 0 || ndx == 1)
11864 1.1 christos p = "int";
11865 1.1 christos break;
11866 1.1 christos /* netbsd32____lwp_park60 */
11867 1.1 christos case 478:
11868 1.1 christos if (ndx == 0 || ndx == 1)
11869 1.1 christos p = "int";
11870 1.1 christos break;
11871 1.2 martin /* netbsd32_posix_fallocate */
11872 1.2 martin case 479:
11873 1.2 martin if (ndx == 0 || ndx == 1)
11874 1.2 martin p = "int";
11875 1.2 martin break;
11876 1.2 martin /* netbsd32_fdiscard */
11877 1.2 martin case 480:
11878 1.2 martin if (ndx == 0 || ndx == 1)
11879 1.2 martin p = "int";
11880 1.2 martin break;
11881 1.14 skrll /* netbsd32_wait6 */
11882 1.14 skrll case 481:
11883 1.14 skrll if (ndx == 0 || ndx == 1)
11884 1.14 skrll p = "int";
11885 1.14 skrll break;
11886 1.14 skrll /* netbsd32_clock_getcpuclockid2 */
11887 1.14 skrll case 482:
11888 1.14 skrll if (ndx == 0 || ndx == 1)
11889 1.14 skrll p = "int";
11890 1.14 skrll break;
11891 1.33 christos /* netbsd32___getvfsstat90 */
11892 1.33 christos case 483:
11893 1.33 christos if (ndx == 0 || ndx == 1)
11894 1.33 christos p = "int";
11895 1.33 christos break;
11896 1.33 christos /* netbsd32___statvfs190 */
11897 1.33 christos case 484:
11898 1.33 christos if (ndx == 0 || ndx == 1)
11899 1.33 christos p = "int";
11900 1.33 christos break;
11901 1.33 christos /* netbsd32___fstatvfs190 */
11902 1.33 christos case 485:
11903 1.33 christos if (ndx == 0 || ndx == 1)
11904 1.33 christos p = "int";
11905 1.33 christos break;
11906 1.33 christos /* netbsd32___fhstatvfs190 */
11907 1.33 christos case 486:
11908 1.33 christos if (ndx == 0 || ndx == 1)
11909 1.33 christos p = "int";
11910 1.33 christos break;
11911 1.44 christos /* netbsd32___acl_get_link */
11912 1.44 christos case 487:
11913 1.44 christos if (ndx == 0 || ndx == 1)
11914 1.44 christos p = "int";
11915 1.44 christos break;
11916 1.44 christos /* netbsd32___acl_set_link */
11917 1.44 christos case 488:
11918 1.44 christos if (ndx == 0 || ndx == 1)
11919 1.44 christos p = "int";
11920 1.44 christos break;
11921 1.44 christos /* netbsd32___acl_delete_link */
11922 1.44 christos case 489:
11923 1.44 christos if (ndx == 0 || ndx == 1)
11924 1.44 christos p = "int";
11925 1.44 christos break;
11926 1.44 christos /* netbsd32___acl_aclcheck_link */
11927 1.44 christos case 490:
11928 1.44 christos if (ndx == 0 || ndx == 1)
11929 1.44 christos p = "int";
11930 1.44 christos break;
11931 1.44 christos /* netbsd32___acl_get_file */
11932 1.44 christos case 491:
11933 1.44 christos if (ndx == 0 || ndx == 1)
11934 1.44 christos p = "int";
11935 1.44 christos break;
11936 1.44 christos /* netbsd32___acl_set_file */
11937 1.44 christos case 492:
11938 1.44 christos if (ndx == 0 || ndx == 1)
11939 1.44 christos p = "int";
11940 1.44 christos break;
11941 1.44 christos /* netbsd32___acl_get_fd */
11942 1.44 christos case 493:
11943 1.44 christos if (ndx == 0 || ndx == 1)
11944 1.44 christos p = "int";
11945 1.44 christos break;
11946 1.44 christos /* netbsd32___acl_set_fd */
11947 1.44 christos case 494:
11948 1.44 christos if (ndx == 0 || ndx == 1)
11949 1.44 christos p = "int";
11950 1.44 christos break;
11951 1.44 christos /* netbsd32___acl_delete_file */
11952 1.44 christos case 495:
11953 1.44 christos if (ndx == 0 || ndx == 1)
11954 1.44 christos p = "int";
11955 1.44 christos break;
11956 1.44 christos /* netbsd32___acl_delete_fd */
11957 1.44 christos case 496:
11958 1.44 christos if (ndx == 0 || ndx == 1)
11959 1.44 christos p = "int";
11960 1.44 christos break;
11961 1.44 christos /* netbsd32___acl_aclcheck_file */
11962 1.44 christos case 497:
11963 1.44 christos if (ndx == 0 || ndx == 1)
11964 1.44 christos p = "int";
11965 1.44 christos break;
11966 1.44 christos /* netbsd32___acl_aclcheck_fd */
11967 1.44 christos case 498:
11968 1.44 christos if (ndx == 0 || ndx == 1)
11969 1.44 christos p = "int";
11970 1.44 christos break;
11971 1.44 christos /* netbsd32_lpathconf */
11972 1.44 christos case 499:
11973 1.44 christos if (ndx == 0 || ndx == 1)
11974 1.44 christos p = "long";
11975 1.44 christos break;
11976 1.1 christos default:
11977 1.1 christos break;
11978 1.1 christos };
11979 1.1 christos if (p != NULL)
11980 1.1 christos strlcpy(desc, p, descsz);
11981 1.1 christos }
11982