sunos_syscallargs.h revision 1.59 1 1.58 pavel /* $NetBSD: sunos_syscallargs.h,v 1.59 2006/08/30 23:00:45 he Exp $ */
2 1.32 thorpej
3 1.1 deraadt /*
4 1.1 deraadt * System call argument lists.
5 1.1 deraadt *
6 1.1 deraadt * DO NOT EDIT-- this file is automatically generated.
7 1.59 he * created from NetBSD: syscalls.master,v 1.64 2006/08/30 23:00:06 he Exp
8 1.1 deraadt */
9 1.38 tron
10 1.58 pavel #ifndef _SUNOS_SYS_SYSCALLARGS_H_
11 1.58 pavel #define _SUNOS_SYS_SYSCALLARGS_H_
12 1.41 christos
13 1.38 tron #ifdef syscallarg
14 1.38 tron #undef syscallarg
15 1.38 tron #endif
16 1.1 deraadt
17 1.44 mrg #define syscallarg(x) \
18 1.44 mrg union { \
19 1.44 mrg register_t pad; \
20 1.44 mrg struct { x datum; } le; \
21 1.51 lukem struct { /* LINTED zero array dimension */ \
22 1.51 lukem int8_t pad[ /* CONSTCOND */ \
23 1.51 lukem (sizeof (register_t) < sizeof (x)) \
24 1.44 mrg ? 0 \
25 1.44 mrg : sizeof (register_t) - sizeof (x)]; \
26 1.44 mrg x datum; \
27 1.44 mrg } be; \
28 1.44 mrg }
29 1.1 deraadt
30 1.16 mycroft struct sunos_sys_open_args {
31 1.41 christos syscallarg(const char *) path;
32 1.1 deraadt syscallarg(int) flags;
33 1.1 deraadt syscallarg(int) mode;
34 1.1 deraadt };
35 1.1 deraadt
36 1.16 mycroft struct sunos_sys_wait4_args {
37 1.1 deraadt syscallarg(int) pid;
38 1.1 deraadt syscallarg(int *) status;
39 1.1 deraadt syscallarg(int) options;
40 1.1 deraadt syscallarg(struct rusage *) rusage;
41 1.1 deraadt };
42 1.1 deraadt
43 1.16 mycroft struct sunos_sys_creat_args {
44 1.41 christos syscallarg(const char *) path;
45 1.1 deraadt syscallarg(int) mode;
46 1.1 deraadt };
47 1.1 deraadt
48 1.16 mycroft struct sunos_sys_execv_args {
49 1.41 christos syscallarg(const char *) path;
50 1.4 deraadt syscallarg(char **) argp;
51 1.1 deraadt };
52 1.1 deraadt
53 1.16 mycroft struct sunos_sys_mknod_args {
54 1.41 christos syscallarg(const char *) path;
55 1.1 deraadt syscallarg(int) mode;
56 1.1 deraadt syscallarg(int) dev;
57 1.1 deraadt };
58 1.1 deraadt
59 1.21 christos struct sunos_sys_stime_args {
60 1.21 christos syscallarg(time_t *) tp;
61 1.21 christos };
62 1.59 he #if defined(PTRACE) || !defined(_KERNEL)
63 1.21 christos
64 1.16 mycroft struct sunos_sys_ptrace_args {
65 1.5 deraadt syscallarg(int) req;
66 1.16 mycroft syscallarg(pid_t) pid;
67 1.16 mycroft syscallarg(caddr_t) addr;
68 1.5 deraadt syscallarg(int) data;
69 1.5 deraadt syscallarg(char *) addr2;
70 1.5 deraadt };
71 1.59 he #else
72 1.59 he #endif
73 1.5 deraadt
74 1.16 mycroft struct sunos_sys_access_args {
75 1.41 christos syscallarg(const char *) path;
76 1.10 pk syscallarg(int) flags;
77 1.10 pk };
78 1.10 pk
79 1.16 mycroft struct sunos_sys_stat_args {
80 1.41 christos syscallarg(const char *) path;
81 1.28 christos syscallarg(struct stat43 *) ub;
82 1.10 pk };
83 1.10 pk
84 1.16 mycroft struct sunos_sys_lstat_args {
85 1.41 christos syscallarg(const char *) path;
86 1.28 christos syscallarg(struct stat43 *) ub;
87 1.10 pk };
88 1.10 pk
89 1.16 mycroft struct sunos_sys_mctl_args {
90 1.29 christos syscallarg(void *) addr;
91 1.1 deraadt syscallarg(int) len;
92 1.1 deraadt syscallarg(int) func;
93 1.1 deraadt syscallarg(void *) arg;
94 1.1 deraadt };
95 1.1 deraadt
96 1.16 mycroft struct sunos_sys_ioctl_args {
97 1.1 deraadt syscallarg(int) fd;
98 1.1 deraadt syscallarg(u_long) com;
99 1.1 deraadt syscallarg(caddr_t) data;
100 1.9 christos };
101 1.9 christos
102 1.16 mycroft struct sunos_sys_reboot_args {
103 1.9 christos syscallarg(int) howto;
104 1.9 christos syscallarg(char *) bootstr;
105 1.1 deraadt };
106 1.1 deraadt
107 1.20 thorpej struct sunos_sys_execve_args {
108 1.41 christos syscallarg(const char *) path;
109 1.20 thorpej syscallarg(char **) argp;
110 1.20 thorpej syscallarg(char **) envp;
111 1.20 thorpej };
112 1.20 thorpej
113 1.16 mycroft struct sunos_sys_omsync_args {
114 1.1 deraadt syscallarg(caddr_t) addr;
115 1.16 mycroft syscallarg(size_t) len;
116 1.1 deraadt syscallarg(int) flags;
117 1.1 deraadt };
118 1.1 deraadt
119 1.16 mycroft struct sunos_sys_mmap_args {
120 1.29 christos syscallarg(void *) addr;
121 1.16 mycroft syscallarg(size_t) len;
122 1.1 deraadt syscallarg(int) prot;
123 1.16 mycroft syscallarg(int) flags;
124 1.1 deraadt syscallarg(int) fd;
125 1.1 deraadt syscallarg(long) pos;
126 1.1 deraadt };
127 1.1 deraadt
128 1.16 mycroft struct sunos_sys_setpgrp_args {
129 1.1 deraadt syscallarg(int) pid;
130 1.1 deraadt syscallarg(int) pgid;
131 1.1 deraadt };
132 1.1 deraadt
133 1.17 pk struct sunos_sys_fcntl_args {
134 1.17 pk syscallarg(int) fd;
135 1.17 pk syscallarg(int) cmd;
136 1.17 pk syscallarg(void *) arg;
137 1.17 pk };
138 1.17 pk
139 1.52 mrg struct sunos_sys_socket_args {
140 1.52 mrg syscallarg(int) domain;
141 1.52 mrg syscallarg(int) type;
142 1.52 mrg syscallarg(int) protocol;
143 1.52 mrg };
144 1.52 mrg
145 1.16 mycroft struct sunos_sys_setsockopt_args {
146 1.1 deraadt syscallarg(int) s;
147 1.1 deraadt syscallarg(int) level;
148 1.1 deraadt syscallarg(int) name;
149 1.1 deraadt syscallarg(caddr_t) val;
150 1.1 deraadt syscallarg(int) valsize;
151 1.14 pk };
152 1.14 pk
153 1.16 mycroft struct sunos_sys_sigvec_args {
154 1.14 pk syscallarg(int) signum;
155 1.14 pk syscallarg(struct sigvec *) nsv;
156 1.14 pk syscallarg(struct sigvec *) osv;
157 1.1 deraadt };
158 1.1 deraadt
159 1.36 pk struct sunos_sys_sigsuspend_args {
160 1.36 pk syscallarg(int) mask;
161 1.36 pk };
162 1.36 pk
163 1.52 mrg struct sunos_sys_socketpair_args {
164 1.52 mrg syscallarg(int) domain;
165 1.52 mrg syscallarg(int) type;
166 1.52 mrg syscallarg(int) protocol;
167 1.52 mrg syscallarg(int *) rsv;
168 1.52 mrg };
169 1.52 mrg
170 1.16 mycroft struct sunos_sys_sigreturn_args {
171 1.8 christos syscallarg(struct sigcontext *) sigcntxp;
172 1.8 christos };
173 1.8 christos
174 1.16 mycroft struct sunos_sys_getrlimit_args {
175 1.1 deraadt syscallarg(u_int) which;
176 1.1 deraadt syscallarg(struct orlimit *) rlp;
177 1.1 deraadt };
178 1.1 deraadt
179 1.16 mycroft struct sunos_sys_setrlimit_args {
180 1.1 deraadt syscallarg(u_int) which;
181 1.1 deraadt syscallarg(struct orlimit *) rlp;
182 1.5 deraadt };
183 1.55 perry #ifdef NFSSERVER
184 1.5 deraadt
185 1.16 mycroft struct sunos_sys_nfssvc_args {
186 1.1 deraadt syscallarg(int) fd;
187 1.1 deraadt };
188 1.55 perry #else
189 1.55 perry #endif
190 1.1 deraadt
191 1.16 mycroft struct sunos_sys_statfs_args {
192 1.41 christos syscallarg(const char *) path;
193 1.1 deraadt syscallarg(struct sunos_statfs *) buf;
194 1.1 deraadt };
195 1.1 deraadt
196 1.16 mycroft struct sunos_sys_fstatfs_args {
197 1.1 deraadt syscallarg(int) fd;
198 1.1 deraadt syscallarg(struct sunos_statfs *) buf;
199 1.1 deraadt };
200 1.1 deraadt
201 1.16 mycroft struct sunos_sys_unmount_args {
202 1.1 deraadt syscallarg(char *) path;
203 1.1 deraadt };
204 1.55 perry #ifdef NFS
205 1.55 perry #else
206 1.55 perry #endif
207 1.1 deraadt
208 1.16 mycroft struct sunos_sys_quotactl_args {
209 1.1 deraadt syscallarg(int) cmd;
210 1.1 deraadt syscallarg(char *) special;
211 1.1 deraadt syscallarg(int) uid;
212 1.1 deraadt syscallarg(caddr_t) addr;
213 1.1 deraadt };
214 1.1 deraadt
215 1.16 mycroft struct sunos_sys_exportfs_args {
216 1.1 deraadt syscallarg(char *) path;
217 1.1 deraadt syscallarg(char *) ex;
218 1.1 deraadt };
219 1.1 deraadt
220 1.16 mycroft struct sunos_sys_mount_args {
221 1.1 deraadt syscallarg(char *) type;
222 1.1 deraadt syscallarg(char *) dir;
223 1.1 deraadt syscallarg(int) flags;
224 1.1 deraadt syscallarg(caddr_t) data;
225 1.1 deraadt };
226 1.1 deraadt
227 1.16 mycroft struct sunos_sys_ustat_args {
228 1.1 deraadt syscallarg(int) dev;
229 1.1 deraadt syscallarg(struct sunos_ustat *) buf;
230 1.1 deraadt };
231 1.55 perry #ifdef SYSVSEM
232 1.55 perry #else
233 1.55 perry #endif
234 1.55 perry #ifdef SYSVMSG
235 1.55 perry #else
236 1.55 perry #endif
237 1.55 perry #ifdef SYSVSHM
238 1.55 perry #else
239 1.55 perry #endif
240 1.1 deraadt
241 1.16 mycroft struct sunos_sys_auditsys_args {
242 1.1 deraadt syscallarg(char *) record;
243 1.1 deraadt };
244 1.1 deraadt
245 1.16 mycroft struct sunos_sys_getdents_args {
246 1.1 deraadt syscallarg(int) fd;
247 1.1 deraadt syscallarg(char *) buf;
248 1.1 deraadt syscallarg(int) nbytes;
249 1.1 deraadt };
250 1.1 deraadt
251 1.16 mycroft struct sunos_sys_sigpending_args {
252 1.1 deraadt syscallarg(int *) mask;
253 1.1 deraadt };
254 1.1 deraadt
255 1.16 mycroft struct sunos_sys_sysconf_args {
256 1.1 deraadt syscallarg(int) name;
257 1.1 deraadt };
258 1.1 deraadt
259 1.16 mycroft struct sunos_sys_uname_args {
260 1.1 deraadt syscallarg(struct sunos_utsname *) name;
261 1.1 deraadt };
262 1.1 deraadt
263 1.15 thorpej /*
264 1.15 thorpej * System call prototypes.
265 1.15 thorpej */
266 1.15 thorpej
267 1.53 thorpej int sys_nosys(struct lwp *, void *, register_t *);
268 1.55 perry
269 1.53 thorpej int sys_exit(struct lwp *, void *, register_t *);
270 1.55 perry
271 1.53 thorpej int sys_fork(struct lwp *, void *, register_t *);
272 1.55 perry
273 1.53 thorpej int sys_read(struct lwp *, void *, register_t *);
274 1.55 perry
275 1.53 thorpej int sys_write(struct lwp *, void *, register_t *);
276 1.55 perry
277 1.53 thorpej int sunos_sys_open(struct lwp *, void *, register_t *);
278 1.55 perry
279 1.53 thorpej int sys_close(struct lwp *, void *, register_t *);
280 1.55 perry
281 1.53 thorpej int sunos_sys_wait4(struct lwp *, void *, register_t *);
282 1.55 perry
283 1.53 thorpej int sunos_sys_creat(struct lwp *, void *, register_t *);
284 1.55 perry
285 1.53 thorpej int sys_link(struct lwp *, void *, register_t *);
286 1.55 perry
287 1.53 thorpej int sys_unlink(struct lwp *, void *, register_t *);
288 1.55 perry
289 1.53 thorpej int sunos_sys_execv(struct lwp *, void *, register_t *);
290 1.55 perry
291 1.53 thorpej int sys_chdir(struct lwp *, void *, register_t *);
292 1.55 perry
293 1.53 thorpej int sunos_sys_mknod(struct lwp *, void *, register_t *);
294 1.55 perry
295 1.53 thorpej int sys_chmod(struct lwp *, void *, register_t *);
296 1.55 perry
297 1.53 thorpej int sys_chown(struct lwp *, void *, register_t *);
298 1.55 perry
299 1.53 thorpej int sys_obreak(struct lwp *, void *, register_t *);
300 1.55 perry
301 1.53 thorpej int compat_43_sys_lseek(struct lwp *, void *, register_t *);
302 1.55 perry
303 1.53 thorpej int sys_getpid_with_ppid(struct lwp *, void *, register_t *);
304 1.55 perry
305 1.53 thorpej int sys_setuid(struct lwp *, void *, register_t *);
306 1.55 perry
307 1.53 thorpej int sys_getuid_with_euid(struct lwp *, void *, register_t *);
308 1.55 perry
309 1.53 thorpej int sunos_sys_stime(struct lwp *, void *, register_t *);
310 1.55 perry
311 1.59 he #if defined(PTRACE) || !defined(_KERNEL)
312 1.53 thorpej int sunos_sys_ptrace(struct lwp *, void *, register_t *);
313 1.55 perry
314 1.59 he #else
315 1.59 he #endif
316 1.53 thorpej int sunos_sys_access(struct lwp *, void *, register_t *);
317 1.55 perry
318 1.53 thorpej int sys_sync(struct lwp *, void *, register_t *);
319 1.55 perry
320 1.53 thorpej int sys_kill(struct lwp *, void *, register_t *);
321 1.55 perry
322 1.53 thorpej int sunos_sys_stat(struct lwp *, void *, register_t *);
323 1.55 perry
324 1.53 thorpej int sunos_sys_lstat(struct lwp *, void *, register_t *);
325 1.55 perry
326 1.53 thorpej int sys_dup(struct lwp *, void *, register_t *);
327 1.55 perry
328 1.53 thorpej int sys_pipe(struct lwp *, void *, register_t *);
329 1.55 perry
330 1.53 thorpej int sys_profil(struct lwp *, void *, register_t *);
331 1.55 perry
332 1.53 thorpej int sys_setgid(struct lwp *, void *, register_t *);
333 1.55 perry
334 1.53 thorpej int sys_getgid_with_egid(struct lwp *, void *, register_t *);
335 1.55 perry
336 1.53 thorpej int sys_acct(struct lwp *, void *, register_t *);
337 1.55 perry
338 1.53 thorpej int sunos_sys_mctl(struct lwp *, void *, register_t *);
339 1.55 perry
340 1.53 thorpej int sunos_sys_ioctl(struct lwp *, void *, register_t *);
341 1.55 perry
342 1.53 thorpej int sunos_sys_reboot(struct lwp *, void *, register_t *);
343 1.55 perry
344 1.53 thorpej int sys_symlink(struct lwp *, void *, register_t *);
345 1.55 perry
346 1.53 thorpej int sys_readlink(struct lwp *, void *, register_t *);
347 1.55 perry
348 1.53 thorpej int sunos_sys_execve(struct lwp *, void *, register_t *);
349 1.55 perry
350 1.53 thorpej int sys_umask(struct lwp *, void *, register_t *);
351 1.55 perry
352 1.53 thorpej int sys_chroot(struct lwp *, void *, register_t *);
353 1.55 perry
354 1.53 thorpej int compat_43_sys_fstat(struct lwp *, void *, register_t *);
355 1.55 perry
356 1.53 thorpej int compat_43_sys_getpagesize(struct lwp *, void *, register_t *);
357 1.55 perry
358 1.53 thorpej int sunos_sys_omsync(struct lwp *, void *, register_t *);
359 1.55 perry
360 1.53 thorpej int sys_vfork(struct lwp *, void *, register_t *);
361 1.55 perry
362 1.53 thorpej int sys_sbrk(struct lwp *, void *, register_t *);
363 1.55 perry
364 1.53 thorpej int sys_sstk(struct lwp *, void *, register_t *);
365 1.55 perry
366 1.53 thorpej int sunos_sys_mmap(struct lwp *, void *, register_t *);
367 1.55 perry
368 1.53 thorpej int sys_ovadvise(struct lwp *, void *, register_t *);
369 1.55 perry
370 1.53 thorpej int sys_munmap(struct lwp *, void *, register_t *);
371 1.55 perry
372 1.53 thorpej int sys_mprotect(struct lwp *, void *, register_t *);
373 1.55 perry
374 1.53 thorpej int sys_madvise(struct lwp *, void *, register_t *);
375 1.55 perry
376 1.53 thorpej int sunos_sys_vhangup(struct lwp *, void *, register_t *);
377 1.55 perry
378 1.53 thorpej int sys_mincore(struct lwp *, void *, register_t *);
379 1.55 perry
380 1.53 thorpej int sys_getgroups(struct lwp *, void *, register_t *);
381 1.55 perry
382 1.53 thorpej int sys_setgroups(struct lwp *, void *, register_t *);
383 1.55 perry
384 1.53 thorpej int sys_getpgrp(struct lwp *, void *, register_t *);
385 1.55 perry
386 1.53 thorpej int sunos_sys_setpgrp(struct lwp *, void *, register_t *);
387 1.55 perry
388 1.53 thorpej int sys_setitimer(struct lwp *, void *, register_t *);
389 1.55 perry
390 1.53 thorpej int compat_12_sys_swapon(struct lwp *, void *, register_t *);
391 1.55 perry
392 1.53 thorpej int sys_getitimer(struct lwp *, void *, register_t *);
393 1.55 perry
394 1.53 thorpej int compat_43_sys_gethostname(struct lwp *, void *, register_t *);
395 1.55 perry
396 1.53 thorpej int compat_43_sys_sethostname(struct lwp *, void *, register_t *);
397 1.55 perry
398 1.53 thorpej int compat_43_sys_getdtablesize(struct lwp *, void *, register_t *);
399 1.55 perry
400 1.53 thorpej int sys_dup2(struct lwp *, void *, register_t *);
401 1.55 perry
402 1.53 thorpej int sunos_sys_fcntl(struct lwp *, void *, register_t *);
403 1.55 perry
404 1.53 thorpej int sys_select(struct lwp *, void *, register_t *);
405 1.55 perry
406 1.53 thorpej int sys_fsync(struct lwp *, void *, register_t *);
407 1.55 perry
408 1.53 thorpej int sys_setpriority(struct lwp *, void *, register_t *);
409 1.55 perry
410 1.53 thorpej int sunos_sys_socket(struct lwp *, void *, register_t *);
411 1.55 perry
412 1.53 thorpej int sys_connect(struct lwp *, void *, register_t *);
413 1.55 perry
414 1.53 thorpej int compat_43_sys_accept(struct lwp *, void *, register_t *);
415 1.55 perry
416 1.53 thorpej int sys_getpriority(struct lwp *, void *, register_t *);
417 1.55 perry
418 1.53 thorpej int compat_43_sys_send(struct lwp *, void *, register_t *);
419 1.55 perry
420 1.53 thorpej int compat_43_sys_recv(struct lwp *, void *, register_t *);
421 1.55 perry
422 1.53 thorpej int sys_bind(struct lwp *, void *, register_t *);
423 1.55 perry
424 1.53 thorpej int sunos_sys_setsockopt(struct lwp *, void *, register_t *);
425 1.55 perry
426 1.53 thorpej int sys_listen(struct lwp *, void *, register_t *);
427 1.55 perry
428 1.53 thorpej int sunos_sys_sigvec(struct lwp *, void *, register_t *);
429 1.55 perry
430 1.53 thorpej int compat_43_sys_sigblock(struct lwp *, void *, register_t *);
431 1.55 perry
432 1.53 thorpej int compat_43_sys_sigsetmask(struct lwp *, void *, register_t *);
433 1.55 perry
434 1.53 thorpej int sunos_sys_sigsuspend(struct lwp *, void *, register_t *);
435 1.55 perry
436 1.53 thorpej int compat_43_sys_sigstack(struct lwp *, void *, register_t *);
437 1.55 perry
438 1.53 thorpej int compat_43_sys_recvmsg(struct lwp *, void *, register_t *);
439 1.55 perry
440 1.53 thorpej int compat_43_sys_sendmsg(struct lwp *, void *, register_t *);
441 1.55 perry
442 1.53 thorpej int sys_gettimeofday(struct lwp *, void *, register_t *);
443 1.55 perry
444 1.53 thorpej int sys_getrusage(struct lwp *, void *, register_t *);
445 1.55 perry
446 1.53 thorpej int sys_getsockopt(struct lwp *, void *, register_t *);
447 1.55 perry
448 1.53 thorpej int sys_readv(struct lwp *, void *, register_t *);
449 1.55 perry
450 1.53 thorpej int sys_writev(struct lwp *, void *, register_t *);
451 1.55 perry
452 1.53 thorpej int sys_settimeofday(struct lwp *, void *, register_t *);
453 1.55 perry
454 1.53 thorpej int sys_fchown(struct lwp *, void *, register_t *);
455 1.55 perry
456 1.53 thorpej int sys_fchmod(struct lwp *, void *, register_t *);
457 1.55 perry
458 1.53 thorpej int compat_43_sys_recvfrom(struct lwp *, void *, register_t *);
459 1.55 perry
460 1.53 thorpej int sys_setreuid(struct lwp *, void *, register_t *);
461 1.55 perry
462 1.53 thorpej int sys_setregid(struct lwp *, void *, register_t *);
463 1.55 perry
464 1.53 thorpej int sys_rename(struct lwp *, void *, register_t *);
465 1.55 perry
466 1.53 thorpej int compat_43_sys_truncate(struct lwp *, void *, register_t *);
467 1.55 perry
468 1.53 thorpej int compat_43_sys_ftruncate(struct lwp *, void *, register_t *);
469 1.55 perry
470 1.53 thorpej int sys_flock(struct lwp *, void *, register_t *);
471 1.55 perry
472 1.53 thorpej int sys_sendto(struct lwp *, void *, register_t *);
473 1.55 perry
474 1.53 thorpej int sys_shutdown(struct lwp *, void *, register_t *);
475 1.55 perry
476 1.53 thorpej int sunos_sys_socketpair(struct lwp *, void *, register_t *);
477 1.55 perry
478 1.53 thorpej int sys_mkdir(struct lwp *, void *, register_t *);
479 1.55 perry
480 1.53 thorpej int sys_rmdir(struct lwp *, void *, register_t *);
481 1.55 perry
482 1.53 thorpej int sys_utimes(struct lwp *, void *, register_t *);
483 1.55 perry
484 1.53 thorpej int sunos_sys_sigreturn(struct lwp *, void *, register_t *);
485 1.55 perry
486 1.53 thorpej int sys_adjtime(struct lwp *, void *, register_t *);
487 1.55 perry
488 1.53 thorpej int compat_43_sys_getpeername(struct lwp *, void *, register_t *);
489 1.55 perry
490 1.53 thorpej int compat_43_sys_gethostid(struct lwp *, void *, register_t *);
491 1.55 perry
492 1.53 thorpej int sunos_sys_getrlimit(struct lwp *, void *, register_t *);
493 1.55 perry
494 1.53 thorpej int sunos_sys_setrlimit(struct lwp *, void *, register_t *);
495 1.55 perry
496 1.53 thorpej int compat_43_sys_killpg(struct lwp *, void *, register_t *);
497 1.55 perry
498 1.53 thorpej int compat_43_sys_getsockname(struct lwp *, void *, register_t *);
499 1.55 perry
500 1.53 thorpej int sys_poll(struct lwp *, void *, register_t *);
501 1.55 perry
502 1.15 thorpej #ifdef NFSSERVER
503 1.53 thorpej int sunos_sys_nfssvc(struct lwp *, void *, register_t *);
504 1.55 perry
505 1.15 thorpej #else
506 1.15 thorpej #endif
507 1.53 thorpej int compat_12_sys_getdirentries(struct lwp *, void *, register_t *);
508 1.55 perry
509 1.53 thorpej int sunos_sys_statfs(struct lwp *, void *, register_t *);
510 1.55 perry
511 1.53 thorpej int sunos_sys_fstatfs(struct lwp *, void *, register_t *);
512 1.55 perry
513 1.53 thorpej int sunos_sys_unmount(struct lwp *, void *, register_t *);
514 1.55 perry
515 1.24 thorpej #ifdef NFS
516 1.53 thorpej int async_daemon(struct lwp *, void *, register_t *);
517 1.55 perry
518 1.58 pavel int compat_30_sys_getfh(struct lwp *, void *, register_t *);
519 1.55 perry
520 1.15 thorpej #else
521 1.15 thorpej #endif
522 1.53 thorpej int compat_09_sys_getdomainname(struct lwp *, void *, register_t *);
523 1.55 perry
524 1.53 thorpej int compat_09_sys_setdomainname(struct lwp *, void *, register_t *);
525 1.55 perry
526 1.53 thorpej int sunos_sys_quotactl(struct lwp *, void *, register_t *);
527 1.55 perry
528 1.53 thorpej int sunos_sys_exportfs(struct lwp *, void *, register_t *);
529 1.55 perry
530 1.53 thorpej int sunos_sys_mount(struct lwp *, void *, register_t *);
531 1.55 perry
532 1.53 thorpej int sunos_sys_ustat(struct lwp *, void *, register_t *);
533 1.55 perry
534 1.15 thorpej #ifdef SYSVSEM
535 1.53 thorpej int compat_10_sys_semsys(struct lwp *, void *, register_t *);
536 1.55 perry
537 1.15 thorpej #else
538 1.15 thorpej #endif
539 1.15 thorpej #ifdef SYSVMSG
540 1.53 thorpej int compat_10_sys_msgsys(struct lwp *, void *, register_t *);
541 1.55 perry
542 1.15 thorpej #else
543 1.15 thorpej #endif
544 1.15 thorpej #ifdef SYSVSHM
545 1.53 thorpej int compat_10_sys_shmsys(struct lwp *, void *, register_t *);
546 1.55 perry
547 1.15 thorpej #else
548 1.15 thorpej #endif
549 1.53 thorpej int sunos_sys_auditsys(struct lwp *, void *, register_t *);
550 1.55 perry
551 1.53 thorpej int sunos_sys_getdents(struct lwp *, void *, register_t *);
552 1.55 perry
553 1.53 thorpej int sys_setsid(struct lwp *, void *, register_t *);
554 1.55 perry
555 1.53 thorpej int sys_fchdir(struct lwp *, void *, register_t *);
556 1.55 perry
557 1.53 thorpej int sys_fchroot(struct lwp *, void *, register_t *);
558 1.55 perry
559 1.53 thorpej int sunos_sys_sigpending(struct lwp *, void *, register_t *);
560 1.55 perry
561 1.53 thorpej int sys_setpgid(struct lwp *, void *, register_t *);
562 1.55 perry
563 1.53 thorpej int sys_pathconf(struct lwp *, void *, register_t *);
564 1.55 perry
565 1.53 thorpej int sys_fpathconf(struct lwp *, void *, register_t *);
566 1.55 perry
567 1.53 thorpej int sunos_sys_sysconf(struct lwp *, void *, register_t *);
568 1.55 perry
569 1.53 thorpej int sunos_sys_uname(struct lwp *, void *, register_t *);
570 1.55 perry
571 1.58 pavel #endif /* _SUNOS_SYS_SYSCALLARGS_H_ */
572