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