aoutm68k_syscallargs.h revision 1.13 1 1.1 scw /* $NetBSD: aoutm68k_syscallargs.h,v 1.13 2003/09/23 18:32:12 cl Exp $ */
2 1.1 scw
3 1.1 scw /*
4 1.1 scw * System call argument lists.
5 1.1 scw *
6 1.1 scw * DO NOT EDIT-- this file is automatically generated.
7 1.13 cl * created from NetBSD: syscalls.master,v 1.10 2003/09/23 18:31:03 cl Exp
8 1.1 scw */
9 1.1 scw
10 1.1 scw #ifndef _AOUTM68K_SYS__SYSCALLARGS_H_
11 1.7 mrg #define _AOUTM68K_SYS__SYSCALLARGS_H_
12 1.1 scw
13 1.1 scw #ifdef syscallarg
14 1.1 scw #undef syscallarg
15 1.1 scw #endif
16 1.1 scw
17 1.1 scw #define syscallarg(x) \
18 1.1 scw union { \
19 1.1 scw register_t pad; \
20 1.1 scw struct { x datum; } le; \
21 1.8 lukem struct { /* LINTED zero array dimension */ \
22 1.8 lukem int8_t pad[ /* CONSTCOND */ \
23 1.8 lukem (sizeof (register_t) < sizeof (x)) \
24 1.1 scw ? 0 \
25 1.1 scw : sizeof (register_t) - sizeof (x)]; \
26 1.1 scw x datum; \
27 1.1 scw } be; \
28 1.1 scw }
29 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
30 1.1 scw
31 1.1 scw struct aoutm68k_sys_open_args {
32 1.1 scw syscallarg(const char *) path;
33 1.1 scw syscallarg(int) flags;
34 1.1 scw syscallarg(mode_t) mode;
35 1.1 scw };
36 1.12 cl #else
37 1.12 cl #endif
38 1.12 cl #ifdef COMPAT_43
39 1.12 cl #else
40 1.12 cl #endif
41 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
42 1.1 scw
43 1.1 scw struct aoutm68k_sys_link_args {
44 1.1 scw syscallarg(const char *) path;
45 1.1 scw syscallarg(const char *) link;
46 1.1 scw };
47 1.1 scw
48 1.1 scw struct aoutm68k_sys_unlink_args {
49 1.1 scw syscallarg(const char *) path;
50 1.1 scw };
51 1.12 cl #else
52 1.12 cl #endif
53 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
54 1.1 scw
55 1.1 scw struct aoutm68k_sys_chdir_args {
56 1.1 scw syscallarg(const char *) path;
57 1.1 scw };
58 1.12 cl #else
59 1.12 cl #endif
60 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
61 1.1 scw
62 1.1 scw struct aoutm68k_sys_chmod_args {
63 1.1 scw syscallarg(const char *) path;
64 1.1 scw syscallarg(mode_t) mode;
65 1.1 scw };
66 1.1 scw
67 1.1 scw struct aoutm68k_sys_chown_args {
68 1.1 scw syscallarg(const char *) path;
69 1.1 scw syscallarg(uid_t) uid;
70 1.1 scw syscallarg(gid_t) gid;
71 1.1 scw };
72 1.12 cl #else
73 1.12 cl #endif
74 1.12 cl #ifdef COMPAT_43
75 1.12 cl #else
76 1.12 cl #endif
77 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
78 1.1 scw
79 1.1 scw struct aoutm68k_sys_access_args {
80 1.1 scw syscallarg(const char *) path;
81 1.1 scw syscallarg(int) flags;
82 1.1 scw };
83 1.1 scw
84 1.1 scw struct aoutm68k_sys_chflags_args {
85 1.1 scw syscallarg(const char *) path;
86 1.1 scw syscallarg(u_long) flags;
87 1.1 scw };
88 1.12 cl #else
89 1.12 cl #endif
90 1.12 cl #ifdef COMPAT_43
91 1.1 scw
92 1.1 scw struct aoutm68k_compat_43_sys_stat_args {
93 1.1 scw syscallarg(const char *) path;
94 1.1 scw syscallarg(struct aoutm68k_stat43 *) ub;
95 1.1 scw };
96 1.12 cl #else
97 1.12 cl #endif
98 1.12 cl #ifdef COMPAT_43
99 1.1 scw
100 1.1 scw struct aoutm68k_compat_43_sys_lstat_args {
101 1.1 scw syscallarg(const char *) path;
102 1.1 scw syscallarg(struct aoutm68k_stat43 *) ub;
103 1.1 scw };
104 1.12 cl #else
105 1.12 cl #endif
106 1.12 cl #if defined(KTRACE) || !defined(_KERNEL)
107 1.12 cl #else
108 1.12 cl #endif
109 1.12 cl #ifdef COMPAT_13
110 1.12 cl #else
111 1.12 cl #endif
112 1.12 cl #ifdef COMPAT_13
113 1.12 cl #else
114 1.12 cl #endif
115 1.12 cl #ifdef COMPAT_13
116 1.12 cl #else
117 1.12 cl #endif
118 1.1 scw
119 1.1 scw struct aoutm68k_sys_ioctl_args {
120 1.1 scw syscallarg(int) fd;
121 1.1 scw syscallarg(u_long) com;
122 1.1 scw syscallarg(void *) data;
123 1.1 scw };
124 1.12 cl #ifdef COMPAT_12
125 1.12 cl #else
126 1.12 cl #endif
127 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
128 1.1 scw
129 1.1 scw struct aoutm68k_sys_revoke_args {
130 1.1 scw syscallarg(const char *) path;
131 1.1 scw };
132 1.1 scw
133 1.1 scw struct aoutm68k_sys_symlink_args {
134 1.1 scw syscallarg(const char *) path;
135 1.1 scw syscallarg(const char *) link;
136 1.1 scw };
137 1.1 scw
138 1.1 scw struct aoutm68k_sys_readlink_args {
139 1.1 scw syscallarg(const char *) path;
140 1.1 scw syscallarg(char *) buf;
141 1.1 scw syscallarg(size_t) count;
142 1.1 scw };
143 1.1 scw
144 1.1 scw struct aoutm68k_sys_execve_args {
145 1.1 scw syscallarg(const char *) path;
146 1.1 scw syscallarg(char *const *) argp;
147 1.1 scw syscallarg(char *const *) envp;
148 1.1 scw };
149 1.12 cl #else
150 1.12 cl #endif
151 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
152 1.1 scw
153 1.1 scw struct aoutm68k_sys_chroot_args {
154 1.1 scw syscallarg(const char *) path;
155 1.1 scw };
156 1.12 cl #else
157 1.12 cl #endif
158 1.12 cl #ifdef COMPAT_43
159 1.1 scw
160 1.1 scw struct aoutm68k_compat_43_sys_fstat_args {
161 1.1 scw syscallarg(int) fd;
162 1.1 scw syscallarg(struct aoutm68k_stat43 *) sb;
163 1.1 scw };
164 1.12 cl #else
165 1.12 cl #endif
166 1.12 cl #ifdef COMPAT_12
167 1.12 cl #else
168 1.12 cl #endif
169 1.12 cl #ifdef COMPAT_43
170 1.12 cl #else
171 1.12 cl #endif
172 1.12 cl #ifdef COMPAT_43
173 1.12 cl #else
174 1.12 cl #endif
175 1.12 cl #ifdef COMPAT_12
176 1.12 cl #else
177 1.12 cl #endif
178 1.12 cl #ifdef COMPAT_43
179 1.12 cl #else
180 1.12 cl #endif
181 1.12 cl #ifdef COMPAT_43
182 1.12 cl #else
183 1.12 cl #endif
184 1.12 cl #ifdef COMPAT_43
185 1.12 cl #else
186 1.12 cl #endif
187 1.12 cl #ifdef COMPAT_13
188 1.12 cl #else
189 1.12 cl #endif
190 1.12 cl #ifdef COMPAT_43
191 1.12 cl #else
192 1.12 cl #endif
193 1.12 cl #ifdef COMPAT_13
194 1.12 cl #else
195 1.12 cl #endif
196 1.12 cl #ifdef COMPAT_43
197 1.12 cl #else
198 1.12 cl #endif
199 1.12 cl #ifdef COMPAT_43
200 1.12 cl #else
201 1.12 cl #endif
202 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
203 1.1 scw
204 1.1 scw struct aoutm68k_sys_rename_args {
205 1.1 scw syscallarg(const char *) from;
206 1.1 scw syscallarg(const char *) to;
207 1.1 scw };
208 1.12 cl #else
209 1.12 cl #endif
210 1.12 cl #ifdef COMPAT_43
211 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
212 1.1 scw
213 1.1 scw struct aoutm68k_compat_43_sys_truncate_args {
214 1.1 scw syscallarg(const char *) path;
215 1.1 scw syscallarg(long) length;
216 1.1 scw };
217 1.12 cl #else
218 1.12 cl #endif
219 1.12 cl #else
220 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
221 1.12 cl #else
222 1.12 cl #endif
223 1.12 cl #endif
224 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
225 1.1 scw
226 1.1 scw struct aoutm68k_sys_rmdir_args {
227 1.1 scw syscallarg(const char *) path;
228 1.1 scw };
229 1.1 scw
230 1.1 scw struct aoutm68k_sys_utimes_args {
231 1.1 scw syscallarg(const char *) path;
232 1.1 scw syscallarg(const struct timeval *) tptr;
233 1.1 scw };
234 1.12 cl #else
235 1.12 cl #endif
236 1.12 cl #ifdef COMPAT_43
237 1.12 cl #else
238 1.12 cl #endif
239 1.12 cl #ifdef COMPAT_43
240 1.12 cl #else
241 1.12 cl #endif
242 1.12 cl #if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
243 1.12 cl #else
244 1.12 cl #endif
245 1.12 cl #ifdef COMPAT_43
246 1.12 cl #else
247 1.12 cl #endif
248 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
249 1.1 scw
250 1.1 scw struct aoutm68k_sys_statfs_args {
251 1.1 scw syscallarg(const char *) path;
252 1.1 scw syscallarg(struct statfs *) buf;
253 1.1 scw };
254 1.12 cl #else
255 1.12 cl #endif
256 1.12 cl #if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
257 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
258 1.1 scw
259 1.1 scw struct aoutm68k_sys_getfh_args {
260 1.1 scw syscallarg(const char *) fname;
261 1.1 scw syscallarg(fhandle_t *) fhp;
262 1.1 scw };
263 1.12 cl #else
264 1.12 cl #endif
265 1.12 cl #else
266 1.12 cl #endif
267 1.12 cl #ifdef COMPAT_09
268 1.12 cl #else
269 1.12 cl #endif
270 1.12 cl #if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
271 1.12 cl #else
272 1.12 cl #endif
273 1.12 cl #if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
274 1.12 cl #else
275 1.12 cl #endif
276 1.12 cl #if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
277 1.12 cl #else
278 1.12 cl #endif
279 1.12 cl #if defined(NTP) || !defined(_KERNEL)
280 1.12 cl #else
281 1.12 cl #endif
282 1.12 cl #if defined(LFS) || !defined(_KERNEL)
283 1.12 cl #else
284 1.12 cl #endif
285 1.12 cl #ifdef COMPAT_12
286 1.1 scw
287 1.1 scw struct aoutm68k_compat_12_sys_stat_args {
288 1.1 scw syscallarg(const char *) path;
289 1.1 scw syscallarg(struct aoutm68k_stat12 *) ub;
290 1.1 scw };
291 1.1 scw
292 1.1 scw struct aoutm68k_compat_12_sys_fstat_args {
293 1.1 scw syscallarg(int) fd;
294 1.1 scw syscallarg(struct aoutm68k_stat12 *) sb;
295 1.1 scw };
296 1.1 scw
297 1.1 scw struct aoutm68k_compat_12_sys_lstat_args {
298 1.1 scw syscallarg(const char *) path;
299 1.1 scw syscallarg(struct aoutm68k_stat12 *) ub;
300 1.1 scw };
301 1.12 cl #else
302 1.12 cl #endif
303 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
304 1.1 scw
305 1.1 scw struct aoutm68k_sys_pathconf_args {
306 1.1 scw syscallarg(const char *) path;
307 1.1 scw syscallarg(int) name;
308 1.1 scw };
309 1.12 cl #else
310 1.12 cl #endif
311 1.12 cl #ifdef COMPAT_12
312 1.12 cl #else
313 1.12 cl #endif
314 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
315 1.1 scw
316 1.1 scw struct aoutm68k_sys_truncate_args {
317 1.1 scw syscallarg(const char *) path;
318 1.1 scw syscallarg(int) pad;
319 1.1 scw syscallarg(off_t) length;
320 1.1 scw };
321 1.12 cl #else
322 1.12 cl #endif
323 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
324 1.1 scw
325 1.1 scw struct aoutm68k_sys_undelete_args {
326 1.1 scw syscallarg(const char *) path;
327 1.1 scw };
328 1.12 cl #else
329 1.12 cl #endif
330 1.12 cl #if defined(LKM) || !defined(_KERNEL)
331 1.12 cl #else /* !LKM */
332 1.12 cl #endif /* !LKM */
333 1.12 cl #if defined(SYSVSEM) || !defined(_KERNEL)
334 1.12 cl #ifdef COMPAT_14
335 1.12 cl #else
336 1.12 cl #endif
337 1.12 cl #else
338 1.12 cl #endif
339 1.12 cl #if defined(SYSVMSG) || !defined(_KERNEL)
340 1.12 cl #ifdef COMPAT_14
341 1.12 cl #else
342 1.12 cl #endif
343 1.12 cl #else
344 1.12 cl #endif
345 1.12 cl #if defined(SYSVSHM) || !defined(_KERNEL)
346 1.12 cl #ifdef COMPAT_14
347 1.12 cl #else
348 1.12 cl #endif
349 1.12 cl #else
350 1.12 cl #endif
351 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
352 1.1 scw
353 1.1 scw struct aoutm68k_sys___posix_rename_args {
354 1.1 scw syscallarg(const char *) from;
355 1.1 scw syscallarg(const char *) to;
356 1.1 scw };
357 1.12 cl #else
358 1.12 cl #endif
359 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
360 1.1 scw
361 1.1 scw struct aoutm68k_sys_lchmod_args {
362 1.1 scw syscallarg(const char *) path;
363 1.1 scw syscallarg(mode_t) mode;
364 1.1 scw };
365 1.1 scw
366 1.1 scw struct aoutm68k_sys_lchown_args {
367 1.1 scw syscallarg(const char *) path;
368 1.1 scw syscallarg(uid_t) uid;
369 1.1 scw syscallarg(gid_t) gid;
370 1.1 scw };
371 1.1 scw
372 1.1 scw struct aoutm68k_sys_lutimes_args {
373 1.1 scw syscallarg(const char *) path;
374 1.1 scw syscallarg(const struct timeval *) tptr;
375 1.1 scw };
376 1.12 cl #else
377 1.12 cl #endif
378 1.1 scw
379 1.1 scw struct aoutm68k_sys___stat13_args {
380 1.1 scw syscallarg(const char *) path;
381 1.1 scw syscallarg(struct aoutm68k_stat *) ub;
382 1.1 scw };
383 1.1 scw
384 1.1 scw struct aoutm68k_sys___fstat13_args {
385 1.1 scw syscallarg(int) fd;
386 1.1 scw syscallarg(struct aoutm68k_stat *) sb;
387 1.1 scw };
388 1.1 scw
389 1.1 scw struct aoutm68k_sys___lstat13_args {
390 1.1 scw syscallarg(const char *) path;
391 1.1 scw syscallarg(struct aoutm68k_stat *) ub;
392 1.1 scw };
393 1.12 cl #ifdef COMPAT_AOUT_ALTPATH
394 1.1 scw
395 1.1 scw struct aoutm68k_sys___posix_chown_args {
396 1.1 scw syscallarg(const char *) path;
397 1.1 scw syscallarg(uid_t) uid;
398 1.1 scw syscallarg(gid_t) gid;
399 1.1 scw };
400 1.12 cl #else
401 1.12 cl #endif
402 1.12 cl #if defined(KTRACE) || !defined(_KERNEL)
403 1.12 cl #else
404 1.12 cl #endif
405 1.12 cl #ifdef COMPAT_16
406 1.12 cl #else
407 1.12 cl #endif
408 1.13 cl #ifdef COMPAT_16
409 1.13 cl #else
410 1.13 cl #endif
411 1.1 scw
412 1.1 scw struct aoutm68k_sys_fhstat_args {
413 1.1 scw syscallarg(const fhandle_t *) fhp;
414 1.1 scw syscallarg(struct aoutm68k_stat *) sb;
415 1.1 scw };
416 1.12 cl #if defined(SYSVSEM) || !defined(_KERNEL)
417 1.12 cl #else
418 1.12 cl #endif
419 1.12 cl #if defined(SYSVMSG) || !defined(_KERNEL)
420 1.12 cl #else
421 1.12 cl #endif
422 1.12 cl #if defined(SYSVSHM) || !defined(_KERNEL)
423 1.12 cl #else
424 1.12 cl #endif
425 1.1 scw
426 1.1 scw /*
427 1.1 scw * System call prototypes.
428 1.1 scw */
429 1.1 scw
430 1.10 thorpej int sys_exit(struct lwp *, void *, register_t *);
431 1.10 thorpej int sys_fork(struct lwp *, void *, register_t *);
432 1.10 thorpej int sys_read(struct lwp *, void *, register_t *);
433 1.10 thorpej int sys_write(struct lwp *, void *, register_t *);
434 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
435 1.10 thorpej int aoutm68k_sys_open(struct lwp *, void *, register_t *);
436 1.6 tsutsui #else
437 1.10 thorpej int sys_open(struct lwp *, void *, register_t *);
438 1.6 tsutsui #endif
439 1.10 thorpej int sys_close(struct lwp *, void *, register_t *);
440 1.10 thorpej int sys_wait4(struct lwp *, void *, register_t *);
441 1.1 scw #ifdef COMPAT_43
442 1.10 thorpej int compat_43_sys_creat(struct lwp *, void *, register_t *);
443 1.1 scw #else
444 1.1 scw #endif
445 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
446 1.10 thorpej int aoutm68k_sys_link(struct lwp *, void *, register_t *);
447 1.10 thorpej int aoutm68k_sys_unlink(struct lwp *, void *, register_t *);
448 1.6 tsutsui #else
449 1.10 thorpej int sys_link(struct lwp *, void *, register_t *);
450 1.10 thorpej int sys_unlink(struct lwp *, void *, register_t *);
451 1.6 tsutsui #endif
452 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
453 1.10 thorpej int aoutm68k_sys_chdir(struct lwp *, void *, register_t *);
454 1.6 tsutsui #else
455 1.10 thorpej int sys_chdir(struct lwp *, void *, register_t *);
456 1.6 tsutsui #endif
457 1.10 thorpej int sys_fchdir(struct lwp *, void *, register_t *);
458 1.10 thorpej int sys_mknod(struct lwp *, void *, register_t *);
459 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
460 1.10 thorpej int aoutm68k_sys_chmod(struct lwp *, void *, register_t *);
461 1.10 thorpej int aoutm68k_sys_chown(struct lwp *, void *, register_t *);
462 1.6 tsutsui #else
463 1.10 thorpej int sys_chmod(struct lwp *, void *, register_t *);
464 1.10 thorpej int sys_chown(struct lwp *, void *, register_t *);
465 1.6 tsutsui #endif
466 1.10 thorpej int sys_obreak(struct lwp *, void *, register_t *);
467 1.10 thorpej int sys_getfsstat(struct lwp *, void *, register_t *);
468 1.1 scw #ifdef COMPAT_43
469 1.10 thorpej int compat_43_sys_lseek(struct lwp *, void *, register_t *);
470 1.1 scw #else
471 1.1 scw #endif
472 1.10 thorpej int sys_getpid(struct lwp *, void *, register_t *);
473 1.10 thorpej int sys_mount(struct lwp *, void *, register_t *);
474 1.10 thorpej int sys_unmount(struct lwp *, void *, register_t *);
475 1.10 thorpej int sys_setuid(struct lwp *, void *, register_t *);
476 1.10 thorpej int sys_getuid(struct lwp *, void *, register_t *);
477 1.10 thorpej int sys_geteuid(struct lwp *, void *, register_t *);
478 1.10 thorpej int sys_ptrace(struct lwp *, void *, register_t *);
479 1.10 thorpej int sys_recvmsg(struct lwp *, void *, register_t *);
480 1.10 thorpej int sys_sendmsg(struct lwp *, void *, register_t *);
481 1.10 thorpej int sys_recvfrom(struct lwp *, void *, register_t *);
482 1.10 thorpej int sys_accept(struct lwp *, void *, register_t *);
483 1.10 thorpej int sys_getpeername(struct lwp *, void *, register_t *);
484 1.10 thorpej int sys_getsockname(struct lwp *, void *, register_t *);
485 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
486 1.10 thorpej int aoutm68k_sys_access(struct lwp *, void *, register_t *);
487 1.10 thorpej int aoutm68k_sys_chflags(struct lwp *, void *, register_t *);
488 1.6 tsutsui #else
489 1.10 thorpej int sys_access(struct lwp *, void *, register_t *);
490 1.10 thorpej int sys_chflags(struct lwp *, void *, register_t *);
491 1.6 tsutsui #endif
492 1.10 thorpej int sys_fchflags(struct lwp *, void *, register_t *);
493 1.10 thorpej int sys_sync(struct lwp *, void *, register_t *);
494 1.10 thorpej int sys_kill(struct lwp *, void *, register_t *);
495 1.1 scw #ifdef COMPAT_43
496 1.10 thorpej int aoutm68k_compat_43_sys_stat(struct lwp *, void *, register_t *);
497 1.1 scw #else
498 1.1 scw #endif
499 1.10 thorpej int sys_getppid(struct lwp *, void *, register_t *);
500 1.1 scw #ifdef COMPAT_43
501 1.10 thorpej int aoutm68k_compat_43_sys_lstat(struct lwp *, void *, register_t *);
502 1.1 scw #else
503 1.1 scw #endif
504 1.10 thorpej int sys_dup(struct lwp *, void *, register_t *);
505 1.10 thorpej int sys_pipe(struct lwp *, void *, register_t *);
506 1.10 thorpej int sys_getegid(struct lwp *, void *, register_t *);
507 1.10 thorpej int sys_profil(struct lwp *, void *, register_t *);
508 1.1 scw #if defined(KTRACE) || !defined(_KERNEL)
509 1.10 thorpej int sys_ktrace(struct lwp *, void *, register_t *);
510 1.1 scw #else
511 1.1 scw #endif
512 1.1 scw #ifdef COMPAT_13
513 1.10 thorpej int compat_13_sys_sigaction(struct lwp *, void *, register_t *);
514 1.1 scw #else
515 1.1 scw #endif
516 1.10 thorpej int sys_getgid(struct lwp *, void *, register_t *);
517 1.1 scw #ifdef COMPAT_13
518 1.10 thorpej int compat_13_sys_sigprocmask(struct lwp *, void *, register_t *);
519 1.1 scw #else
520 1.1 scw #endif
521 1.10 thorpej int sys___getlogin(struct lwp *, void *, register_t *);
522 1.10 thorpej int sys___setlogin(struct lwp *, void *, register_t *);
523 1.10 thorpej int sys_acct(struct lwp *, void *, register_t *);
524 1.1 scw #ifdef COMPAT_13
525 1.10 thorpej int compat_13_sys_sigpending(struct lwp *, void *, register_t *);
526 1.10 thorpej int compat_13_sys_sigaltstack(struct lwp *, void *, register_t *);
527 1.1 scw #else
528 1.1 scw #endif
529 1.10 thorpej int aoutm68k_sys_ioctl(struct lwp *, void *, register_t *);
530 1.1 scw #ifdef COMPAT_12
531 1.10 thorpej int compat_12_sys_reboot(struct lwp *, void *, register_t *);
532 1.1 scw #else
533 1.1 scw #endif
534 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
535 1.10 thorpej int aoutm68k_sys_revoke(struct lwp *, void *, register_t *);
536 1.10 thorpej int aoutm68k_sys_symlink(struct lwp *, void *, register_t *);
537 1.10 thorpej int aoutm68k_sys_readlink(struct lwp *, void *, register_t *);
538 1.10 thorpej int aoutm68k_sys_execve(struct lwp *, void *, register_t *);
539 1.6 tsutsui #else
540 1.10 thorpej int sys_revoke(struct lwp *, void *, register_t *);
541 1.10 thorpej int sys_symlink(struct lwp *, void *, register_t *);
542 1.10 thorpej int sys_readlink(struct lwp *, void *, register_t *);
543 1.10 thorpej int sys_execve(struct lwp *, void *, register_t *);
544 1.6 tsutsui #endif
545 1.10 thorpej int sys_umask(struct lwp *, void *, register_t *);
546 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
547 1.10 thorpej int aoutm68k_sys_chroot(struct lwp *, void *, register_t *);
548 1.6 tsutsui #else
549 1.10 thorpej int sys_chroot(struct lwp *, void *, register_t *);
550 1.6 tsutsui #endif
551 1.1 scw #ifdef COMPAT_43
552 1.10 thorpej int aoutm68k_compat_43_sys_fstat(struct lwp *, void *, register_t *);
553 1.10 thorpej int compat_43_sys_getkerninfo(struct lwp *, void *, register_t *);
554 1.10 thorpej int compat_43_sys_getpagesize(struct lwp *, void *, register_t *);
555 1.1 scw #else
556 1.1 scw #endif
557 1.1 scw #ifdef COMPAT_12
558 1.10 thorpej int compat_12_sys_msync(struct lwp *, void *, register_t *);
559 1.1 scw #else
560 1.1 scw #endif
561 1.10 thorpej int sys_vfork(struct lwp *, void *, register_t *);
562 1.10 thorpej int sys_sbrk(struct lwp *, void *, register_t *);
563 1.10 thorpej int sys_sstk(struct lwp *, void *, register_t *);
564 1.1 scw #ifdef COMPAT_43
565 1.10 thorpej int compat_43_sys_mmap(struct lwp *, void *, register_t *);
566 1.1 scw #else
567 1.1 scw #endif
568 1.10 thorpej int sys_ovadvise(struct lwp *, void *, register_t *);
569 1.10 thorpej int sys_munmap(struct lwp *, void *, register_t *);
570 1.10 thorpej int sys_mprotect(struct lwp *, void *, register_t *);
571 1.10 thorpej int sys_madvise(struct lwp *, void *, register_t *);
572 1.10 thorpej int sys_mincore(struct lwp *, void *, register_t *);
573 1.10 thorpej int sys_getgroups(struct lwp *, void *, register_t *);
574 1.10 thorpej int sys_setgroups(struct lwp *, void *, register_t *);
575 1.10 thorpej int sys_getpgrp(struct lwp *, void *, register_t *);
576 1.10 thorpej int sys_setpgid(struct lwp *, void *, register_t *);
577 1.10 thorpej int sys_setitimer(struct lwp *, void *, register_t *);
578 1.1 scw #ifdef COMPAT_43
579 1.10 thorpej int compat_43_sys_wait(struct lwp *, void *, register_t *);
580 1.1 scw #else
581 1.1 scw #endif
582 1.1 scw #ifdef COMPAT_12
583 1.10 thorpej int compat_12_sys_swapon(struct lwp *, void *, register_t *);
584 1.1 scw #else
585 1.1 scw #endif
586 1.10 thorpej int sys_getitimer(struct lwp *, void *, register_t *);
587 1.1 scw #ifdef COMPAT_43
588 1.10 thorpej int compat_43_sys_gethostname(struct lwp *, void *, register_t *);
589 1.10 thorpej int compat_43_sys_sethostname(struct lwp *, void *, register_t *);
590 1.10 thorpej int compat_43_sys_getdtablesize(struct lwp *, void *, register_t *);
591 1.1 scw #else
592 1.1 scw #endif
593 1.10 thorpej int sys_dup2(struct lwp *, void *, register_t *);
594 1.10 thorpej int sys_fcntl(struct lwp *, void *, register_t *);
595 1.10 thorpej int sys_select(struct lwp *, void *, register_t *);
596 1.10 thorpej int sys_fsync(struct lwp *, void *, register_t *);
597 1.10 thorpej int sys_setpriority(struct lwp *, void *, register_t *);
598 1.10 thorpej int sys_socket(struct lwp *, void *, register_t *);
599 1.10 thorpej int sys_connect(struct lwp *, void *, register_t *);
600 1.1 scw #ifdef COMPAT_43
601 1.10 thorpej int compat_43_sys_accept(struct lwp *, void *, register_t *);
602 1.1 scw #else
603 1.1 scw #endif
604 1.10 thorpej int sys_getpriority(struct lwp *, void *, register_t *);
605 1.1 scw #ifdef COMPAT_43
606 1.10 thorpej int compat_43_sys_send(struct lwp *, void *, register_t *);
607 1.10 thorpej int compat_43_sys_recv(struct lwp *, void *, register_t *);
608 1.1 scw #else
609 1.1 scw #endif
610 1.1 scw #ifdef COMPAT_13
611 1.10 thorpej int compat_13_sys_sigreturn(struct lwp *, void *, register_t *);
612 1.1 scw #else
613 1.1 scw #endif
614 1.10 thorpej int sys_bind(struct lwp *, void *, register_t *);
615 1.10 thorpej int sys_setsockopt(struct lwp *, void *, register_t *);
616 1.10 thorpej int sys_listen(struct lwp *, void *, register_t *);
617 1.1 scw #ifdef COMPAT_43
618 1.10 thorpej int compat_43_sys_sigvec(struct lwp *, void *, register_t *);
619 1.10 thorpej int compat_43_sys_sigblock(struct lwp *, void *, register_t *);
620 1.10 thorpej int compat_43_sys_sigsetmask(struct lwp *, void *, register_t *);
621 1.1 scw #else
622 1.1 scw #endif
623 1.1 scw #ifdef COMPAT_13
624 1.10 thorpej int compat_13_sys_sigsuspend(struct lwp *, void *, register_t *);
625 1.1 scw #else
626 1.1 scw #endif
627 1.1 scw #ifdef COMPAT_43
628 1.10 thorpej int compat_43_sys_sigstack(struct lwp *, void *, register_t *);
629 1.10 thorpej int compat_43_sys_recvmsg(struct lwp *, void *, register_t *);
630 1.10 thorpej int compat_43_sys_sendmsg(struct lwp *, void *, register_t *);
631 1.1 scw #else
632 1.1 scw #endif
633 1.10 thorpej int sys_gettimeofday(struct lwp *, void *, register_t *);
634 1.10 thorpej int sys_getrusage(struct lwp *, void *, register_t *);
635 1.10 thorpej int sys_getsockopt(struct lwp *, void *, register_t *);
636 1.10 thorpej int sys_readv(struct lwp *, void *, register_t *);
637 1.10 thorpej int sys_writev(struct lwp *, void *, register_t *);
638 1.10 thorpej int sys_settimeofday(struct lwp *, void *, register_t *);
639 1.10 thorpej int sys_fchown(struct lwp *, void *, register_t *);
640 1.10 thorpej int sys_fchmod(struct lwp *, void *, register_t *);
641 1.1 scw #ifdef COMPAT_43
642 1.10 thorpej int compat_43_sys_recvfrom(struct lwp *, void *, register_t *);
643 1.1 scw #else
644 1.1 scw #endif
645 1.10 thorpej int sys_setreuid(struct lwp *, void *, register_t *);
646 1.10 thorpej int sys_setregid(struct lwp *, void *, register_t *);
647 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
648 1.10 thorpej int aoutm68k_sys_rename(struct lwp *, void *, register_t *);
649 1.6 tsutsui #else
650 1.10 thorpej int sys_rename(struct lwp *, void *, register_t *);
651 1.6 tsutsui #endif
652 1.1 scw #ifdef COMPAT_43
653 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
654 1.10 thorpej int aoutm68k_compat_43_sys_truncate(struct lwp *, void *, register_t *);
655 1.6 tsutsui #else
656 1.10 thorpej int compat_43_sys_truncate(struct lwp *, void *, register_t *);
657 1.6 tsutsui #endif
658 1.10 thorpej int compat_43_sys_ftruncate(struct lwp *, void *, register_t *);
659 1.1 scw #else
660 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
661 1.6 tsutsui #else
662 1.6 tsutsui #endif
663 1.1 scw #endif
664 1.10 thorpej int sys_flock(struct lwp *, void *, register_t *);
665 1.10 thorpej int sys_mkfifo(struct lwp *, void *, register_t *);
666 1.10 thorpej int sys_sendto(struct lwp *, void *, register_t *);
667 1.10 thorpej int sys_shutdown(struct lwp *, void *, register_t *);
668 1.10 thorpej int sys_socketpair(struct lwp *, void *, register_t *);
669 1.10 thorpej int sys_mkdir(struct lwp *, void *, register_t *);
670 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
671 1.10 thorpej int aoutm68k_sys_rmdir(struct lwp *, void *, register_t *);
672 1.10 thorpej int aoutm68k_sys_utimes(struct lwp *, void *, register_t *);
673 1.6 tsutsui #else
674 1.10 thorpej int sys_rmdir(struct lwp *, void *, register_t *);
675 1.10 thorpej int sys_utimes(struct lwp *, void *, register_t *);
676 1.6 tsutsui #endif
677 1.10 thorpej int sys_adjtime(struct lwp *, void *, register_t *);
678 1.1 scw #ifdef COMPAT_43
679 1.10 thorpej int compat_43_sys_getpeername(struct lwp *, void *, register_t *);
680 1.10 thorpej int compat_43_sys_gethostid(struct lwp *, void *, register_t *);
681 1.10 thorpej int compat_43_sys_sethostid(struct lwp *, void *, register_t *);
682 1.10 thorpej int compat_43_sys_getrlimit(struct lwp *, void *, register_t *);
683 1.10 thorpej int compat_43_sys_setrlimit(struct lwp *, void *, register_t *);
684 1.10 thorpej int compat_43_sys_killpg(struct lwp *, void *, register_t *);
685 1.1 scw #else
686 1.1 scw #endif
687 1.10 thorpej int sys_setsid(struct lwp *, void *, register_t *);
688 1.10 thorpej int sys_quotactl(struct lwp *, void *, register_t *);
689 1.1 scw #ifdef COMPAT_43
690 1.10 thorpej int compat_43_sys_quota(struct lwp *, void *, register_t *);
691 1.10 thorpej int compat_43_sys_getsockname(struct lwp *, void *, register_t *);
692 1.1 scw #else
693 1.1 scw #endif
694 1.1 scw #if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
695 1.10 thorpej int sys_nfssvc(struct lwp *, void *, register_t *);
696 1.1 scw #else
697 1.1 scw #endif
698 1.1 scw #ifdef COMPAT_43
699 1.10 thorpej int compat_43_sys_getdirentries(struct lwp *, void *, register_t *);
700 1.1 scw #else
701 1.1 scw #endif
702 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
703 1.10 thorpej int aoutm68k_sys_statfs(struct lwp *, void *, register_t *);
704 1.6 tsutsui #else
705 1.10 thorpej int sys_statfs(struct lwp *, void *, register_t *);
706 1.6 tsutsui #endif
707 1.10 thorpej int sys_fstatfs(struct lwp *, void *, register_t *);
708 1.1 scw #if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
709 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
710 1.10 thorpej int aoutm68k_sys_getfh(struct lwp *, void *, register_t *);
711 1.1 scw #else
712 1.10 thorpej int sys_getfh(struct lwp *, void *, register_t *);
713 1.6 tsutsui #endif
714 1.6 tsutsui #else
715 1.1 scw #endif
716 1.1 scw #ifdef COMPAT_09
717 1.10 thorpej int compat_09_sys_getdomainname(struct lwp *, void *, register_t *);
718 1.10 thorpej int compat_09_sys_setdomainname(struct lwp *, void *, register_t *);
719 1.10 thorpej int compat_09_sys_uname(struct lwp *, void *, register_t *);
720 1.1 scw #else
721 1.1 scw #endif
722 1.10 thorpej int sys_sysarch(struct lwp *, void *, register_t *);
723 1.9 eeh #if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
724 1.10 thorpej int compat_10_sys_semsys(struct lwp *, void *, register_t *);
725 1.1 scw #else
726 1.1 scw #endif
727 1.9 eeh #if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
728 1.10 thorpej int compat_10_sys_msgsys(struct lwp *, void *, register_t *);
729 1.1 scw #else
730 1.1 scw #endif
731 1.9 eeh #if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
732 1.10 thorpej int compat_10_sys_shmsys(struct lwp *, void *, register_t *);
733 1.1 scw #else
734 1.1 scw #endif
735 1.10 thorpej int sys_pread(struct lwp *, void *, register_t *);
736 1.10 thorpej int sys_pwrite(struct lwp *, void *, register_t *);
737 1.10 thorpej int sys_ntp_gettime(struct lwp *, void *, register_t *);
738 1.1 scw #if defined(NTP) || !defined(_KERNEL)
739 1.10 thorpej int sys_ntp_adjtime(struct lwp *, void *, register_t *);
740 1.1 scw #else
741 1.1 scw #endif
742 1.10 thorpej int sys_setgid(struct lwp *, void *, register_t *);
743 1.10 thorpej int sys_setegid(struct lwp *, void *, register_t *);
744 1.10 thorpej int sys_seteuid(struct lwp *, void *, register_t *);
745 1.1 scw #if defined(LFS) || !defined(_KERNEL)
746 1.10 thorpej int sys_lfs_bmapv(struct lwp *, void *, register_t *);
747 1.10 thorpej int sys_lfs_markv(struct lwp *, void *, register_t *);
748 1.10 thorpej int sys_lfs_segclean(struct lwp *, void *, register_t *);
749 1.10 thorpej int sys_lfs_segwait(struct lwp *, void *, register_t *);
750 1.1 scw #else
751 1.1 scw #endif
752 1.1 scw #ifdef COMPAT_12
753 1.10 thorpej int aoutm68k_compat_12_sys_stat(struct lwp *, void *, register_t *);
754 1.10 thorpej int aoutm68k_compat_12_sys_fstat(struct lwp *, void *, register_t *);
755 1.10 thorpej int aoutm68k_compat_12_sys_lstat(struct lwp *, void *, register_t *);
756 1.1 scw #else
757 1.1 scw #endif
758 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
759 1.10 thorpej int aoutm68k_sys_pathconf(struct lwp *, void *, register_t *);
760 1.6 tsutsui #else
761 1.10 thorpej int sys_pathconf(struct lwp *, void *, register_t *);
762 1.6 tsutsui #endif
763 1.10 thorpej int sys_fpathconf(struct lwp *, void *, register_t *);
764 1.10 thorpej int sys_getrlimit(struct lwp *, void *, register_t *);
765 1.10 thorpej int sys_setrlimit(struct lwp *, void *, register_t *);
766 1.1 scw #ifdef COMPAT_12
767 1.10 thorpej int compat_12_sys_getdirentries(struct lwp *, void *, register_t *);
768 1.1 scw #else
769 1.1 scw #endif
770 1.10 thorpej int sys_mmap(struct lwp *, void *, register_t *);
771 1.10 thorpej int sys_lseek(struct lwp *, void *, register_t *);
772 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
773 1.10 thorpej int aoutm68k_sys_truncate(struct lwp *, void *, register_t *);
774 1.6 tsutsui #else
775 1.10 thorpej int sys_truncate(struct lwp *, void *, register_t *);
776 1.6 tsutsui #endif
777 1.10 thorpej int sys_ftruncate(struct lwp *, void *, register_t *);
778 1.10 thorpej int sys___sysctl(struct lwp *, void *, register_t *);
779 1.10 thorpej int sys_mlock(struct lwp *, void *, register_t *);
780 1.10 thorpej int sys_munlock(struct lwp *, void *, register_t *);
781 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
782 1.10 thorpej int aoutm68k_sys_undelete(struct lwp *, void *, register_t *);
783 1.6 tsutsui #else
784 1.10 thorpej int sys_undelete(struct lwp *, void *, register_t *);
785 1.6 tsutsui #endif
786 1.10 thorpej int sys_futimes(struct lwp *, void *, register_t *);
787 1.10 thorpej int sys_getpgid(struct lwp *, void *, register_t *);
788 1.10 thorpej int sys_reboot(struct lwp *, void *, register_t *);
789 1.10 thorpej int sys_poll(struct lwp *, void *, register_t *);
790 1.1 scw #if defined(LKM) || !defined(_KERNEL)
791 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
792 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
793 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
794 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
795 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
796 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
797 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
798 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
799 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
800 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
801 1.1 scw #else /* !LKM */
802 1.1 scw #endif /* !LKM */
803 1.1 scw #if defined(SYSVSEM) || !defined(_KERNEL)
804 1.1 scw #ifdef COMPAT_14
805 1.10 thorpej int compat_14_sys___semctl(struct lwp *, void *, register_t *);
806 1.1 scw #else
807 1.1 scw #endif
808 1.10 thorpej int sys_semget(struct lwp *, void *, register_t *);
809 1.10 thorpej int sys_semop(struct lwp *, void *, register_t *);
810 1.10 thorpej int sys_semconfig(struct lwp *, void *, register_t *);
811 1.1 scw #else
812 1.1 scw #endif
813 1.1 scw #if defined(SYSVMSG) || !defined(_KERNEL)
814 1.1 scw #ifdef COMPAT_14
815 1.10 thorpej int compat_14_sys_msgctl(struct lwp *, void *, register_t *);
816 1.1 scw #else
817 1.1 scw #endif
818 1.10 thorpej int sys_msgget(struct lwp *, void *, register_t *);
819 1.10 thorpej int sys_msgsnd(struct lwp *, void *, register_t *);
820 1.10 thorpej int sys_msgrcv(struct lwp *, void *, register_t *);
821 1.1 scw #else
822 1.1 scw #endif
823 1.1 scw #if defined(SYSVSHM) || !defined(_KERNEL)
824 1.10 thorpej int sys_shmat(struct lwp *, void *, register_t *);
825 1.1 scw #ifdef COMPAT_14
826 1.10 thorpej int compat_14_sys_shmctl(struct lwp *, void *, register_t *);
827 1.1 scw #else
828 1.1 scw #endif
829 1.10 thorpej int sys_shmdt(struct lwp *, void *, register_t *);
830 1.10 thorpej int sys_shmget(struct lwp *, void *, register_t *);
831 1.1 scw #else
832 1.1 scw #endif
833 1.10 thorpej int sys_clock_gettime(struct lwp *, void *, register_t *);
834 1.10 thorpej int sys_clock_settime(struct lwp *, void *, register_t *);
835 1.10 thorpej int sys_clock_getres(struct lwp *, void *, register_t *);
836 1.10 thorpej int sys_nanosleep(struct lwp *, void *, register_t *);
837 1.10 thorpej int sys_fdatasync(struct lwp *, void *, register_t *);
838 1.10 thorpej int sys_mlockall(struct lwp *, void *, register_t *);
839 1.10 thorpej int sys_munlockall(struct lwp *, void *, register_t *);
840 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
841 1.10 thorpej int aoutm68k_sys___posix_rename(struct lwp *, void *, register_t *);
842 1.6 tsutsui #else
843 1.10 thorpej int sys___posix_rename(struct lwp *, void *, register_t *);
844 1.6 tsutsui #endif
845 1.10 thorpej int sys_swapctl(struct lwp *, void *, register_t *);
846 1.10 thorpej int sys_getdents(struct lwp *, void *, register_t *);
847 1.10 thorpej int sys_minherit(struct lwp *, void *, register_t *);
848 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
849 1.10 thorpej int aoutm68k_sys_lchmod(struct lwp *, void *, register_t *);
850 1.10 thorpej int aoutm68k_sys_lchown(struct lwp *, void *, register_t *);
851 1.10 thorpej int aoutm68k_sys_lutimes(struct lwp *, void *, register_t *);
852 1.6 tsutsui #else
853 1.10 thorpej int sys_lchmod(struct lwp *, void *, register_t *);
854 1.10 thorpej int sys_lchown(struct lwp *, void *, register_t *);
855 1.10 thorpej int sys_lutimes(struct lwp *, void *, register_t *);
856 1.6 tsutsui #endif
857 1.10 thorpej int sys___msync13(struct lwp *, void *, register_t *);
858 1.10 thorpej int aoutm68k_sys___stat13(struct lwp *, void *, register_t *);
859 1.10 thorpej int aoutm68k_sys___fstat13(struct lwp *, void *, register_t *);
860 1.10 thorpej int aoutm68k_sys___lstat13(struct lwp *, void *, register_t *);
861 1.10 thorpej int sys___sigaltstack14(struct lwp *, void *, register_t *);
862 1.10 thorpej int sys___vfork14(struct lwp *, void *, register_t *);
863 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
864 1.10 thorpej int aoutm68k_sys___posix_chown(struct lwp *, void *, register_t *);
865 1.6 tsutsui #else
866 1.10 thorpej int sys___posix_chown(struct lwp *, void *, register_t *);
867 1.6 tsutsui #endif
868 1.10 thorpej int sys___posix_fchown(struct lwp *, void *, register_t *);
869 1.10 thorpej int sys___posix_lchown(struct lwp *, void *, register_t *);
870 1.10 thorpej int sys_getsid(struct lwp *, void *, register_t *);
871 1.1 scw #if defined(KTRACE) || !defined(_KERNEL)
872 1.10 thorpej int sys_fktrace(struct lwp *, void *, register_t *);
873 1.1 scw #else
874 1.1 scw #endif
875 1.10 thorpej int sys_preadv(struct lwp *, void *, register_t *);
876 1.10 thorpej int sys_pwritev(struct lwp *, void *, register_t *);
877 1.13 cl #ifdef COMPAT_16
878 1.13 cl int compat_16_sys___sigaction14(struct lwp *, void *, register_t *);
879 1.13 cl #else
880 1.13 cl #endif
881 1.10 thorpej int sys___sigpending14(struct lwp *, void *, register_t *);
882 1.10 thorpej int sys___sigprocmask14(struct lwp *, void *, register_t *);
883 1.10 thorpej int sys___sigsuspend14(struct lwp *, void *, register_t *);
884 1.12 cl #ifdef COMPAT_16
885 1.12 cl int compat_16_sys___sigreturn14(struct lwp *, void *, register_t *);
886 1.12 cl #else
887 1.12 cl #endif
888 1.10 thorpej int sys___getcwd(struct lwp *, void *, register_t *);
889 1.10 thorpej int sys_fchroot(struct lwp *, void *, register_t *);
890 1.10 thorpej int sys_fhopen(struct lwp *, void *, register_t *);
891 1.10 thorpej int aoutm68k_sys_fhstat(struct lwp *, void *, register_t *);
892 1.10 thorpej int sys_fhstatfs(struct lwp *, void *, register_t *);
893 1.1 scw #if defined(SYSVSEM) || !defined(_KERNEL)
894 1.10 thorpej int sys_____semctl13(struct lwp *, void *, register_t *);
895 1.1 scw #else
896 1.1 scw #endif
897 1.1 scw #if defined(SYSVMSG) || !defined(_KERNEL)
898 1.10 thorpej int sys___msgctl13(struct lwp *, void *, register_t *);
899 1.1 scw #else
900 1.1 scw #endif
901 1.1 scw #if defined(SYSVSHM) || !defined(_KERNEL)
902 1.10 thorpej int sys___shmctl13(struct lwp *, void *, register_t *);
903 1.1 scw #else
904 1.1 scw #endif
905 1.10 thorpej int sys_lchflags(struct lwp *, void *, register_t *);
906 1.10 thorpej int sys_issetugid(struct lwp *, void *, register_t *);
907 1.10 thorpej int sys_getcontext(struct lwp *, void *, register_t *);
908 1.10 thorpej int sys_setcontext(struct lwp *, void *, register_t *);
909 1.1 scw #endif /* _AOUTM68K_SYS__SYSCALLARGS_H_ */
910