aoutm68k_syscallargs.h revision 1.12 1 1.1 scw /* $NetBSD: aoutm68k_syscallargs.h,v 1.12 2003/09/22 14:32:16 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.12 cl * created from NetBSD: syscalls.master,v 1.9 2003/09/22 14:31:27 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.1 scw
409 1.1 scw struct aoutm68k_sys_fhstat_args {
410 1.1 scw syscallarg(const fhandle_t *) fhp;
411 1.1 scw syscallarg(struct aoutm68k_stat *) sb;
412 1.1 scw };
413 1.12 cl #if defined(SYSVSEM) || !defined(_KERNEL)
414 1.12 cl #else
415 1.12 cl #endif
416 1.12 cl #if defined(SYSVMSG) || !defined(_KERNEL)
417 1.12 cl #else
418 1.12 cl #endif
419 1.12 cl #if defined(SYSVSHM) || !defined(_KERNEL)
420 1.12 cl #else
421 1.12 cl #endif
422 1.1 scw
423 1.1 scw /*
424 1.1 scw * System call prototypes.
425 1.1 scw */
426 1.1 scw
427 1.10 thorpej int sys_exit(struct lwp *, void *, register_t *);
428 1.10 thorpej int sys_fork(struct lwp *, void *, register_t *);
429 1.10 thorpej int sys_read(struct lwp *, void *, register_t *);
430 1.10 thorpej int sys_write(struct lwp *, void *, register_t *);
431 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
432 1.10 thorpej int aoutm68k_sys_open(struct lwp *, void *, register_t *);
433 1.6 tsutsui #else
434 1.10 thorpej int sys_open(struct lwp *, void *, register_t *);
435 1.6 tsutsui #endif
436 1.10 thorpej int sys_close(struct lwp *, void *, register_t *);
437 1.10 thorpej int sys_wait4(struct lwp *, void *, register_t *);
438 1.1 scw #ifdef COMPAT_43
439 1.10 thorpej int compat_43_sys_creat(struct lwp *, void *, register_t *);
440 1.1 scw #else
441 1.1 scw #endif
442 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
443 1.10 thorpej int aoutm68k_sys_link(struct lwp *, void *, register_t *);
444 1.10 thorpej int aoutm68k_sys_unlink(struct lwp *, void *, register_t *);
445 1.6 tsutsui #else
446 1.10 thorpej int sys_link(struct lwp *, void *, register_t *);
447 1.10 thorpej int sys_unlink(struct lwp *, void *, register_t *);
448 1.6 tsutsui #endif
449 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
450 1.10 thorpej int aoutm68k_sys_chdir(struct lwp *, void *, register_t *);
451 1.6 tsutsui #else
452 1.10 thorpej int sys_chdir(struct lwp *, void *, register_t *);
453 1.6 tsutsui #endif
454 1.10 thorpej int sys_fchdir(struct lwp *, void *, register_t *);
455 1.10 thorpej int sys_mknod(struct lwp *, void *, register_t *);
456 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
457 1.10 thorpej int aoutm68k_sys_chmod(struct lwp *, void *, register_t *);
458 1.10 thorpej int aoutm68k_sys_chown(struct lwp *, void *, register_t *);
459 1.6 tsutsui #else
460 1.10 thorpej int sys_chmod(struct lwp *, void *, register_t *);
461 1.10 thorpej int sys_chown(struct lwp *, void *, register_t *);
462 1.6 tsutsui #endif
463 1.10 thorpej int sys_obreak(struct lwp *, void *, register_t *);
464 1.10 thorpej int sys_getfsstat(struct lwp *, void *, register_t *);
465 1.1 scw #ifdef COMPAT_43
466 1.10 thorpej int compat_43_sys_lseek(struct lwp *, void *, register_t *);
467 1.1 scw #else
468 1.1 scw #endif
469 1.10 thorpej int sys_getpid(struct lwp *, void *, register_t *);
470 1.10 thorpej int sys_mount(struct lwp *, void *, register_t *);
471 1.10 thorpej int sys_unmount(struct lwp *, void *, register_t *);
472 1.10 thorpej int sys_setuid(struct lwp *, void *, register_t *);
473 1.10 thorpej int sys_getuid(struct lwp *, void *, register_t *);
474 1.10 thorpej int sys_geteuid(struct lwp *, void *, register_t *);
475 1.10 thorpej int sys_ptrace(struct lwp *, void *, register_t *);
476 1.10 thorpej int sys_recvmsg(struct lwp *, void *, register_t *);
477 1.10 thorpej int sys_sendmsg(struct lwp *, void *, register_t *);
478 1.10 thorpej int sys_recvfrom(struct lwp *, void *, register_t *);
479 1.10 thorpej int sys_accept(struct lwp *, void *, register_t *);
480 1.10 thorpej int sys_getpeername(struct lwp *, void *, register_t *);
481 1.10 thorpej int sys_getsockname(struct lwp *, void *, register_t *);
482 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
483 1.10 thorpej int aoutm68k_sys_access(struct lwp *, void *, register_t *);
484 1.10 thorpej int aoutm68k_sys_chflags(struct lwp *, void *, register_t *);
485 1.6 tsutsui #else
486 1.10 thorpej int sys_access(struct lwp *, void *, register_t *);
487 1.10 thorpej int sys_chflags(struct lwp *, void *, register_t *);
488 1.6 tsutsui #endif
489 1.10 thorpej int sys_fchflags(struct lwp *, void *, register_t *);
490 1.10 thorpej int sys_sync(struct lwp *, void *, register_t *);
491 1.10 thorpej int sys_kill(struct lwp *, void *, register_t *);
492 1.1 scw #ifdef COMPAT_43
493 1.10 thorpej int aoutm68k_compat_43_sys_stat(struct lwp *, void *, register_t *);
494 1.1 scw #else
495 1.1 scw #endif
496 1.10 thorpej int sys_getppid(struct lwp *, void *, register_t *);
497 1.1 scw #ifdef COMPAT_43
498 1.10 thorpej int aoutm68k_compat_43_sys_lstat(struct lwp *, void *, register_t *);
499 1.1 scw #else
500 1.1 scw #endif
501 1.10 thorpej int sys_dup(struct lwp *, void *, register_t *);
502 1.10 thorpej int sys_pipe(struct lwp *, void *, register_t *);
503 1.10 thorpej int sys_getegid(struct lwp *, void *, register_t *);
504 1.10 thorpej int sys_profil(struct lwp *, void *, register_t *);
505 1.1 scw #if defined(KTRACE) || !defined(_KERNEL)
506 1.10 thorpej int sys_ktrace(struct lwp *, void *, register_t *);
507 1.1 scw #else
508 1.1 scw #endif
509 1.1 scw #ifdef COMPAT_13
510 1.10 thorpej int compat_13_sys_sigaction(struct lwp *, void *, register_t *);
511 1.1 scw #else
512 1.1 scw #endif
513 1.10 thorpej int sys_getgid(struct lwp *, void *, register_t *);
514 1.1 scw #ifdef COMPAT_13
515 1.10 thorpej int compat_13_sys_sigprocmask(struct lwp *, void *, register_t *);
516 1.1 scw #else
517 1.1 scw #endif
518 1.10 thorpej int sys___getlogin(struct lwp *, void *, register_t *);
519 1.10 thorpej int sys___setlogin(struct lwp *, void *, register_t *);
520 1.10 thorpej int sys_acct(struct lwp *, void *, register_t *);
521 1.1 scw #ifdef COMPAT_13
522 1.10 thorpej int compat_13_sys_sigpending(struct lwp *, void *, register_t *);
523 1.10 thorpej int compat_13_sys_sigaltstack(struct lwp *, void *, register_t *);
524 1.1 scw #else
525 1.1 scw #endif
526 1.10 thorpej int aoutm68k_sys_ioctl(struct lwp *, void *, register_t *);
527 1.1 scw #ifdef COMPAT_12
528 1.10 thorpej int compat_12_sys_reboot(struct lwp *, void *, register_t *);
529 1.1 scw #else
530 1.1 scw #endif
531 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
532 1.10 thorpej int aoutm68k_sys_revoke(struct lwp *, void *, register_t *);
533 1.10 thorpej int aoutm68k_sys_symlink(struct lwp *, void *, register_t *);
534 1.10 thorpej int aoutm68k_sys_readlink(struct lwp *, void *, register_t *);
535 1.10 thorpej int aoutm68k_sys_execve(struct lwp *, void *, register_t *);
536 1.6 tsutsui #else
537 1.10 thorpej int sys_revoke(struct lwp *, void *, register_t *);
538 1.10 thorpej int sys_symlink(struct lwp *, void *, register_t *);
539 1.10 thorpej int sys_readlink(struct lwp *, void *, register_t *);
540 1.10 thorpej int sys_execve(struct lwp *, void *, register_t *);
541 1.6 tsutsui #endif
542 1.10 thorpej int sys_umask(struct lwp *, void *, register_t *);
543 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
544 1.10 thorpej int aoutm68k_sys_chroot(struct lwp *, void *, register_t *);
545 1.6 tsutsui #else
546 1.10 thorpej int sys_chroot(struct lwp *, void *, register_t *);
547 1.6 tsutsui #endif
548 1.1 scw #ifdef COMPAT_43
549 1.10 thorpej int aoutm68k_compat_43_sys_fstat(struct lwp *, void *, register_t *);
550 1.10 thorpej int compat_43_sys_getkerninfo(struct lwp *, void *, register_t *);
551 1.10 thorpej int compat_43_sys_getpagesize(struct lwp *, void *, register_t *);
552 1.1 scw #else
553 1.1 scw #endif
554 1.1 scw #ifdef COMPAT_12
555 1.10 thorpej int compat_12_sys_msync(struct lwp *, void *, register_t *);
556 1.1 scw #else
557 1.1 scw #endif
558 1.10 thorpej int sys_vfork(struct lwp *, void *, register_t *);
559 1.10 thorpej int sys_sbrk(struct lwp *, void *, register_t *);
560 1.10 thorpej int sys_sstk(struct lwp *, void *, register_t *);
561 1.1 scw #ifdef COMPAT_43
562 1.10 thorpej int compat_43_sys_mmap(struct lwp *, void *, register_t *);
563 1.1 scw #else
564 1.1 scw #endif
565 1.10 thorpej int sys_ovadvise(struct lwp *, void *, register_t *);
566 1.10 thorpej int sys_munmap(struct lwp *, void *, register_t *);
567 1.10 thorpej int sys_mprotect(struct lwp *, void *, register_t *);
568 1.10 thorpej int sys_madvise(struct lwp *, void *, register_t *);
569 1.10 thorpej int sys_mincore(struct lwp *, void *, register_t *);
570 1.10 thorpej int sys_getgroups(struct lwp *, void *, register_t *);
571 1.10 thorpej int sys_setgroups(struct lwp *, void *, register_t *);
572 1.10 thorpej int sys_getpgrp(struct lwp *, void *, register_t *);
573 1.10 thorpej int sys_setpgid(struct lwp *, void *, register_t *);
574 1.10 thorpej int sys_setitimer(struct lwp *, void *, register_t *);
575 1.1 scw #ifdef COMPAT_43
576 1.10 thorpej int compat_43_sys_wait(struct lwp *, void *, register_t *);
577 1.1 scw #else
578 1.1 scw #endif
579 1.1 scw #ifdef COMPAT_12
580 1.10 thorpej int compat_12_sys_swapon(struct lwp *, void *, register_t *);
581 1.1 scw #else
582 1.1 scw #endif
583 1.10 thorpej int sys_getitimer(struct lwp *, void *, register_t *);
584 1.1 scw #ifdef COMPAT_43
585 1.10 thorpej int compat_43_sys_gethostname(struct lwp *, void *, register_t *);
586 1.10 thorpej int compat_43_sys_sethostname(struct lwp *, void *, register_t *);
587 1.10 thorpej int compat_43_sys_getdtablesize(struct lwp *, void *, register_t *);
588 1.1 scw #else
589 1.1 scw #endif
590 1.10 thorpej int sys_dup2(struct lwp *, void *, register_t *);
591 1.10 thorpej int sys_fcntl(struct lwp *, void *, register_t *);
592 1.10 thorpej int sys_select(struct lwp *, void *, register_t *);
593 1.10 thorpej int sys_fsync(struct lwp *, void *, register_t *);
594 1.10 thorpej int sys_setpriority(struct lwp *, void *, register_t *);
595 1.10 thorpej int sys_socket(struct lwp *, void *, register_t *);
596 1.10 thorpej int sys_connect(struct lwp *, void *, register_t *);
597 1.1 scw #ifdef COMPAT_43
598 1.10 thorpej int compat_43_sys_accept(struct lwp *, void *, register_t *);
599 1.1 scw #else
600 1.1 scw #endif
601 1.10 thorpej int sys_getpriority(struct lwp *, void *, register_t *);
602 1.1 scw #ifdef COMPAT_43
603 1.10 thorpej int compat_43_sys_send(struct lwp *, void *, register_t *);
604 1.10 thorpej int compat_43_sys_recv(struct lwp *, void *, register_t *);
605 1.1 scw #else
606 1.1 scw #endif
607 1.1 scw #ifdef COMPAT_13
608 1.10 thorpej int compat_13_sys_sigreturn(struct lwp *, void *, register_t *);
609 1.1 scw #else
610 1.1 scw #endif
611 1.10 thorpej int sys_bind(struct lwp *, void *, register_t *);
612 1.10 thorpej int sys_setsockopt(struct lwp *, void *, register_t *);
613 1.10 thorpej int sys_listen(struct lwp *, void *, register_t *);
614 1.1 scw #ifdef COMPAT_43
615 1.10 thorpej int compat_43_sys_sigvec(struct lwp *, void *, register_t *);
616 1.10 thorpej int compat_43_sys_sigblock(struct lwp *, void *, register_t *);
617 1.10 thorpej int compat_43_sys_sigsetmask(struct lwp *, void *, register_t *);
618 1.1 scw #else
619 1.1 scw #endif
620 1.1 scw #ifdef COMPAT_13
621 1.10 thorpej int compat_13_sys_sigsuspend(struct lwp *, void *, register_t *);
622 1.1 scw #else
623 1.1 scw #endif
624 1.1 scw #ifdef COMPAT_43
625 1.10 thorpej int compat_43_sys_sigstack(struct lwp *, void *, register_t *);
626 1.10 thorpej int compat_43_sys_recvmsg(struct lwp *, void *, register_t *);
627 1.10 thorpej int compat_43_sys_sendmsg(struct lwp *, void *, register_t *);
628 1.1 scw #else
629 1.1 scw #endif
630 1.10 thorpej int sys_gettimeofday(struct lwp *, void *, register_t *);
631 1.10 thorpej int sys_getrusage(struct lwp *, void *, register_t *);
632 1.10 thorpej int sys_getsockopt(struct lwp *, void *, register_t *);
633 1.10 thorpej int sys_readv(struct lwp *, void *, register_t *);
634 1.10 thorpej int sys_writev(struct lwp *, void *, register_t *);
635 1.10 thorpej int sys_settimeofday(struct lwp *, void *, register_t *);
636 1.10 thorpej int sys_fchown(struct lwp *, void *, register_t *);
637 1.10 thorpej int sys_fchmod(struct lwp *, void *, register_t *);
638 1.1 scw #ifdef COMPAT_43
639 1.10 thorpej int compat_43_sys_recvfrom(struct lwp *, void *, register_t *);
640 1.1 scw #else
641 1.1 scw #endif
642 1.10 thorpej int sys_setreuid(struct lwp *, void *, register_t *);
643 1.10 thorpej int sys_setregid(struct lwp *, void *, register_t *);
644 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
645 1.10 thorpej int aoutm68k_sys_rename(struct lwp *, void *, register_t *);
646 1.6 tsutsui #else
647 1.10 thorpej int sys_rename(struct lwp *, void *, register_t *);
648 1.6 tsutsui #endif
649 1.1 scw #ifdef COMPAT_43
650 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
651 1.10 thorpej int aoutm68k_compat_43_sys_truncate(struct lwp *, void *, register_t *);
652 1.6 tsutsui #else
653 1.10 thorpej int compat_43_sys_truncate(struct lwp *, void *, register_t *);
654 1.6 tsutsui #endif
655 1.10 thorpej int compat_43_sys_ftruncate(struct lwp *, void *, register_t *);
656 1.1 scw #else
657 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
658 1.6 tsutsui #else
659 1.6 tsutsui #endif
660 1.1 scw #endif
661 1.10 thorpej int sys_flock(struct lwp *, void *, register_t *);
662 1.10 thorpej int sys_mkfifo(struct lwp *, void *, register_t *);
663 1.10 thorpej int sys_sendto(struct lwp *, void *, register_t *);
664 1.10 thorpej int sys_shutdown(struct lwp *, void *, register_t *);
665 1.10 thorpej int sys_socketpair(struct lwp *, void *, register_t *);
666 1.10 thorpej int sys_mkdir(struct lwp *, void *, register_t *);
667 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
668 1.10 thorpej int aoutm68k_sys_rmdir(struct lwp *, void *, register_t *);
669 1.10 thorpej int aoutm68k_sys_utimes(struct lwp *, void *, register_t *);
670 1.6 tsutsui #else
671 1.10 thorpej int sys_rmdir(struct lwp *, void *, register_t *);
672 1.10 thorpej int sys_utimes(struct lwp *, void *, register_t *);
673 1.6 tsutsui #endif
674 1.10 thorpej int sys_adjtime(struct lwp *, void *, register_t *);
675 1.1 scw #ifdef COMPAT_43
676 1.10 thorpej int compat_43_sys_getpeername(struct lwp *, void *, register_t *);
677 1.10 thorpej int compat_43_sys_gethostid(struct lwp *, void *, register_t *);
678 1.10 thorpej int compat_43_sys_sethostid(struct lwp *, void *, register_t *);
679 1.10 thorpej int compat_43_sys_getrlimit(struct lwp *, void *, register_t *);
680 1.10 thorpej int compat_43_sys_setrlimit(struct lwp *, void *, register_t *);
681 1.10 thorpej int compat_43_sys_killpg(struct lwp *, void *, register_t *);
682 1.1 scw #else
683 1.1 scw #endif
684 1.10 thorpej int sys_setsid(struct lwp *, void *, register_t *);
685 1.10 thorpej int sys_quotactl(struct lwp *, void *, register_t *);
686 1.1 scw #ifdef COMPAT_43
687 1.10 thorpej int compat_43_sys_quota(struct lwp *, void *, register_t *);
688 1.10 thorpej int compat_43_sys_getsockname(struct lwp *, void *, register_t *);
689 1.1 scw #else
690 1.1 scw #endif
691 1.1 scw #if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
692 1.10 thorpej int sys_nfssvc(struct lwp *, void *, register_t *);
693 1.1 scw #else
694 1.1 scw #endif
695 1.1 scw #ifdef COMPAT_43
696 1.10 thorpej int compat_43_sys_getdirentries(struct lwp *, void *, register_t *);
697 1.1 scw #else
698 1.1 scw #endif
699 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
700 1.10 thorpej int aoutm68k_sys_statfs(struct lwp *, void *, register_t *);
701 1.6 tsutsui #else
702 1.10 thorpej int sys_statfs(struct lwp *, void *, register_t *);
703 1.6 tsutsui #endif
704 1.10 thorpej int sys_fstatfs(struct lwp *, void *, register_t *);
705 1.1 scw #if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
706 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
707 1.10 thorpej int aoutm68k_sys_getfh(struct lwp *, void *, register_t *);
708 1.1 scw #else
709 1.10 thorpej int sys_getfh(struct lwp *, void *, register_t *);
710 1.6 tsutsui #endif
711 1.6 tsutsui #else
712 1.1 scw #endif
713 1.1 scw #ifdef COMPAT_09
714 1.10 thorpej int compat_09_sys_getdomainname(struct lwp *, void *, register_t *);
715 1.10 thorpej int compat_09_sys_setdomainname(struct lwp *, void *, register_t *);
716 1.10 thorpej int compat_09_sys_uname(struct lwp *, void *, register_t *);
717 1.1 scw #else
718 1.1 scw #endif
719 1.10 thorpej int sys_sysarch(struct lwp *, void *, register_t *);
720 1.9 eeh #if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
721 1.10 thorpej int compat_10_sys_semsys(struct lwp *, void *, register_t *);
722 1.1 scw #else
723 1.1 scw #endif
724 1.9 eeh #if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
725 1.10 thorpej int compat_10_sys_msgsys(struct lwp *, void *, register_t *);
726 1.1 scw #else
727 1.1 scw #endif
728 1.9 eeh #if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64) && defined(COMPAT_10)
729 1.10 thorpej int compat_10_sys_shmsys(struct lwp *, void *, register_t *);
730 1.1 scw #else
731 1.1 scw #endif
732 1.10 thorpej int sys_pread(struct lwp *, void *, register_t *);
733 1.10 thorpej int sys_pwrite(struct lwp *, void *, register_t *);
734 1.10 thorpej int sys_ntp_gettime(struct lwp *, void *, register_t *);
735 1.1 scw #if defined(NTP) || !defined(_KERNEL)
736 1.10 thorpej int sys_ntp_adjtime(struct lwp *, void *, register_t *);
737 1.1 scw #else
738 1.1 scw #endif
739 1.10 thorpej int sys_setgid(struct lwp *, void *, register_t *);
740 1.10 thorpej int sys_setegid(struct lwp *, void *, register_t *);
741 1.10 thorpej int sys_seteuid(struct lwp *, void *, register_t *);
742 1.1 scw #if defined(LFS) || !defined(_KERNEL)
743 1.10 thorpej int sys_lfs_bmapv(struct lwp *, void *, register_t *);
744 1.10 thorpej int sys_lfs_markv(struct lwp *, void *, register_t *);
745 1.10 thorpej int sys_lfs_segclean(struct lwp *, void *, register_t *);
746 1.10 thorpej int sys_lfs_segwait(struct lwp *, void *, register_t *);
747 1.1 scw #else
748 1.1 scw #endif
749 1.1 scw #ifdef COMPAT_12
750 1.10 thorpej int aoutm68k_compat_12_sys_stat(struct lwp *, void *, register_t *);
751 1.10 thorpej int aoutm68k_compat_12_sys_fstat(struct lwp *, void *, register_t *);
752 1.10 thorpej int aoutm68k_compat_12_sys_lstat(struct lwp *, void *, register_t *);
753 1.1 scw #else
754 1.1 scw #endif
755 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
756 1.10 thorpej int aoutm68k_sys_pathconf(struct lwp *, void *, register_t *);
757 1.6 tsutsui #else
758 1.10 thorpej int sys_pathconf(struct lwp *, void *, register_t *);
759 1.6 tsutsui #endif
760 1.10 thorpej int sys_fpathconf(struct lwp *, void *, register_t *);
761 1.10 thorpej int sys_getrlimit(struct lwp *, void *, register_t *);
762 1.10 thorpej int sys_setrlimit(struct lwp *, void *, register_t *);
763 1.1 scw #ifdef COMPAT_12
764 1.10 thorpej int compat_12_sys_getdirentries(struct lwp *, void *, register_t *);
765 1.1 scw #else
766 1.1 scw #endif
767 1.10 thorpej int sys_mmap(struct lwp *, void *, register_t *);
768 1.10 thorpej int sys_lseek(struct lwp *, void *, register_t *);
769 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
770 1.10 thorpej int aoutm68k_sys_truncate(struct lwp *, void *, register_t *);
771 1.6 tsutsui #else
772 1.10 thorpej int sys_truncate(struct lwp *, void *, register_t *);
773 1.6 tsutsui #endif
774 1.10 thorpej int sys_ftruncate(struct lwp *, void *, register_t *);
775 1.10 thorpej int sys___sysctl(struct lwp *, void *, register_t *);
776 1.10 thorpej int sys_mlock(struct lwp *, void *, register_t *);
777 1.10 thorpej int sys_munlock(struct lwp *, void *, register_t *);
778 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
779 1.10 thorpej int aoutm68k_sys_undelete(struct lwp *, void *, register_t *);
780 1.6 tsutsui #else
781 1.10 thorpej int sys_undelete(struct lwp *, void *, register_t *);
782 1.6 tsutsui #endif
783 1.10 thorpej int sys_futimes(struct lwp *, void *, register_t *);
784 1.10 thorpej int sys_getpgid(struct lwp *, void *, register_t *);
785 1.10 thorpej int sys_reboot(struct lwp *, void *, register_t *);
786 1.10 thorpej int sys_poll(struct lwp *, void *, register_t *);
787 1.1 scw #if defined(LKM) || !defined(_KERNEL)
788 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
789 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
790 1.10 thorpej int sys_lkmnosys(struct lwp *, void *, register_t *);
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.1 scw #else /* !LKM */
799 1.1 scw #endif /* !LKM */
800 1.1 scw #if defined(SYSVSEM) || !defined(_KERNEL)
801 1.1 scw #ifdef COMPAT_14
802 1.10 thorpej int compat_14_sys___semctl(struct lwp *, void *, register_t *);
803 1.1 scw #else
804 1.1 scw #endif
805 1.10 thorpej int sys_semget(struct lwp *, void *, register_t *);
806 1.10 thorpej int sys_semop(struct lwp *, void *, register_t *);
807 1.10 thorpej int sys_semconfig(struct lwp *, void *, register_t *);
808 1.1 scw #else
809 1.1 scw #endif
810 1.1 scw #if defined(SYSVMSG) || !defined(_KERNEL)
811 1.1 scw #ifdef COMPAT_14
812 1.10 thorpej int compat_14_sys_msgctl(struct lwp *, void *, register_t *);
813 1.1 scw #else
814 1.1 scw #endif
815 1.10 thorpej int sys_msgget(struct lwp *, void *, register_t *);
816 1.10 thorpej int sys_msgsnd(struct lwp *, void *, register_t *);
817 1.10 thorpej int sys_msgrcv(struct lwp *, void *, register_t *);
818 1.1 scw #else
819 1.1 scw #endif
820 1.1 scw #if defined(SYSVSHM) || !defined(_KERNEL)
821 1.10 thorpej int sys_shmat(struct lwp *, void *, register_t *);
822 1.1 scw #ifdef COMPAT_14
823 1.10 thorpej int compat_14_sys_shmctl(struct lwp *, void *, register_t *);
824 1.1 scw #else
825 1.1 scw #endif
826 1.10 thorpej int sys_shmdt(struct lwp *, void *, register_t *);
827 1.10 thorpej int sys_shmget(struct lwp *, void *, register_t *);
828 1.1 scw #else
829 1.1 scw #endif
830 1.10 thorpej int sys_clock_gettime(struct lwp *, void *, register_t *);
831 1.10 thorpej int sys_clock_settime(struct lwp *, void *, register_t *);
832 1.10 thorpej int sys_clock_getres(struct lwp *, void *, register_t *);
833 1.10 thorpej int sys_nanosleep(struct lwp *, void *, register_t *);
834 1.10 thorpej int sys_fdatasync(struct lwp *, void *, register_t *);
835 1.10 thorpej int sys_mlockall(struct lwp *, void *, register_t *);
836 1.10 thorpej int sys_munlockall(struct lwp *, void *, register_t *);
837 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
838 1.10 thorpej int aoutm68k_sys___posix_rename(struct lwp *, void *, register_t *);
839 1.6 tsutsui #else
840 1.10 thorpej int sys___posix_rename(struct lwp *, void *, register_t *);
841 1.6 tsutsui #endif
842 1.10 thorpej int sys_swapctl(struct lwp *, void *, register_t *);
843 1.10 thorpej int sys_getdents(struct lwp *, void *, register_t *);
844 1.10 thorpej int sys_minherit(struct lwp *, void *, register_t *);
845 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
846 1.10 thorpej int aoutm68k_sys_lchmod(struct lwp *, void *, register_t *);
847 1.10 thorpej int aoutm68k_sys_lchown(struct lwp *, void *, register_t *);
848 1.10 thorpej int aoutm68k_sys_lutimes(struct lwp *, void *, register_t *);
849 1.6 tsutsui #else
850 1.10 thorpej int sys_lchmod(struct lwp *, void *, register_t *);
851 1.10 thorpej int sys_lchown(struct lwp *, void *, register_t *);
852 1.10 thorpej int sys_lutimes(struct lwp *, void *, register_t *);
853 1.6 tsutsui #endif
854 1.10 thorpej int sys___msync13(struct lwp *, void *, register_t *);
855 1.10 thorpej int aoutm68k_sys___stat13(struct lwp *, void *, register_t *);
856 1.10 thorpej int aoutm68k_sys___fstat13(struct lwp *, void *, register_t *);
857 1.10 thorpej int aoutm68k_sys___lstat13(struct lwp *, void *, register_t *);
858 1.10 thorpej int sys___sigaltstack14(struct lwp *, void *, register_t *);
859 1.10 thorpej int sys___vfork14(struct lwp *, void *, register_t *);
860 1.6 tsutsui #ifdef COMPAT_AOUT_ALTPATH
861 1.10 thorpej int aoutm68k_sys___posix_chown(struct lwp *, void *, register_t *);
862 1.6 tsutsui #else
863 1.10 thorpej int sys___posix_chown(struct lwp *, void *, register_t *);
864 1.6 tsutsui #endif
865 1.10 thorpej int sys___posix_fchown(struct lwp *, void *, register_t *);
866 1.10 thorpej int sys___posix_lchown(struct lwp *, void *, register_t *);
867 1.10 thorpej int sys_getsid(struct lwp *, void *, register_t *);
868 1.1 scw #if defined(KTRACE) || !defined(_KERNEL)
869 1.10 thorpej int sys_fktrace(struct lwp *, void *, register_t *);
870 1.1 scw #else
871 1.1 scw #endif
872 1.10 thorpej int sys_preadv(struct lwp *, void *, register_t *);
873 1.10 thorpej int sys_pwritev(struct lwp *, void *, register_t *);
874 1.10 thorpej int sys___sigaction14(struct lwp *, void *, register_t *);
875 1.10 thorpej int sys___sigpending14(struct lwp *, void *, register_t *);
876 1.10 thorpej int sys___sigprocmask14(struct lwp *, void *, register_t *);
877 1.10 thorpej int sys___sigsuspend14(struct lwp *, void *, register_t *);
878 1.12 cl #ifdef COMPAT_16
879 1.12 cl int compat_16_sys___sigreturn14(struct lwp *, void *, register_t *);
880 1.12 cl #else
881 1.12 cl #endif
882 1.10 thorpej int sys___getcwd(struct lwp *, void *, register_t *);
883 1.10 thorpej int sys_fchroot(struct lwp *, void *, register_t *);
884 1.10 thorpej int sys_fhopen(struct lwp *, void *, register_t *);
885 1.10 thorpej int aoutm68k_sys_fhstat(struct lwp *, void *, register_t *);
886 1.10 thorpej int sys_fhstatfs(struct lwp *, void *, register_t *);
887 1.1 scw #if defined(SYSVSEM) || !defined(_KERNEL)
888 1.10 thorpej int sys_____semctl13(struct lwp *, void *, register_t *);
889 1.1 scw #else
890 1.1 scw #endif
891 1.1 scw #if defined(SYSVMSG) || !defined(_KERNEL)
892 1.10 thorpej int sys___msgctl13(struct lwp *, void *, register_t *);
893 1.1 scw #else
894 1.1 scw #endif
895 1.1 scw #if defined(SYSVSHM) || !defined(_KERNEL)
896 1.10 thorpej int sys___shmctl13(struct lwp *, void *, register_t *);
897 1.1 scw #else
898 1.1 scw #endif
899 1.10 thorpej int sys_lchflags(struct lwp *, void *, register_t *);
900 1.10 thorpej int sys_issetugid(struct lwp *, void *, register_t *);
901 1.10 thorpej int sys_getcontext(struct lwp *, void *, register_t *);
902 1.10 thorpej int sys_setcontext(struct lwp *, void *, register_t *);
903 1.1 scw #endif /* _AOUTM68K_SYS__SYSCALLARGS_H_ */
904