freebsd_syscallargs.h revision 1.80 1 1.76 pooka /* $NetBSD: freebsd_syscallargs.h,v 1.80 2011/03/06 17:08:33 bouyer Exp $ */
2 1.16 thorpej
3 1.1 mycroft /*
4 1.1 mycroft * System call argument lists.
5 1.1 mycroft *
6 1.1 mycroft * DO NOT EDIT-- this file is automatically generated.
7 1.80 bouyer * created from NetBSD: syscalls.master,v 1.64.6.1 2011/02/08 21:46:53 bouyer Exp
8 1.1 mycroft */
9 1.26 tron
10 1.64 christos #ifndef _FREEBSD_SYS_SYSCALLARGS_H_
11 1.64 christos #define _FREEBSD_SYS_SYSCALLARGS_H_
12 1.28 christos
13 1.72 dsl #define FREEBSD_SYS_MAXSYSARGS 8
14 1.72 dsl
15 1.26 tron #undef syscallarg
16 1.31 thorpej #define syscallarg(x) \
17 1.31 thorpej union { \
18 1.31 thorpej register_t pad; \
19 1.31 thorpej struct { x datum; } le; \
20 1.47 lukem struct { /* LINTED zero array dimension */ \
21 1.47 lukem int8_t pad[ /* CONSTCOND */ \
22 1.47 lukem (sizeof (register_t) < sizeof (x)) \
23 1.31 thorpej ? 0 \
24 1.31 thorpej : sizeof (register_t) - sizeof (x)]; \
25 1.31 thorpej x datum; \
26 1.31 thorpej } be; \
27 1.31 thorpej }
28 1.1 mycroft
29 1.72 dsl #undef check_syscall_args
30 1.80 bouyer #define check_syscall_args(call) /*LINTED*/ \
31 1.72 dsl typedef char call##_check_args[sizeof (struct call##_args) \
32 1.72 dsl <= FREEBSD_SYS_MAXSYSARGS * sizeof (register_t) ? 1 : -1];
33 1.72 dsl
34 1.72 dsl struct sys_exit_args;
35 1.72 dsl
36 1.72 dsl struct sys_read_args;
37 1.72 dsl
38 1.72 dsl struct sys_write_args;
39 1.72 dsl
40 1.72 dsl struct sys_open_args;
41 1.72 dsl
42 1.72 dsl struct sys_close_args;
43 1.72 dsl
44 1.75 christos struct compat_50_sys_wait4_args;
45 1.72 dsl
46 1.72 dsl struct compat_43_sys_creat_args;
47 1.72 dsl
48 1.72 dsl struct sys_link_args;
49 1.72 dsl
50 1.72 dsl struct sys_unlink_args;
51 1.72 dsl
52 1.72 dsl struct sys_chdir_args;
53 1.72 dsl
54 1.72 dsl struct sys_fchdir_args;
55 1.72 dsl
56 1.75 christos struct compat_50_sys_mknod_args;
57 1.72 dsl
58 1.72 dsl struct sys_chmod_args;
59 1.72 dsl
60 1.72 dsl struct sys_chown_args;
61 1.72 dsl
62 1.72 dsl struct sys_obreak_args;
63 1.72 dsl
64 1.72 dsl struct compat_20_sys_getfsstat_args;
65 1.72 dsl
66 1.72 dsl struct compat_43_sys_lseek_args;
67 1.72 dsl
68 1.1 mycroft struct freebsd_sys_mount_args {
69 1.1 mycroft syscallarg(int) type;
70 1.28 christos syscallarg(const char *) path;
71 1.1 mycroft syscallarg(int) flags;
72 1.70 christos syscallarg(void *) data;
73 1.1 mycroft };
74 1.72 dsl check_syscall_args(freebsd_sys_mount)
75 1.72 dsl
76 1.72 dsl struct sys_unmount_args;
77 1.72 dsl
78 1.72 dsl struct sys_setuid_args;
79 1.1 mycroft
80 1.1 mycroft struct freebsd_sys_ptrace_args {
81 1.1 mycroft syscallarg(int) req;
82 1.1 mycroft syscallarg(pid_t) pid;
83 1.70 christos syscallarg(void *) addr;
84 1.1 mycroft syscallarg(int) data;
85 1.1 mycroft };
86 1.72 dsl check_syscall_args(freebsd_sys_ptrace)
87 1.72 dsl
88 1.72 dsl struct sys_recvmsg_args;
89 1.72 dsl
90 1.72 dsl struct sys_sendmsg_args;
91 1.72 dsl
92 1.72 dsl struct sys_recvfrom_args;
93 1.72 dsl
94 1.72 dsl struct sys_accept_args;
95 1.72 dsl
96 1.72 dsl struct sys_getpeername_args;
97 1.72 dsl
98 1.72 dsl struct sys_getsockname_args;
99 1.72 dsl
100 1.72 dsl struct sys_access_args;
101 1.72 dsl
102 1.72 dsl struct sys_chflags_args;
103 1.72 dsl
104 1.72 dsl struct sys_fchflags_args;
105 1.72 dsl
106 1.72 dsl struct sys_kill_args;
107 1.72 dsl
108 1.72 dsl struct compat_43_sys_stat_args;
109 1.72 dsl
110 1.72 dsl struct compat_43_sys_lstat_args;
111 1.72 dsl
112 1.72 dsl struct sys_dup_args;
113 1.72 dsl
114 1.72 dsl struct sys_profil_args;
115 1.53 pooka #ifdef KTRACE
116 1.72 dsl
117 1.72 dsl struct sys_ktrace_args;
118 1.53 pooka #else
119 1.53 pooka #endif
120 1.1 mycroft
121 1.72 dsl struct compat_13_sys_sigaction_args;
122 1.72 dsl
123 1.72 dsl struct compat_13_sys_sigprocmask_args;
124 1.72 dsl
125 1.72 dsl struct sys___getlogin_args;
126 1.72 dsl
127 1.72 dsl struct sys___setlogin_args;
128 1.72 dsl
129 1.72 dsl struct sys_acct_args;
130 1.72 dsl
131 1.72 dsl struct compat_13_sys_sigaltstack_args;
132 1.72 dsl
133 1.1 mycroft struct freebsd_sys_ioctl_args {
134 1.1 mycroft syscallarg(int) fd;
135 1.1 mycroft syscallarg(u_long) com;
136 1.70 christos syscallarg(void *) data;
137 1.1 mycroft };
138 1.72 dsl check_syscall_args(freebsd_sys_ioctl)
139 1.72 dsl
140 1.72 dsl struct sys_reboot_args;
141 1.72 dsl
142 1.72 dsl struct sys_revoke_args;
143 1.72 dsl
144 1.72 dsl struct sys_symlink_args;
145 1.72 dsl
146 1.72 dsl struct sys_readlink_args;
147 1.72 dsl
148 1.72 dsl struct sys_execve_args;
149 1.72 dsl
150 1.72 dsl struct sys_umask_args;
151 1.72 dsl
152 1.72 dsl struct sys_chroot_args;
153 1.72 dsl
154 1.72 dsl struct compat_43_sys_fstat_args;
155 1.72 dsl
156 1.72 dsl struct compat_43_sys_getkerninfo_args;
157 1.1 mycroft
158 1.1 mycroft struct freebsd_sys_msync_args {
159 1.70 christos syscallarg(void *) addr;
160 1.1 mycroft syscallarg(size_t) len;
161 1.1 mycroft syscallarg(int) flags;
162 1.1 mycroft };
163 1.72 dsl check_syscall_args(freebsd_sys_msync)
164 1.72 dsl
165 1.72 dsl struct sys_sbrk_args;
166 1.72 dsl
167 1.72 dsl struct sys_sstk_args;
168 1.72 dsl
169 1.72 dsl struct compat_43_sys_mmap_args;
170 1.72 dsl
171 1.72 dsl struct sys_ovadvise_args;
172 1.72 dsl
173 1.72 dsl struct sys_munmap_args;
174 1.72 dsl
175 1.72 dsl struct sys_mprotect_args;
176 1.72 dsl
177 1.72 dsl struct sys_madvise_args;
178 1.72 dsl
179 1.72 dsl struct sys_mincore_args;
180 1.72 dsl
181 1.72 dsl struct sys_getgroups_args;
182 1.72 dsl
183 1.72 dsl struct sys_setgroups_args;
184 1.72 dsl
185 1.72 dsl struct sys_setpgid_args;
186 1.72 dsl
187 1.75 christos struct compat_50_sys_setitimer_args;
188 1.72 dsl
189 1.72 dsl struct compat_12_sys_swapon_args;
190 1.72 dsl
191 1.75 christos struct compat_50_sys_getitimer_args;
192 1.72 dsl
193 1.72 dsl struct compat_43_sys_gethostname_args;
194 1.72 dsl
195 1.72 dsl struct compat_43_sys_sethostname_args;
196 1.72 dsl
197 1.72 dsl struct sys_dup2_args;
198 1.72 dsl
199 1.72 dsl struct sys_fcntl_args;
200 1.72 dsl
201 1.75 christos struct compat_50_sys_select_args;
202 1.72 dsl
203 1.72 dsl struct sys_fsync_args;
204 1.72 dsl
205 1.72 dsl struct sys_setpriority_args;
206 1.72 dsl
207 1.72 dsl struct compat_30_sys_socket_args;
208 1.72 dsl
209 1.72 dsl struct sys_connect_args;
210 1.72 dsl
211 1.72 dsl struct compat_43_sys_accept_args;
212 1.72 dsl
213 1.72 dsl struct sys_getpriority_args;
214 1.72 dsl
215 1.72 dsl struct compat_43_sys_send_args;
216 1.72 dsl
217 1.72 dsl struct compat_43_sys_recv_args;
218 1.1 mycroft
219 1.1 mycroft struct freebsd_sys_sigreturn_args {
220 1.1 mycroft syscallarg(struct freebsd_sigcontext *) scp;
221 1.1 mycroft };
222 1.72 dsl check_syscall_args(freebsd_sys_sigreturn)
223 1.72 dsl
224 1.72 dsl struct sys_bind_args;
225 1.72 dsl
226 1.72 dsl struct sys_setsockopt_args;
227 1.72 dsl
228 1.72 dsl struct sys_listen_args;
229 1.72 dsl
230 1.72 dsl struct compat_43_sys_sigvec_args;
231 1.72 dsl
232 1.72 dsl struct compat_43_sys_sigblock_args;
233 1.72 dsl
234 1.72 dsl struct compat_43_sys_sigsetmask_args;
235 1.72 dsl
236 1.72 dsl struct compat_13_sys_sigsuspend_args;
237 1.72 dsl
238 1.72 dsl struct compat_43_sys_sigstack_args;
239 1.72 dsl
240 1.72 dsl struct compat_43_sys_recvmsg_args;
241 1.72 dsl
242 1.72 dsl struct compat_43_sys_sendmsg_args;
243 1.53 pooka #ifdef TRACE
244 1.72 dsl
245 1.72 dsl struct sys_vtrace_args;
246 1.53 pooka #else
247 1.53 pooka #endif
248 1.72 dsl
249 1.75 christos struct compat_50_sys_gettimeofday_args;
250 1.72 dsl
251 1.75 christos struct compat_50_sys_getrusage_args;
252 1.72 dsl
253 1.72 dsl struct sys_getsockopt_args;
254 1.72 dsl
255 1.72 dsl struct sys_readv_args;
256 1.72 dsl
257 1.72 dsl struct sys_writev_args;
258 1.72 dsl
259 1.75 christos struct compat_50_sys_settimeofday_args;
260 1.72 dsl
261 1.72 dsl struct sys_fchown_args;
262 1.72 dsl
263 1.72 dsl struct sys_fchmod_args;
264 1.72 dsl
265 1.72 dsl struct compat_43_sys_recvfrom_args;
266 1.72 dsl
267 1.72 dsl struct sys_setreuid_args;
268 1.72 dsl
269 1.72 dsl struct sys_setregid_args;
270 1.72 dsl
271 1.72 dsl struct sys_rename_args;
272 1.72 dsl
273 1.72 dsl struct compat_43_sys_truncate_args;
274 1.72 dsl
275 1.72 dsl struct compat_43_sys_ftruncate_args;
276 1.72 dsl
277 1.72 dsl struct sys_flock_args;
278 1.72 dsl
279 1.72 dsl struct sys_mkfifo_args;
280 1.72 dsl
281 1.72 dsl struct sys_sendto_args;
282 1.72 dsl
283 1.72 dsl struct sys_shutdown_args;
284 1.72 dsl
285 1.72 dsl struct sys_socketpair_args;
286 1.72 dsl
287 1.72 dsl struct sys_mkdir_args;
288 1.72 dsl
289 1.72 dsl struct sys_rmdir_args;
290 1.72 dsl
291 1.75 christos struct compat_50_sys_utimes_args;
292 1.72 dsl
293 1.75 christos struct compat_50_sys_adjtime_args;
294 1.72 dsl
295 1.72 dsl struct compat_43_sys_getpeername_args;
296 1.72 dsl
297 1.72 dsl struct compat_43_sys_sethostid_args;
298 1.72 dsl
299 1.72 dsl struct compat_43_sys_getrlimit_args;
300 1.72 dsl
301 1.72 dsl struct compat_43_sys_setrlimit_args;
302 1.72 dsl
303 1.72 dsl struct compat_43_sys_killpg_args;
304 1.72 dsl
305 1.80 bouyer struct compat_50_sys_quotactl_args;
306 1.72 dsl
307 1.72 dsl struct compat_43_sys_getsockname_args;
308 1.72 dsl
309 1.72 dsl struct compat_43_sys_getdirentries_args;
310 1.72 dsl
311 1.72 dsl struct compat_20_sys_statfs_args;
312 1.72 dsl
313 1.72 dsl struct compat_20_sys_fstatfs_args;
314 1.72 dsl
315 1.72 dsl struct compat_30_sys_getfh_args;
316 1.1 mycroft
317 1.72 dsl struct compat_09_sys_getdomainname_args;
318 1.72 dsl
319 1.72 dsl struct compat_09_sys_setdomainname_args;
320 1.72 dsl
321 1.72 dsl struct compat_09_sys_uname_args;
322 1.72 dsl
323 1.72 dsl struct sys_sysarch_args;
324 1.72 dsl
325 1.1 mycroft struct freebsd_sys_rtprio_args {
326 1.1 mycroft syscallarg(int) function;
327 1.1 mycroft syscallarg(pid_t) pid;
328 1.1 mycroft syscallarg(struct freebsd_rtprio *) rtp;
329 1.1 mycroft };
330 1.72 dsl check_syscall_args(freebsd_sys_rtprio)
331 1.53 pooka #if defined(SYSVSEM) && !defined(_LP64)
332 1.1 mycroft
333 1.17 mycroft struct freebsd_sys_semsys_args {
334 1.17 mycroft syscallarg(int) which;
335 1.17 mycroft syscallarg(int) a2;
336 1.17 mycroft syscallarg(int) a3;
337 1.17 mycroft syscallarg(int) a4;
338 1.17 mycroft syscallarg(int) a5;
339 1.17 mycroft };
340 1.72 dsl check_syscall_args(freebsd_sys_semsys)
341 1.53 pooka #else
342 1.53 pooka #endif
343 1.53 pooka #if defined(SYSVMSG) && !defined(_LP64)
344 1.17 mycroft
345 1.17 mycroft struct freebsd_sys_msgsys_args {
346 1.17 mycroft syscallarg(int) which;
347 1.17 mycroft syscallarg(int) a2;
348 1.17 mycroft syscallarg(int) a3;
349 1.17 mycroft syscallarg(int) a4;
350 1.17 mycroft syscallarg(int) a5;
351 1.17 mycroft syscallarg(int) a6;
352 1.17 mycroft };
353 1.72 dsl check_syscall_args(freebsd_sys_msgsys)
354 1.53 pooka #else
355 1.53 pooka #endif
356 1.53 pooka #if defined(SYSVSHM) && !defined(_LP64)
357 1.17 mycroft
358 1.17 mycroft struct freebsd_sys_shmsys_args {
359 1.17 mycroft syscallarg(int) which;
360 1.17 mycroft syscallarg(int) a2;
361 1.17 mycroft syscallarg(int) a3;
362 1.17 mycroft syscallarg(int) a4;
363 1.17 mycroft };
364 1.72 dsl check_syscall_args(freebsd_sys_shmsys)
365 1.53 pooka #else
366 1.53 pooka #endif
367 1.72 dsl
368 1.72 dsl struct sys_pread_args;
369 1.72 dsl
370 1.72 dsl struct sys_pwrite_args;
371 1.53 pooka #ifdef NTP
372 1.17 mycroft
373 1.1 mycroft struct freebsd_ntp_adjtime_args {
374 1.1 mycroft syscallarg(struct freebsd_timex *) tp;
375 1.1 mycroft };
376 1.72 dsl check_syscall_args(freebsd_ntp_adjtime)
377 1.53 pooka #else
378 1.53 pooka #endif
379 1.72 dsl
380 1.72 dsl struct sys_setgid_args;
381 1.72 dsl
382 1.72 dsl struct sys_setegid_args;
383 1.72 dsl
384 1.72 dsl struct sys_seteuid_args;
385 1.1 mycroft
386 1.72 dsl struct compat_12_sys_stat_args;
387 1.72 dsl
388 1.72 dsl struct compat_12_sys_fstat_args;
389 1.72 dsl
390 1.72 dsl struct compat_12_sys_lstat_args;
391 1.72 dsl
392 1.72 dsl struct sys_pathconf_args;
393 1.72 dsl
394 1.72 dsl struct sys_fpathconf_args;
395 1.72 dsl
396 1.72 dsl struct sys_getrlimit_args;
397 1.72 dsl
398 1.72 dsl struct sys_setrlimit_args;
399 1.72 dsl
400 1.72 dsl struct compat_12_sys_getdirentries_args;
401 1.72 dsl
402 1.53 pooka struct freebsd_sys_mmap_args {
403 1.70 christos syscallarg(void *) addr;
404 1.53 pooka syscallarg(size_t) len;
405 1.53 pooka syscallarg(int) prot;
406 1.53 pooka syscallarg(int) flags;
407 1.53 pooka syscallarg(int) fd;
408 1.53 pooka syscallarg(long) pad;
409 1.53 pooka syscallarg(off_t) pos;
410 1.53 pooka };
411 1.72 dsl check_syscall_args(freebsd_sys_mmap)
412 1.72 dsl
413 1.72 dsl struct sys_lseek_args;
414 1.72 dsl
415 1.72 dsl struct sys_truncate_args;
416 1.72 dsl
417 1.72 dsl struct sys_ftruncate_args;
418 1.53 pooka
419 1.59 heas struct freebsd_sys_sysctl_args {
420 1.59 heas syscallarg(int *) name;
421 1.59 heas syscallarg(u_int) namelen;
422 1.59 heas syscallarg(void *) old;
423 1.59 heas syscallarg(size_t *) oldlenp;
424 1.59 heas syscallarg(void *) new;
425 1.59 heas syscallarg(size_t) newlen;
426 1.59 heas };
427 1.72 dsl check_syscall_args(freebsd_sys_sysctl)
428 1.72 dsl
429 1.72 dsl struct sys_mlock_args;
430 1.72 dsl
431 1.72 dsl struct sys_munlock_args;
432 1.53 pooka #ifdef FREEBSD_BASED_ON_44LITE_R2
433 1.1 mycroft
434 1.1 mycroft struct freebsd_sys_undelete_args {
435 1.1 mycroft syscallarg(char *) path;
436 1.1 mycroft };
437 1.72 dsl check_syscall_args(freebsd_sys_undelete)
438 1.53 pooka #else
439 1.53 pooka #endif
440 1.72 dsl
441 1.75 christos struct compat_50_sys_futimes_args;
442 1.72 dsl
443 1.72 dsl struct sys_getpgid_args;
444 1.53 pooka #if 0
445 1.72 dsl
446 1.72 dsl struct sys_reboot_args;
447 1.53 pooka #else
448 1.53 pooka #endif
449 1.72 dsl
450 1.72 dsl struct sys_poll_args;
451 1.53 pooka #ifdef SYSVSEM
452 1.72 dsl
453 1.72 dsl struct compat_14_sys___semctl_args;
454 1.72 dsl
455 1.72 dsl struct sys_semget_args;
456 1.72 dsl
457 1.72 dsl struct sys_semop_args;
458 1.72 dsl
459 1.72 dsl struct sys_semconfig_args;
460 1.53 pooka #else
461 1.53 pooka #endif
462 1.53 pooka #ifdef SYSVMSG
463 1.72 dsl
464 1.72 dsl struct compat_14_sys_msgctl_args;
465 1.72 dsl
466 1.72 dsl struct sys_msgget_args;
467 1.72 dsl
468 1.72 dsl struct sys_msgsnd_args;
469 1.72 dsl
470 1.72 dsl struct sys_msgrcv_args;
471 1.53 pooka #else
472 1.53 pooka #endif
473 1.53 pooka #ifdef SYSVSHM
474 1.72 dsl
475 1.72 dsl struct sys_shmat_args;
476 1.72 dsl
477 1.72 dsl struct compat_14_sys_shmctl_args;
478 1.72 dsl
479 1.72 dsl struct sys_shmdt_args;
480 1.72 dsl
481 1.72 dsl struct sys_shmget_args;
482 1.53 pooka #else
483 1.53 pooka #endif
484 1.1 mycroft
485 1.75 christos struct compat_50_sys_clock_gettime_args;
486 1.72 dsl
487 1.75 christos struct compat_50_sys_clock_settime_args;
488 1.72 dsl
489 1.75 christos struct compat_50_sys_clock_getres_args;
490 1.72 dsl
491 1.75 christos struct compat_50_sys_nanosleep_args;
492 1.72 dsl
493 1.72 dsl struct sys_minherit_args;
494 1.72 dsl
495 1.49 pooka struct freebsd_sys_rfork_args {
496 1.49 pooka syscallarg(int) flags;
497 1.49 pooka };
498 1.72 dsl check_syscall_args(freebsd_sys_rfork)
499 1.72 dsl
500 1.72 dsl struct sys_lchown_args;
501 1.72 dsl
502 1.72 dsl struct compat_30_sys_getdents_args;
503 1.72 dsl
504 1.72 dsl struct sys_lchmod_args;
505 1.72 dsl
506 1.72 dsl struct sys_lchown_args;
507 1.72 dsl
508 1.75 christos struct compat_50_sys_lutimes_args;
509 1.72 dsl
510 1.72 dsl struct sys___msync13_args;
511 1.72 dsl
512 1.72 dsl struct compat_30_sys___stat13_args;
513 1.72 dsl
514 1.72 dsl struct compat_30_sys___fstat13_args;
515 1.72 dsl
516 1.72 dsl struct compat_30_sys___lstat13_args;
517 1.72 dsl
518 1.72 dsl struct compat_20_sys_fhstatfs_args;
519 1.72 dsl
520 1.72 dsl struct compat_30_sys_fhopen_args;
521 1.72 dsl
522 1.72 dsl struct compat_30_sys_fhstat_args;
523 1.72 dsl
524 1.72 dsl struct sys_getsid_args;
525 1.72 dsl
526 1.72 dsl struct sys_mlockall_args;
527 1.72 dsl
528 1.72 dsl struct sys___getcwd_args;
529 1.49 pooka
530 1.50 gmcgarry struct freebsd_sys_sched_setparam_args {
531 1.50 gmcgarry syscallarg(pid_t) pid;
532 1.50 gmcgarry syscallarg(const struct freebsd_sched_param *) sp;
533 1.50 gmcgarry };
534 1.72 dsl check_syscall_args(freebsd_sys_sched_setparam)
535 1.50 gmcgarry
536 1.50 gmcgarry struct freebsd_sys_sched_getparam_args {
537 1.50 gmcgarry syscallarg(pid_t) pid;
538 1.50 gmcgarry syscallarg(struct freebsd_sched_param *) sp;
539 1.50 gmcgarry };
540 1.72 dsl check_syscall_args(freebsd_sys_sched_getparam)
541 1.50 gmcgarry
542 1.50 gmcgarry struct freebsd_sys_sched_setscheduler_args {
543 1.50 gmcgarry syscallarg(pid_t) pid;
544 1.50 gmcgarry syscallarg(int) policy;
545 1.50 gmcgarry syscallarg(const struct sched_param *) sp;
546 1.50 gmcgarry };
547 1.72 dsl check_syscall_args(freebsd_sys_sched_setscheduler)
548 1.50 gmcgarry
549 1.50 gmcgarry struct freebsd_sys_sched_getscheduler_args {
550 1.50 gmcgarry syscallarg(pid_t) pid;
551 1.50 gmcgarry };
552 1.72 dsl check_syscall_args(freebsd_sys_sched_getscheduler)
553 1.50 gmcgarry
554 1.50 gmcgarry struct freebsd_sys_sched_get_priority_max_args {
555 1.50 gmcgarry syscallarg(int) policy;
556 1.50 gmcgarry };
557 1.72 dsl check_syscall_args(freebsd_sys_sched_get_priority_max)
558 1.50 gmcgarry
559 1.50 gmcgarry struct freebsd_sys_sched_get_priority_min_args {
560 1.50 gmcgarry syscallarg(int) policy;
561 1.50 gmcgarry };
562 1.72 dsl check_syscall_args(freebsd_sys_sched_get_priority_min)
563 1.50 gmcgarry
564 1.43 jdolecek struct freebsd_sys_utrace_args {
565 1.43 jdolecek syscallarg(void *) addr;
566 1.43 jdolecek syscallarg(size_t) len;
567 1.43 jdolecek };
568 1.72 dsl check_syscall_args(freebsd_sys_utrace)
569 1.72 dsl
570 1.72 dsl struct sys___sigprocmask14_args;
571 1.72 dsl
572 1.72 dsl struct sys___sigsuspend14_args;
573 1.43 jdolecek
574 1.34 onoe struct freebsd_sys_sigaction4_args {
575 1.34 onoe syscallarg(int) signum;
576 1.34 onoe syscallarg(const struct freebsd_sigaction4 *) nsa;
577 1.34 onoe syscallarg(struct freebsd_sigaction4 *) osa;
578 1.34 onoe };
579 1.72 dsl check_syscall_args(freebsd_sys_sigaction4)
580 1.72 dsl
581 1.72 dsl struct sys___sigpending14_args;
582 1.72 dsl
583 1.72 dsl struct sys_lchflags_args;
584 1.72 dsl
585 1.72 dsl struct sys_uuidgen_args;
586 1.54 jdolecek #if defined(P1003_1B_SEMAPHORE) || !defined(_KERNEL)
587 1.72 dsl
588 1.72 dsl struct sys__ksem_close_args;
589 1.72 dsl
590 1.72 dsl struct sys__ksem_post_args;
591 1.72 dsl
592 1.72 dsl struct sys__ksem_wait_args;
593 1.72 dsl
594 1.72 dsl struct sys__ksem_trywait_args;
595 1.72 dsl
596 1.72 dsl struct sys__ksem_unlink_args;
597 1.72 dsl
598 1.72 dsl struct sys__ksem_getvalue_args;
599 1.72 dsl
600 1.72 dsl struct sys__ksem_destroy_args;
601 1.54 jdolecek #else
602 1.54 jdolecek #endif
603 1.34 onoe
604 1.1 mycroft /*
605 1.1 mycroft * System call prototypes.
606 1.1 mycroft */
607 1.1 mycroft
608 1.72 dsl int sys_nosys(struct lwp *, const void *, register_t *);
609 1.54 jdolecek
610 1.72 dsl int sys_exit(struct lwp *, const struct sys_exit_args *, register_t *);
611 1.54 jdolecek
612 1.72 dsl int sys_fork(struct lwp *, const void *, register_t *);
613 1.54 jdolecek
614 1.72 dsl int sys_read(struct lwp *, const struct sys_read_args *, register_t *);
615 1.54 jdolecek
616 1.72 dsl int sys_write(struct lwp *, const struct sys_write_args *, register_t *);
617 1.54 jdolecek
618 1.72 dsl int sys_open(struct lwp *, const struct sys_open_args *, register_t *);
619 1.54 jdolecek
620 1.72 dsl int sys_close(struct lwp *, const struct sys_close_args *, register_t *);
621 1.54 jdolecek
622 1.75 christos int compat_50_sys_wait4(struct lwp *, const struct compat_50_sys_wait4_args *, register_t *);
623 1.54 jdolecek
624 1.72 dsl int compat_43_sys_creat(struct lwp *, const struct compat_43_sys_creat_args *, register_t *);
625 1.54 jdolecek
626 1.72 dsl int sys_link(struct lwp *, const struct sys_link_args *, register_t *);
627 1.54 jdolecek
628 1.72 dsl int sys_unlink(struct lwp *, const struct sys_unlink_args *, register_t *);
629 1.54 jdolecek
630 1.72 dsl int sys_chdir(struct lwp *, const struct sys_chdir_args *, register_t *);
631 1.54 jdolecek
632 1.72 dsl int sys_fchdir(struct lwp *, const struct sys_fchdir_args *, register_t *);
633 1.54 jdolecek
634 1.75 christos int compat_50_sys_mknod(struct lwp *, const struct compat_50_sys_mknod_args *, register_t *);
635 1.54 jdolecek
636 1.72 dsl int sys_chmod(struct lwp *, const struct sys_chmod_args *, register_t *);
637 1.54 jdolecek
638 1.72 dsl int sys_chown(struct lwp *, const struct sys_chown_args *, register_t *);
639 1.54 jdolecek
640 1.72 dsl int sys_obreak(struct lwp *, const struct sys_obreak_args *, register_t *);
641 1.54 jdolecek
642 1.72 dsl int compat_20_sys_getfsstat(struct lwp *, const struct compat_20_sys_getfsstat_args *, register_t *);
643 1.54 jdolecek
644 1.72 dsl int compat_43_sys_lseek(struct lwp *, const struct compat_43_sys_lseek_args *, register_t *);
645 1.54 jdolecek
646 1.72 dsl int sys_getpid_with_ppid(struct lwp *, const void *, register_t *);
647 1.54 jdolecek
648 1.72 dsl int freebsd_sys_mount(struct lwp *, const struct freebsd_sys_mount_args *, register_t *);
649 1.54 jdolecek
650 1.72 dsl int sys_unmount(struct lwp *, const struct sys_unmount_args *, register_t *);
651 1.54 jdolecek
652 1.72 dsl int sys_setuid(struct lwp *, const struct sys_setuid_args *, register_t *);
653 1.54 jdolecek
654 1.72 dsl int sys_getuid_with_euid(struct lwp *, const void *, register_t *);
655 1.54 jdolecek
656 1.72 dsl int sys_geteuid(struct lwp *, const void *, register_t *);
657 1.54 jdolecek
658 1.72 dsl int freebsd_sys_ptrace(struct lwp *, const struct freebsd_sys_ptrace_args *, register_t *);
659 1.54 jdolecek
660 1.72 dsl int sys_recvmsg(struct lwp *, const struct sys_recvmsg_args *, register_t *);
661 1.54 jdolecek
662 1.72 dsl int sys_sendmsg(struct lwp *, const struct sys_sendmsg_args *, register_t *);
663 1.54 jdolecek
664 1.72 dsl int sys_recvfrom(struct lwp *, const struct sys_recvfrom_args *, register_t *);
665 1.54 jdolecek
666 1.72 dsl int sys_accept(struct lwp *, const struct sys_accept_args *, register_t *);
667 1.54 jdolecek
668 1.72 dsl int sys_getpeername(struct lwp *, const struct sys_getpeername_args *, register_t *);
669 1.54 jdolecek
670 1.72 dsl int sys_getsockname(struct lwp *, const struct sys_getsockname_args *, register_t *);
671 1.54 jdolecek
672 1.72 dsl int sys_access(struct lwp *, const struct sys_access_args *, register_t *);
673 1.54 jdolecek
674 1.72 dsl int sys_chflags(struct lwp *, const struct sys_chflags_args *, register_t *);
675 1.54 jdolecek
676 1.72 dsl int sys_fchflags(struct lwp *, const struct sys_fchflags_args *, register_t *);
677 1.54 jdolecek
678 1.72 dsl int sys_sync(struct lwp *, const void *, register_t *);
679 1.54 jdolecek
680 1.72 dsl int sys_kill(struct lwp *, const struct sys_kill_args *, register_t *);
681 1.54 jdolecek
682 1.72 dsl int compat_43_sys_stat(struct lwp *, const struct compat_43_sys_stat_args *, register_t *);
683 1.54 jdolecek
684 1.72 dsl int sys_getppid(struct lwp *, const void *, register_t *);
685 1.54 jdolecek
686 1.72 dsl int compat_43_sys_lstat(struct lwp *, const struct compat_43_sys_lstat_args *, register_t *);
687 1.54 jdolecek
688 1.72 dsl int sys_dup(struct lwp *, const struct sys_dup_args *, register_t *);
689 1.54 jdolecek
690 1.72 dsl int sys_pipe(struct lwp *, const void *, register_t *);
691 1.54 jdolecek
692 1.72 dsl int sys_getegid(struct lwp *, const void *, register_t *);
693 1.54 jdolecek
694 1.72 dsl int sys_profil(struct lwp *, const struct sys_profil_args *, register_t *);
695 1.54 jdolecek
696 1.1 mycroft #ifdef KTRACE
697 1.72 dsl int sys_ktrace(struct lwp *, const struct sys_ktrace_args *, register_t *);
698 1.54 jdolecek
699 1.1 mycroft #else
700 1.1 mycroft #endif
701 1.72 dsl int compat_13_sys_sigaction(struct lwp *, const struct compat_13_sys_sigaction_args *, register_t *);
702 1.54 jdolecek
703 1.72 dsl int sys_getgid_with_egid(struct lwp *, const void *, register_t *);
704 1.54 jdolecek
705 1.72 dsl int compat_13_sys_sigprocmask(struct lwp *, const struct compat_13_sys_sigprocmask_args *, register_t *);
706 1.54 jdolecek
707 1.72 dsl int sys___getlogin(struct lwp *, const struct sys___getlogin_args *, register_t *);
708 1.54 jdolecek
709 1.72 dsl int sys___setlogin(struct lwp *, const struct sys___setlogin_args *, register_t *);
710 1.54 jdolecek
711 1.72 dsl int sys_acct(struct lwp *, const struct sys_acct_args *, register_t *);
712 1.54 jdolecek
713 1.72 dsl int compat_13_sys_sigpending(struct lwp *, const void *, register_t *);
714 1.54 jdolecek
715 1.72 dsl int compat_13_sys_sigaltstack(struct lwp *, const struct compat_13_sys_sigaltstack_args *, register_t *);
716 1.54 jdolecek
717 1.72 dsl int freebsd_sys_ioctl(struct lwp *, const struct freebsd_sys_ioctl_args *, register_t *);
718 1.54 jdolecek
719 1.72 dsl int sys_reboot(struct lwp *, const struct sys_reboot_args *, register_t *);
720 1.54 jdolecek
721 1.72 dsl int sys_revoke(struct lwp *, const struct sys_revoke_args *, register_t *);
722 1.54 jdolecek
723 1.72 dsl int sys_symlink(struct lwp *, const struct sys_symlink_args *, register_t *);
724 1.54 jdolecek
725 1.72 dsl int sys_readlink(struct lwp *, const struct sys_readlink_args *, register_t *);
726 1.54 jdolecek
727 1.72 dsl int sys_execve(struct lwp *, const struct sys_execve_args *, register_t *);
728 1.54 jdolecek
729 1.72 dsl int sys_umask(struct lwp *, const struct sys_umask_args *, register_t *);
730 1.54 jdolecek
731 1.72 dsl int sys_chroot(struct lwp *, const struct sys_chroot_args *, register_t *);
732 1.54 jdolecek
733 1.72 dsl int compat_43_sys_fstat(struct lwp *, const struct compat_43_sys_fstat_args *, register_t *);
734 1.54 jdolecek
735 1.72 dsl int compat_43_sys_getkerninfo(struct lwp *, const struct compat_43_sys_getkerninfo_args *, register_t *);
736 1.54 jdolecek
737 1.72 dsl int compat_43_sys_getpagesize(struct lwp *, const void *, register_t *);
738 1.54 jdolecek
739 1.72 dsl int freebsd_sys_msync(struct lwp *, const struct freebsd_sys_msync_args *, register_t *);
740 1.54 jdolecek
741 1.72 dsl int sys_vfork(struct lwp *, const void *, register_t *);
742 1.54 jdolecek
743 1.72 dsl int sys_sbrk(struct lwp *, const struct sys_sbrk_args *, register_t *);
744 1.54 jdolecek
745 1.72 dsl int sys_sstk(struct lwp *, const struct sys_sstk_args *, register_t *);
746 1.54 jdolecek
747 1.72 dsl int compat_43_sys_mmap(struct lwp *, const struct compat_43_sys_mmap_args *, register_t *);
748 1.54 jdolecek
749 1.72 dsl int sys_ovadvise(struct lwp *, const struct sys_ovadvise_args *, register_t *);
750 1.54 jdolecek
751 1.72 dsl int sys_munmap(struct lwp *, const struct sys_munmap_args *, register_t *);
752 1.54 jdolecek
753 1.72 dsl int sys_mprotect(struct lwp *, const struct sys_mprotect_args *, register_t *);
754 1.54 jdolecek
755 1.72 dsl int sys_madvise(struct lwp *, const struct sys_madvise_args *, register_t *);
756 1.54 jdolecek
757 1.72 dsl int sys_mincore(struct lwp *, const struct sys_mincore_args *, register_t *);
758 1.54 jdolecek
759 1.72 dsl int sys_getgroups(struct lwp *, const struct sys_getgroups_args *, register_t *);
760 1.54 jdolecek
761 1.72 dsl int sys_setgroups(struct lwp *, const struct sys_setgroups_args *, register_t *);
762 1.54 jdolecek
763 1.72 dsl int sys_getpgrp(struct lwp *, const void *, register_t *);
764 1.54 jdolecek
765 1.72 dsl int sys_setpgid(struct lwp *, const struct sys_setpgid_args *, register_t *);
766 1.54 jdolecek
767 1.75 christos int compat_50_sys_setitimer(struct lwp *, const struct compat_50_sys_setitimer_args *, register_t *);
768 1.54 jdolecek
769 1.72 dsl int compat_43_sys_wait(struct lwp *, const void *, register_t *);
770 1.54 jdolecek
771 1.72 dsl int compat_12_sys_swapon(struct lwp *, const struct compat_12_sys_swapon_args *, register_t *);
772 1.54 jdolecek
773 1.75 christos int compat_50_sys_getitimer(struct lwp *, const struct compat_50_sys_getitimer_args *, register_t *);
774 1.54 jdolecek
775 1.72 dsl int compat_43_sys_gethostname(struct lwp *, const struct compat_43_sys_gethostname_args *, register_t *);
776 1.54 jdolecek
777 1.72 dsl int compat_43_sys_sethostname(struct lwp *, const struct compat_43_sys_sethostname_args *, register_t *);
778 1.54 jdolecek
779 1.72 dsl int compat_43_sys_getdtablesize(struct lwp *, const void *, register_t *);
780 1.54 jdolecek
781 1.72 dsl int sys_dup2(struct lwp *, const struct sys_dup2_args *, register_t *);
782 1.54 jdolecek
783 1.72 dsl int sys_fcntl(struct lwp *, const struct sys_fcntl_args *, register_t *);
784 1.54 jdolecek
785 1.75 christos int compat_50_sys_select(struct lwp *, const struct compat_50_sys_select_args *, register_t *);
786 1.54 jdolecek
787 1.72 dsl int sys_fsync(struct lwp *, const struct sys_fsync_args *, register_t *);
788 1.54 jdolecek
789 1.72 dsl int sys_setpriority(struct lwp *, const struct sys_setpriority_args *, register_t *);
790 1.54 jdolecek
791 1.72 dsl int compat_30_sys_socket(struct lwp *, const struct compat_30_sys_socket_args *, register_t *);
792 1.54 jdolecek
793 1.72 dsl int sys_connect(struct lwp *, const struct sys_connect_args *, register_t *);
794 1.54 jdolecek
795 1.72 dsl int compat_43_sys_accept(struct lwp *, const struct compat_43_sys_accept_args *, register_t *);
796 1.54 jdolecek
797 1.72 dsl int sys_getpriority(struct lwp *, const struct sys_getpriority_args *, register_t *);
798 1.54 jdolecek
799 1.72 dsl int compat_43_sys_send(struct lwp *, const struct compat_43_sys_send_args *, register_t *);
800 1.54 jdolecek
801 1.72 dsl int compat_43_sys_recv(struct lwp *, const struct compat_43_sys_recv_args *, register_t *);
802 1.54 jdolecek
803 1.72 dsl int freebsd_sys_sigreturn(struct lwp *, const struct freebsd_sys_sigreturn_args *, register_t *);
804 1.54 jdolecek
805 1.72 dsl int sys_bind(struct lwp *, const struct sys_bind_args *, register_t *);
806 1.54 jdolecek
807 1.72 dsl int sys_setsockopt(struct lwp *, const struct sys_setsockopt_args *, register_t *);
808 1.54 jdolecek
809 1.72 dsl int sys_listen(struct lwp *, const struct sys_listen_args *, register_t *);
810 1.54 jdolecek
811 1.72 dsl int compat_43_sys_sigvec(struct lwp *, const struct compat_43_sys_sigvec_args *, register_t *);
812 1.54 jdolecek
813 1.72 dsl int compat_43_sys_sigblock(struct lwp *, const struct compat_43_sys_sigblock_args *, register_t *);
814 1.54 jdolecek
815 1.72 dsl int compat_43_sys_sigsetmask(struct lwp *, const struct compat_43_sys_sigsetmask_args *, register_t *);
816 1.54 jdolecek
817 1.72 dsl int compat_13_sys_sigsuspend(struct lwp *, const struct compat_13_sys_sigsuspend_args *, register_t *);
818 1.54 jdolecek
819 1.72 dsl int compat_43_sys_sigstack(struct lwp *, const struct compat_43_sys_sigstack_args *, register_t *);
820 1.54 jdolecek
821 1.72 dsl int compat_43_sys_recvmsg(struct lwp *, const struct compat_43_sys_recvmsg_args *, register_t *);
822 1.54 jdolecek
823 1.72 dsl int compat_43_sys_sendmsg(struct lwp *, const struct compat_43_sys_sendmsg_args *, register_t *);
824 1.54 jdolecek
825 1.1 mycroft #ifdef TRACE
826 1.72 dsl int sys_vtrace(struct lwp *, const struct sys_vtrace_args *, register_t *);
827 1.54 jdolecek
828 1.1 mycroft #else
829 1.1 mycroft #endif
830 1.75 christos int compat_50_sys_gettimeofday(struct lwp *, const struct compat_50_sys_gettimeofday_args *, register_t *);
831 1.54 jdolecek
832 1.75 christos int compat_50_sys_getrusage(struct lwp *, const struct compat_50_sys_getrusage_args *, register_t *);
833 1.54 jdolecek
834 1.72 dsl int sys_getsockopt(struct lwp *, const struct sys_getsockopt_args *, register_t *);
835 1.54 jdolecek
836 1.72 dsl int sys_readv(struct lwp *, const struct sys_readv_args *, register_t *);
837 1.54 jdolecek
838 1.72 dsl int sys_writev(struct lwp *, const struct sys_writev_args *, register_t *);
839 1.54 jdolecek
840 1.75 christos int compat_50_sys_settimeofday(struct lwp *, const struct compat_50_sys_settimeofday_args *, register_t *);
841 1.54 jdolecek
842 1.72 dsl int sys_fchown(struct lwp *, const struct sys_fchown_args *, register_t *);
843 1.54 jdolecek
844 1.72 dsl int sys_fchmod(struct lwp *, const struct sys_fchmod_args *, register_t *);
845 1.54 jdolecek
846 1.72 dsl int compat_43_sys_recvfrom(struct lwp *, const struct compat_43_sys_recvfrom_args *, register_t *);
847 1.54 jdolecek
848 1.72 dsl int sys_setreuid(struct lwp *, const struct sys_setreuid_args *, register_t *);
849 1.54 jdolecek
850 1.72 dsl int sys_setregid(struct lwp *, const struct sys_setregid_args *, register_t *);
851 1.54 jdolecek
852 1.72 dsl int sys_rename(struct lwp *, const struct sys_rename_args *, register_t *);
853 1.54 jdolecek
854 1.72 dsl int compat_43_sys_truncate(struct lwp *, const struct compat_43_sys_truncate_args *, register_t *);
855 1.54 jdolecek
856 1.72 dsl int compat_43_sys_ftruncate(struct lwp *, const struct compat_43_sys_ftruncate_args *, register_t *);
857 1.54 jdolecek
858 1.72 dsl int sys_flock(struct lwp *, const struct sys_flock_args *, register_t *);
859 1.54 jdolecek
860 1.72 dsl int sys_mkfifo(struct lwp *, const struct sys_mkfifo_args *, register_t *);
861 1.54 jdolecek
862 1.72 dsl int sys_sendto(struct lwp *, const struct sys_sendto_args *, register_t *);
863 1.54 jdolecek
864 1.72 dsl int sys_shutdown(struct lwp *, const struct sys_shutdown_args *, register_t *);
865 1.54 jdolecek
866 1.72 dsl int sys_socketpair(struct lwp *, const struct sys_socketpair_args *, register_t *);
867 1.54 jdolecek
868 1.72 dsl int sys_mkdir(struct lwp *, const struct sys_mkdir_args *, register_t *);
869 1.54 jdolecek
870 1.72 dsl int sys_rmdir(struct lwp *, const struct sys_rmdir_args *, register_t *);
871 1.54 jdolecek
872 1.75 christos int compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
873 1.54 jdolecek
874 1.75 christos int compat_50_sys_adjtime(struct lwp *, const struct compat_50_sys_adjtime_args *, register_t *);
875 1.54 jdolecek
876 1.72 dsl int compat_43_sys_getpeername(struct lwp *, const struct compat_43_sys_getpeername_args *, register_t *);
877 1.54 jdolecek
878 1.72 dsl int compat_43_sys_gethostid(struct lwp *, const void *, register_t *);
879 1.54 jdolecek
880 1.72 dsl int compat_43_sys_sethostid(struct lwp *, const struct compat_43_sys_sethostid_args *, register_t *);
881 1.54 jdolecek
882 1.72 dsl int compat_43_sys_getrlimit(struct lwp *, const struct compat_43_sys_getrlimit_args *, register_t *);
883 1.54 jdolecek
884 1.72 dsl int compat_43_sys_setrlimit(struct lwp *, const struct compat_43_sys_setrlimit_args *, register_t *);
885 1.54 jdolecek
886 1.72 dsl int compat_43_sys_killpg(struct lwp *, const struct compat_43_sys_killpg_args *, register_t *);
887 1.54 jdolecek
888 1.72 dsl int sys_setsid(struct lwp *, const void *, register_t *);
889 1.54 jdolecek
890 1.80 bouyer int compat_50_sys_quotactl(struct lwp *, const struct compat_50_sys_quotactl_args *, register_t *);
891 1.54 jdolecek
892 1.72 dsl int compat_43_sys_quota(struct lwp *, const void *, register_t *);
893 1.54 jdolecek
894 1.72 dsl int compat_43_sys_getsockname(struct lwp *, const struct compat_43_sys_getsockname_args *, register_t *);
895 1.54 jdolecek
896 1.72 dsl int compat_43_sys_getdirentries(struct lwp *, const struct compat_43_sys_getdirentries_args *, register_t *);
897 1.54 jdolecek
898 1.72 dsl int compat_20_sys_statfs(struct lwp *, const struct compat_20_sys_statfs_args *, register_t *);
899 1.54 jdolecek
900 1.72 dsl int compat_20_sys_fstatfs(struct lwp *, const struct compat_20_sys_fstatfs_args *, register_t *);
901 1.54 jdolecek
902 1.72 dsl int compat_30_sys_getfh(struct lwp *, const struct compat_30_sys_getfh_args *, register_t *);
903 1.54 jdolecek
904 1.72 dsl int compat_09_sys_getdomainname(struct lwp *, const struct compat_09_sys_getdomainname_args *, register_t *);
905 1.54 jdolecek
906 1.72 dsl int compat_09_sys_setdomainname(struct lwp *, const struct compat_09_sys_setdomainname_args *, register_t *);
907 1.54 jdolecek
908 1.72 dsl int compat_09_sys_uname(struct lwp *, const struct compat_09_sys_uname_args *, register_t *);
909 1.54 jdolecek
910 1.72 dsl int sys_sysarch(struct lwp *, const struct sys_sysarch_args *, register_t *);
911 1.54 jdolecek
912 1.72 dsl int freebsd_sys_rtprio(struct lwp *, const struct freebsd_sys_rtprio_args *, register_t *);
913 1.54 jdolecek
914 1.48 eeh #if defined(SYSVSEM) && !defined(_LP64)
915 1.72 dsl int freebsd_sys_semsys(struct lwp *, const struct freebsd_sys_semsys_args *, register_t *);
916 1.54 jdolecek
917 1.1 mycroft #else
918 1.1 mycroft #endif
919 1.48 eeh #if defined(SYSVMSG) && !defined(_LP64)
920 1.72 dsl int freebsd_sys_msgsys(struct lwp *, const struct freebsd_sys_msgsys_args *, register_t *);
921 1.54 jdolecek
922 1.1 mycroft #else
923 1.1 mycroft #endif
924 1.48 eeh #if defined(SYSVSHM) && !defined(_LP64)
925 1.72 dsl int freebsd_sys_shmsys(struct lwp *, const struct freebsd_sys_shmsys_args *, register_t *);
926 1.54 jdolecek
927 1.1 mycroft #else
928 1.1 mycroft #endif
929 1.72 dsl int sys_pread(struct lwp *, const struct sys_pread_args *, register_t *);
930 1.54 jdolecek
931 1.72 dsl int sys_pwrite(struct lwp *, const struct sys_pwrite_args *, register_t *);
932 1.54 jdolecek
933 1.36 itojun #ifdef NTP
934 1.72 dsl int freebsd_ntp_adjtime(struct lwp *, const struct freebsd_ntp_adjtime_args *, register_t *);
935 1.54 jdolecek
936 1.35 bjh21 #else
937 1.35 bjh21 #endif
938 1.72 dsl int sys_setgid(struct lwp *, const struct sys_setgid_args *, register_t *);
939 1.54 jdolecek
940 1.72 dsl int sys_setegid(struct lwp *, const struct sys_setegid_args *, register_t *);
941 1.54 jdolecek
942 1.72 dsl int sys_seteuid(struct lwp *, const struct sys_seteuid_args *, register_t *);
943 1.54 jdolecek
944 1.72 dsl int compat_12_sys_stat(struct lwp *, const struct compat_12_sys_stat_args *, register_t *);
945 1.54 jdolecek
946 1.72 dsl int compat_12_sys_fstat(struct lwp *, const struct compat_12_sys_fstat_args *, register_t *);
947 1.54 jdolecek
948 1.72 dsl int compat_12_sys_lstat(struct lwp *, const struct compat_12_sys_lstat_args *, register_t *);
949 1.54 jdolecek
950 1.72 dsl int sys_pathconf(struct lwp *, const struct sys_pathconf_args *, register_t *);
951 1.54 jdolecek
952 1.72 dsl int sys_fpathconf(struct lwp *, const struct sys_fpathconf_args *, register_t *);
953 1.54 jdolecek
954 1.72 dsl int sys_getrlimit(struct lwp *, const struct sys_getrlimit_args *, register_t *);
955 1.54 jdolecek
956 1.72 dsl int sys_setrlimit(struct lwp *, const struct sys_setrlimit_args *, register_t *);
957 1.54 jdolecek
958 1.72 dsl int compat_12_sys_getdirentries(struct lwp *, const struct compat_12_sys_getdirentries_args *, register_t *);
959 1.54 jdolecek
960 1.72 dsl int freebsd_sys_mmap(struct lwp *, const struct freebsd_sys_mmap_args *, register_t *);
961 1.54 jdolecek
962 1.72 dsl int sys_lseek(struct lwp *, const struct sys_lseek_args *, register_t *);
963 1.54 jdolecek
964 1.72 dsl int sys_truncate(struct lwp *, const struct sys_truncate_args *, register_t *);
965 1.54 jdolecek
966 1.72 dsl int sys_ftruncate(struct lwp *, const struct sys_ftruncate_args *, register_t *);
967 1.54 jdolecek
968 1.72 dsl int freebsd_sys_sysctl(struct lwp *, const struct freebsd_sys_sysctl_args *, register_t *);
969 1.54 jdolecek
970 1.72 dsl int sys_mlock(struct lwp *, const struct sys_mlock_args *, register_t *);
971 1.54 jdolecek
972 1.72 dsl int sys_munlock(struct lwp *, const struct sys_munlock_args *, register_t *);
973 1.54 jdolecek
974 1.1 mycroft #ifdef FREEBSD_BASED_ON_44LITE_R2
975 1.72 dsl int freebsd_sys_undelete(struct lwp *, const struct freebsd_sys_undelete_args *, register_t *);
976 1.54 jdolecek
977 1.1 mycroft #else
978 1.1 mycroft #endif
979 1.75 christos int compat_50_sys_futimes(struct lwp *, const struct compat_50_sys_futimes_args *, register_t *);
980 1.54 jdolecek
981 1.72 dsl int sys_getpgid(struct lwp *, const struct sys_getpgid_args *, register_t *);
982 1.54 jdolecek
983 1.28 christos #if 0
984 1.28 christos #else
985 1.28 christos #endif
986 1.72 dsl int sys_poll(struct lwp *, const struct sys_poll_args *, register_t *);
987 1.54 jdolecek
988 1.28 christos #ifdef SYSVSEM
989 1.72 dsl int compat_14_sys___semctl(struct lwp *, const struct compat_14_sys___semctl_args *, register_t *);
990 1.54 jdolecek
991 1.72 dsl int sys_semget(struct lwp *, const struct sys_semget_args *, register_t *);
992 1.54 jdolecek
993 1.72 dsl int sys_semop(struct lwp *, const struct sys_semop_args *, register_t *);
994 1.54 jdolecek
995 1.72 dsl int sys_semconfig(struct lwp *, const struct sys_semconfig_args *, register_t *);
996 1.54 jdolecek
997 1.28 christos #else
998 1.28 christos #endif
999 1.28 christos #ifdef SYSVMSG
1000 1.72 dsl int compat_14_sys_msgctl(struct lwp *, const struct compat_14_sys_msgctl_args *, register_t *);
1001 1.54 jdolecek
1002 1.72 dsl int sys_msgget(struct lwp *, const struct sys_msgget_args *, register_t *);
1003 1.54 jdolecek
1004 1.72 dsl int sys_msgsnd(struct lwp *, const struct sys_msgsnd_args *, register_t *);
1005 1.54 jdolecek
1006 1.72 dsl int sys_msgrcv(struct lwp *, const struct sys_msgrcv_args *, register_t *);
1007 1.54 jdolecek
1008 1.28 christos #else
1009 1.28 christos #endif
1010 1.28 christos #ifdef SYSVSHM
1011 1.72 dsl int sys_shmat(struct lwp *, const struct sys_shmat_args *, register_t *);
1012 1.54 jdolecek
1013 1.72 dsl int compat_14_sys_shmctl(struct lwp *, const struct compat_14_sys_shmctl_args *, register_t *);
1014 1.54 jdolecek
1015 1.72 dsl int sys_shmdt(struct lwp *, const struct sys_shmdt_args *, register_t *);
1016 1.54 jdolecek
1017 1.72 dsl int sys_shmget(struct lwp *, const struct sys_shmget_args *, register_t *);
1018 1.54 jdolecek
1019 1.51 thorpej #else
1020 1.51 thorpej #endif
1021 1.75 christos int compat_50_sys_clock_gettime(struct lwp *, const struct compat_50_sys_clock_gettime_args *, register_t *);
1022 1.54 jdolecek
1023 1.75 christos int compat_50_sys_clock_settime(struct lwp *, const struct compat_50_sys_clock_settime_args *, register_t *);
1024 1.54 jdolecek
1025 1.75 christos int compat_50_sys_clock_getres(struct lwp *, const struct compat_50_sys_clock_getres_args *, register_t *);
1026 1.54 jdolecek
1027 1.75 christos int compat_50_sys_nanosleep(struct lwp *, const struct compat_50_sys_nanosleep_args *, register_t *);
1028 1.54 jdolecek
1029 1.72 dsl int sys_minherit(struct lwp *, const struct sys_minherit_args *, register_t *);
1030 1.54 jdolecek
1031 1.72 dsl int freebsd_sys_rfork(struct lwp *, const struct freebsd_sys_rfork_args *, register_t *);
1032 1.54 jdolecek
1033 1.72 dsl int sys_issetugid(struct lwp *, const void *, register_t *);
1034 1.54 jdolecek
1035 1.72 dsl int sys_lchown(struct lwp *, const struct sys_lchown_args *, register_t *);
1036 1.54 jdolecek
1037 1.72 dsl int compat_30_sys_getdents(struct lwp *, const struct compat_30_sys_getdents_args *, register_t *);
1038 1.54 jdolecek
1039 1.72 dsl int sys_lchmod(struct lwp *, const struct sys_lchmod_args *, register_t *);
1040 1.54 jdolecek
1041 1.75 christos int compat_50_sys_lutimes(struct lwp *, const struct compat_50_sys_lutimes_args *, register_t *);
1042 1.54 jdolecek
1043 1.72 dsl int sys___msync13(struct lwp *, const struct sys___msync13_args *, register_t *);
1044 1.54 jdolecek
1045 1.72 dsl int compat_30_sys___stat13(struct lwp *, const struct compat_30_sys___stat13_args *, register_t *);
1046 1.54 jdolecek
1047 1.72 dsl int compat_30_sys___fstat13(struct lwp *, const struct compat_30_sys___fstat13_args *, register_t *);
1048 1.54 jdolecek
1049 1.72 dsl int compat_30_sys___lstat13(struct lwp *, const struct compat_30_sys___lstat13_args *, register_t *);
1050 1.54 jdolecek
1051 1.72 dsl int compat_20_sys_fhstatfs(struct lwp *, const struct compat_20_sys_fhstatfs_args *, register_t *);
1052 1.54 jdolecek
1053 1.72 dsl int compat_30_sys_fhopen(struct lwp *, const struct compat_30_sys_fhopen_args *, register_t *);
1054 1.54 jdolecek
1055 1.72 dsl int compat_30_sys_fhstat(struct lwp *, const struct compat_30_sys_fhstat_args *, register_t *);
1056 1.54 jdolecek
1057 1.72 dsl int sys_getsid(struct lwp *, const struct sys_getsid_args *, register_t *);
1058 1.54 jdolecek
1059 1.72 dsl int freebsd_sys_yield(struct lwp *, const void *, register_t *);
1060 1.54 jdolecek
1061 1.72 dsl int sys_mlockall(struct lwp *, const struct sys_mlockall_args *, register_t *);
1062 1.54 jdolecek
1063 1.72 dsl int sys_munlockall(struct lwp *, const void *, register_t *);
1064 1.54 jdolecek
1065 1.72 dsl int sys___getcwd(struct lwp *, const struct sys___getcwd_args *, register_t *);
1066 1.54 jdolecek
1067 1.72 dsl int freebsd_sys_sched_setparam(struct lwp *, const struct freebsd_sys_sched_setparam_args *, register_t *);
1068 1.54 jdolecek
1069 1.72 dsl int freebsd_sys_sched_getparam(struct lwp *, const struct freebsd_sys_sched_getparam_args *, register_t *);
1070 1.54 jdolecek
1071 1.72 dsl int freebsd_sys_sched_setscheduler(struct lwp *, const struct freebsd_sys_sched_setscheduler_args *, register_t *);
1072 1.54 jdolecek
1073 1.72 dsl int freebsd_sys_sched_getscheduler(struct lwp *, const struct freebsd_sys_sched_getscheduler_args *, register_t *);
1074 1.54 jdolecek
1075 1.72 dsl int freebsd_sys_sched_yield(struct lwp *, const void *, register_t *);
1076 1.54 jdolecek
1077 1.72 dsl int freebsd_sys_sched_get_priority_max(struct lwp *, const struct freebsd_sys_sched_get_priority_max_args *, register_t *);
1078 1.54 jdolecek
1079 1.72 dsl int freebsd_sys_sched_get_priority_min(struct lwp *, const struct freebsd_sys_sched_get_priority_min_args *, register_t *);
1080 1.54 jdolecek
1081 1.72 dsl int freebsd_sys_utrace(struct lwp *, const struct freebsd_sys_utrace_args *, register_t *);
1082 1.54 jdolecek
1083 1.72 dsl int sys___sigprocmask14(struct lwp *, const struct sys___sigprocmask14_args *, register_t *);
1084 1.54 jdolecek
1085 1.72 dsl int sys___sigsuspend14(struct lwp *, const struct sys___sigsuspend14_args *, register_t *);
1086 1.54 jdolecek
1087 1.72 dsl int freebsd_sys_sigaction4(struct lwp *, const struct freebsd_sys_sigaction4_args *, register_t *);
1088 1.54 jdolecek
1089 1.72 dsl int sys___sigpending14(struct lwp *, const struct sys___sigpending14_args *, register_t *);
1090 1.54 jdolecek
1091 1.72 dsl int sys_lchflags(struct lwp *, const struct sys_lchflags_args *, register_t *);
1092 1.54 jdolecek
1093 1.72 dsl int sys_uuidgen(struct lwp *, const struct sys_uuidgen_args *, register_t *);
1094 1.55 tsarna
1095 1.54 jdolecek #if defined(P1003_1B_SEMAPHORE) || !defined(_KERNEL)
1096 1.72 dsl int sys__ksem_close(struct lwp *, const struct sys__ksem_close_args *, register_t *);
1097 1.54 jdolecek
1098 1.72 dsl int sys__ksem_post(struct lwp *, const struct sys__ksem_post_args *, register_t *);
1099 1.54 jdolecek
1100 1.72 dsl int sys__ksem_wait(struct lwp *, const struct sys__ksem_wait_args *, register_t *);
1101 1.54 jdolecek
1102 1.72 dsl int sys__ksem_trywait(struct lwp *, const struct sys__ksem_trywait_args *, register_t *);
1103 1.54 jdolecek
1104 1.72 dsl int sys__ksem_unlink(struct lwp *, const struct sys__ksem_unlink_args *, register_t *);
1105 1.54 jdolecek
1106 1.72 dsl int sys__ksem_getvalue(struct lwp *, const struct sys__ksem_getvalue_args *, register_t *);
1107 1.54 jdolecek
1108 1.72 dsl int sys__ksem_destroy(struct lwp *, const struct sys__ksem_destroy_args *, register_t *);
1109 1.54 jdolecek
1110 1.54 jdolecek #else
1111 1.54 jdolecek #endif
1112 1.64 christos #endif /* _FREEBSD_SYS_SYSCALLARGS_H_ */
1113