xref: /netbsd-src/sys/compat/linux/arch/powerpc/linux_syscallargs.h (revision 1ca5c1b28139779176bd5c13ad7c5f25c0bcd5f8)
1 /* $NetBSD: linux_syscallargs.h,v 1.11 2001/11/13 02:08:47 lukem Exp $ */
2 
3 /*
4  * System call argument lists.
5  *
6  * DO NOT EDIT-- this file is automatically generated.
7  * created from	NetBSD: syscalls.master,v 1.7 2001/09/08 07:09:44 manu Exp
8  */
9 
10 #ifndef _LINUX_SYS__SYSCALLARGS_H_
11 #define	_LINUX_SYS__SYSCALLARGS_H_
12 
13 #ifdef	syscallarg
14 #undef	syscallarg
15 #endif
16 
17 #define	syscallarg(x)							\
18 	union {								\
19 		register_t pad;						\
20 		struct { x datum; } le;					\
21 		struct { /* LINTED zero array dimension */		\
22 			int8_t pad[  /* CONSTCOND */			\
23 				(sizeof (register_t) < sizeof (x))	\
24 				? 0					\
25 				: sizeof (register_t) - sizeof (x)];	\
26 			x datum;					\
27 		} be;							\
28 	}
29 
30 struct linux_sys_open_args {
31 	syscallarg(const char *) path;
32 	syscallarg(int) flags;
33 	syscallarg(int) mode;
34 };
35 
36 struct linux_sys_waitpid_args {
37 	syscallarg(int) pid;
38 	syscallarg(int *) status;
39 	syscallarg(int) options;
40 };
41 
42 struct linux_sys_creat_args {
43 	syscallarg(const char *) path;
44 	syscallarg(int) mode;
45 };
46 
47 struct linux_sys_link_args {
48 	syscallarg(const char *) path;
49 	syscallarg(const char *) link;
50 };
51 
52 struct linux_sys_unlink_args {
53 	syscallarg(const char *) path;
54 };
55 
56 struct linux_sys_execve_args {
57 	syscallarg(const char *) path;
58 	syscallarg(char **) argp;
59 	syscallarg(char **) envp;
60 };
61 
62 struct linux_sys_chdir_args {
63 	syscallarg(const char *) path;
64 };
65 
66 struct linux_sys_time_args {
67 	syscallarg(linux_time_t *) t;
68 };
69 
70 struct linux_sys_mknod_args {
71 	syscallarg(const char *) path;
72 	syscallarg(int) mode;
73 	syscallarg(int) dev;
74 };
75 
76 struct linux_sys_chmod_args {
77 	syscallarg(const char *) path;
78 	syscallarg(int) mode;
79 };
80 
81 struct linux_sys_lchown_args {
82 	syscallarg(const char *) path;
83 	syscallarg(int) uid;
84 	syscallarg(int) gid;
85 };
86 
87 struct linux_sys_stime_args {
88 	syscallarg(linux_time_t *) t;
89 };
90 
91 struct linux_sys_ptrace_args {
92 	syscallarg(int) request;
93 	syscallarg(int) pid;
94 	syscallarg(int) addr;
95 	syscallarg(int) data;
96 };
97 
98 struct linux_sys_alarm_args {
99 	syscallarg(unsigned int) secs;
100 };
101 
102 struct linux_sys_utime_args {
103 	syscallarg(const char *) path;
104 	syscallarg(struct linux_utimbuf *) times;
105 };
106 
107 struct linux_sys_access_args {
108 	syscallarg(const char *) path;
109 	syscallarg(int) flags;
110 };
111 
112 struct linux_sys_nice_args {
113 	syscallarg(int) incr;
114 };
115 
116 struct linux_sys_kill_args {
117 	syscallarg(int) pid;
118 	syscallarg(int) signum;
119 };
120 
121 struct linux_sys_rename_args {
122 	syscallarg(const char *) from;
123 	syscallarg(const char *) to;
124 };
125 
126 struct linux_sys_mkdir_args {
127 	syscallarg(const char *) path;
128 	syscallarg(int) mode;
129 };
130 
131 struct linux_sys_rmdir_args {
132 	syscallarg(const char *) path;
133 };
134 
135 struct linux_sys_pipe_args {
136 	syscallarg(int *) pfds;
137 };
138 
139 struct linux_sys_times_args {
140 	syscallarg(struct times *) tms;
141 };
142 
143 struct linux_sys_brk_args {
144 	syscallarg(char *) nsize;
145 };
146 
147 struct linux_sys_signal_args {
148 	syscallarg(int) signum;
149 	syscallarg(linux_handler_t) handler;
150 };
151 
152 struct linux_sys_ioctl_args {
153 	syscallarg(int) fd;
154 	syscallarg(u_long) com;
155 	syscallarg(caddr_t) data;
156 };
157 
158 struct linux_sys_fcntl_args {
159 	syscallarg(int) fd;
160 	syscallarg(int) cmd;
161 	syscallarg(void *) arg;
162 };
163 
164 struct linux_sys_olduname_args {
165 	syscallarg(struct linux_old_utsname *) up;
166 };
167 
168 struct linux_sys_sigaction_args {
169 	syscallarg(int) signum;
170 	syscallarg(const struct linux_old_sigaction *) nsa;
171 	syscallarg(struct linux_old_sigaction *) osa;
172 };
173 
174 struct linux_sys_sigsetmask_args {
175 	syscallarg(linux_old_sigset_t) mask;
176 };
177 
178 struct linux_sys_sigsuspend_args {
179 	syscallarg(caddr_t) restart;
180 	syscallarg(int) oldmask;
181 	syscallarg(int) mask;
182 };
183 
184 struct linux_sys_sigpending_args {
185 	syscallarg(linux_old_sigset_t *) set;
186 };
187 
188 struct linux_sys_gettimeofday_args {
189 	syscallarg(struct timeval *) tp;
190 	syscallarg(struct timezone *) tzp;
191 };
192 
193 struct linux_sys_settimeofday_args {
194 	syscallarg(struct timeval *) tp;
195 	syscallarg(struct timezone *) tzp;
196 };
197 
198 struct linux_sys_select_args {
199 	syscallarg(int) nfds;
200 	syscallarg(fd_set *) readfds;
201 	syscallarg(fd_set *) writefds;
202 	syscallarg(fd_set *) exceptfds;
203 	syscallarg(struct timeval *) timeout;
204 };
205 
206 struct linux_sys_symlink_args {
207 	syscallarg(const char *) path;
208 	syscallarg(const char *) to;
209 };
210 
211 struct linux_sys_readlink_args {
212 	syscallarg(const char *) name;
213 	syscallarg(char *) buf;
214 	syscallarg(int) count;
215 };
216 
217 struct linux_sys_uselib_args {
218 	syscallarg(const char *) path;
219 };
220 
221 struct linux_sys_swapon_args {
222 	syscallarg(char *) name;
223 };
224 
225 struct linux_sys_reboot_args {
226 	syscallarg(int) magic1;
227 	syscallarg(int) magic2;
228 	syscallarg(int) cmd;
229 	syscallarg(void *) arg;
230 };
231 
232 struct linux_sys_readdir_args {
233 	syscallarg(int) fd;
234 	syscallarg(caddr_t) dent;
235 	syscallarg(unsigned int) count;
236 };
237 
238 struct linux_sys_truncate_args {
239 	syscallarg(const char *) path;
240 	syscallarg(long) length;
241 };
242 
243 struct linux_sys_statfs_args {
244 	syscallarg(const char *) path;
245 	syscallarg(struct linux_statfs *) sp;
246 };
247 
248 struct linux_sys_fstatfs_args {
249 	syscallarg(int) fd;
250 	syscallarg(struct linux_statfs *) sp;
251 };
252 
253 struct linux_sys_ioperm_args {
254 	syscallarg(unsigned int) lo;
255 	syscallarg(unsigned int) hi;
256 	syscallarg(int) val;
257 };
258 
259 struct linux_sys_socketcall_args {
260 	syscallarg(int) what;
261 	syscallarg(void *) args;
262 };
263 
264 struct linux_sys_stat_args {
265 	syscallarg(const char *) path;
266 	syscallarg(struct linux_stat *) sp;
267 };
268 
269 struct linux_sys_lstat_args {
270 	syscallarg(const char *) path;
271 	syscallarg(struct linux_stat *) sp;
272 };
273 
274 struct linux_sys_fstat_args {
275 	syscallarg(int) fd;
276 	syscallarg(struct linux_stat *) sp;
277 };
278 
279 struct linux_sys_uname_args {
280 	syscallarg(struct linux_utsname *) up;
281 };
282 
283 struct linux_sys_wait4_args {
284 	syscallarg(int) pid;
285 	syscallarg(int *) status;
286 	syscallarg(int) options;
287 	syscallarg(struct rusage *) rusage;
288 };
289 
290 struct linux_sys_swapoff_args {
291 	syscallarg(const char *) path;
292 };
293 
294 struct linux_sys_sysinfo_args {
295 	syscallarg(struct linux_sysinfo *) arg;
296 };
297 
298 struct linux_sys_ipc_args {
299 	syscallarg(int) what;
300 	syscallarg(int) a1;
301 	syscallarg(int) a2;
302 	syscallarg(int) a3;
303 	syscallarg(caddr_t) ptr;
304 };
305 
306 struct linux_sys_sigreturn_args {
307 	syscallarg(struct linux_sigcontext *) scp;
308 };
309 
310 struct linux_sys_clone_args {
311 	syscallarg(int) flags;
312 	syscallarg(void *) stack;
313 };
314 
315 struct linux_sys_setdomainname_args {
316 	syscallarg(char *) domainname;
317 	syscallarg(int) len;
318 };
319 
320 struct linux_sys_new_uname_args {
321 	syscallarg(struct linux_utsname *) up;
322 };
323 
324 struct linux_sys_sigprocmask_args {
325 	syscallarg(int) how;
326 	syscallarg(const linux_old_sigset_t *) set;
327 	syscallarg(linux_old_sigset_t *) oset;
328 };
329 
330 struct linux_sys_getpgid_args {
331 	syscallarg(int) pid;
332 };
333 
334 struct linux_sys_personality_args {
335 	syscallarg(int) per;
336 };
337 
338 struct linux_sys_setfsuid_args {
339 	syscallarg(uid_t) uid;
340 };
341 
342 struct linux_sys_llseek_args {
343 	syscallarg(int) fd;
344 	syscallarg(u_int32_t) ohigh;
345 	syscallarg(u_int32_t) olow;
346 	syscallarg(caddr_t) res;
347 	syscallarg(int) whence;
348 };
349 
350 struct linux_sys_getdents_args {
351 	syscallarg(int) fd;
352 	syscallarg(struct linux_dirent *) dent;
353 	syscallarg(unsigned int) count;
354 };
355 
356 struct linux_sys_new_select_args {
357 	syscallarg(int) nfds;
358 	syscallarg(fd_set *) readfds;
359 	syscallarg(fd_set *) writefds;
360 	syscallarg(fd_set *) exceptfds;
361 	syscallarg(struct timeval *) timeout;
362 };
363 
364 struct linux_sys_msync_args {
365 	syscallarg(caddr_t) addr;
366 	syscallarg(int) len;
367 	syscallarg(int) fl;
368 };
369 
370 struct linux_sys_fdatasync_args {
371 	syscallarg(int) fd;
372 };
373 
374 struct linux_sys___sysctl_args {
375 	syscallarg(struct linux___sysctl *) lsp;
376 };
377 
378 struct linux_sys_sched_setparam_args {
379 	syscallarg(pid_t) pid;
380 	syscallarg(const struct linux_sched_param *) sp;
381 };
382 
383 struct linux_sys_sched_getparam_args {
384 	syscallarg(pid_t) pid;
385 	syscallarg(struct linux_sched_param *) sp;
386 };
387 
388 struct linux_sys_sched_setscheduler_args {
389 	syscallarg(pid_t) pid;
390 	syscallarg(int) policy;
391 	syscallarg(const struct linux_sched_param *) sp;
392 };
393 
394 struct linux_sys_sched_getscheduler_args {
395 	syscallarg(pid_t) pid;
396 };
397 
398 struct linux_sys_sched_get_priority_max_args {
399 	syscallarg(int) policy;
400 };
401 
402 struct linux_sys_sched_get_priority_min_args {
403 	syscallarg(int) policy;
404 };
405 
406 struct linux_sys_mremap_args {
407 	syscallarg(void *) old_address;
408 	syscallarg(size_t) old_size;
409 	syscallarg(size_t) new_size;
410 	syscallarg(u_long) flags;
411 };
412 
413 struct linux_sys_setresuid_args {
414 	syscallarg(uid_t) ruid;
415 	syscallarg(uid_t) euid;
416 	syscallarg(uid_t) suid;
417 };
418 
419 struct linux_sys_getresuid_args {
420 	syscallarg(uid_t *) ruid;
421 	syscallarg(uid_t *) euid;
422 	syscallarg(uid_t *) suid;
423 };
424 
425 struct linux_sys_setresgid_args {
426 	syscallarg(gid_t) rgid;
427 	syscallarg(gid_t) egid;
428 	syscallarg(gid_t) sgid;
429 };
430 
431 struct linux_sys_getresgid_args {
432 	syscallarg(gid_t *) rgid;
433 	syscallarg(gid_t *) egid;
434 	syscallarg(gid_t *) sgid;
435 };
436 
437 struct linux_sys_rt_sigreturn_args {
438 	syscallarg(struct linux_rt_sigframe *) sfp;
439 };
440 
441 struct linux_sys_rt_sigaction_args {
442 	syscallarg(int) signum;
443 	syscallarg(const struct linux_sigaction *) nsa;
444 	syscallarg(struct linux_sigaction *) osa;
445 	syscallarg(size_t) sigsetsize;
446 };
447 
448 struct linux_sys_rt_sigprocmask_args {
449 	syscallarg(int) how;
450 	syscallarg(const linux_sigset_t *) set;
451 	syscallarg(linux_sigset_t *) oset;
452 	syscallarg(size_t) sigsetsize;
453 };
454 
455 struct linux_sys_rt_sigpending_args {
456 	syscallarg(linux_sigset_t *) set;
457 	syscallarg(size_t) sigsetsize;
458 };
459 
460 struct linux_sys_rt_queueinfo_args {
461 	syscallarg(int) pid;
462 	syscallarg(int) signum;
463 	syscallarg(void *) uinfo;
464 };
465 
466 struct linux_sys_rt_sigsuspend_args {
467 	syscallarg(linux_sigset_t *) unewset;
468 	syscallarg(size_t) sigsetsize;
469 };
470 
471 struct linux_sys_pread_args {
472 	syscallarg(int) fd;
473 	syscallarg(char *) buf;
474 	syscallarg(size_t) nbyte;
475 	syscallarg(linux_off_t) offset;
476 };
477 
478 struct linux_sys_pwrite_args {
479 	syscallarg(int) fd;
480 	syscallarg(char *) buf;
481 	syscallarg(size_t) nbyte;
482 	syscallarg(linux_off_t) offset;
483 };
484 
485 struct linux_sys_chown_args {
486 	syscallarg(const char *) path;
487 	syscallarg(int) uid;
488 	syscallarg(int) gid;
489 };
490 
491 struct linux_sys_sigaltstack_args {
492 	syscallarg(const struct linux_sigaltstack *) ss;
493 	syscallarg(struct linux_sigaltstack *) oss;
494 };
495 
496 /*
497  * System call prototypes.
498  */
499 
500 int	linux_sys_nosys(struct proc *, void *, register_t *);
501 int	sys_exit(struct proc *, void *, register_t *);
502 int	sys_fork(struct proc *, void *, register_t *);
503 int	sys_read(struct proc *, void *, register_t *);
504 int	sys_write(struct proc *, void *, register_t *);
505 int	linux_sys_open(struct proc *, void *, register_t *);
506 int	sys_close(struct proc *, void *, register_t *);
507 int	linux_sys_waitpid(struct proc *, void *, register_t *);
508 int	linux_sys_creat(struct proc *, void *, register_t *);
509 int	linux_sys_link(struct proc *, void *, register_t *);
510 int	linux_sys_unlink(struct proc *, void *, register_t *);
511 int	linux_sys_execve(struct proc *, void *, register_t *);
512 int	linux_sys_chdir(struct proc *, void *, register_t *);
513 int	linux_sys_time(struct proc *, void *, register_t *);
514 int	linux_sys_mknod(struct proc *, void *, register_t *);
515 int	linux_sys_chmod(struct proc *, void *, register_t *);
516 int	linux_sys_lchown(struct proc *, void *, register_t *);
517 int	compat_43_sys_lseek(struct proc *, void *, register_t *);
518 int	sys_getpid(struct proc *, void *, register_t *);
519 int	sys_setuid(struct proc *, void *, register_t *);
520 int	sys_getuid(struct proc *, void *, register_t *);
521 int	linux_sys_stime(struct proc *, void *, register_t *);
522 int	linux_sys_ptrace(struct proc *, void *, register_t *);
523 int	linux_sys_alarm(struct proc *, void *, register_t *);
524 int	linux_sys_pause(struct proc *, void *, register_t *);
525 int	linux_sys_utime(struct proc *, void *, register_t *);
526 int	linux_sys_access(struct proc *, void *, register_t *);
527 int	linux_sys_nice(struct proc *, void *, register_t *);
528 int	sys_sync(struct proc *, void *, register_t *);
529 int	linux_sys_kill(struct proc *, void *, register_t *);
530 int	linux_sys_rename(struct proc *, void *, register_t *);
531 int	linux_sys_mkdir(struct proc *, void *, register_t *);
532 int	linux_sys_rmdir(struct proc *, void *, register_t *);
533 int	sys_dup(struct proc *, void *, register_t *);
534 int	linux_sys_pipe(struct proc *, void *, register_t *);
535 int	linux_sys_times(struct proc *, void *, register_t *);
536 int	linux_sys_brk(struct proc *, void *, register_t *);
537 int	sys_setgid(struct proc *, void *, register_t *);
538 int	sys_getgid(struct proc *, void *, register_t *);
539 int	linux_sys_signal(struct proc *, void *, register_t *);
540 int	sys_geteuid(struct proc *, void *, register_t *);
541 int	sys_getegid(struct proc *, void *, register_t *);
542 int	sys_acct(struct proc *, void *, register_t *);
543 int	linux_sys_ioctl(struct proc *, void *, register_t *);
544 int	linux_sys_fcntl(struct proc *, void *, register_t *);
545 int	sys_setpgid(struct proc *, void *, register_t *);
546 int	linux_sys_olduname(struct proc *, void *, register_t *);
547 int	sys_umask(struct proc *, void *, register_t *);
548 int	sys_chroot(struct proc *, void *, register_t *);
549 int	sys_dup2(struct proc *, void *, register_t *);
550 int	sys_getppid(struct proc *, void *, register_t *);
551 int	sys_getpgrp(struct proc *, void *, register_t *);
552 int	sys_setsid(struct proc *, void *, register_t *);
553 int	linux_sys_sigaction(struct proc *, void *, register_t *);
554 int	linux_sys_siggetmask(struct proc *, void *, register_t *);
555 int	linux_sys_sigsetmask(struct proc *, void *, register_t *);
556 int	sys_setreuid(struct proc *, void *, register_t *);
557 int	sys_setregid(struct proc *, void *, register_t *);
558 int	linux_sys_sigsuspend(struct proc *, void *, register_t *);
559 int	linux_sys_sigpending(struct proc *, void *, register_t *);
560 int	compat_43_sys_sethostname(struct proc *, void *, register_t *);
561 int	compat_43_sys_setrlimit(struct proc *, void *, register_t *);
562 int	compat_43_sys_getrlimit(struct proc *, void *, register_t *);
563 int	sys_getrusage(struct proc *, void *, register_t *);
564 int	linux_sys_gettimeofday(struct proc *, void *, register_t *);
565 int	linux_sys_settimeofday(struct proc *, void *, register_t *);
566 int	sys_getgroups(struct proc *, void *, register_t *);
567 int	sys_setgroups(struct proc *, void *, register_t *);
568 int	linux_sys_select(struct proc *, void *, register_t *);
569 int	linux_sys_symlink(struct proc *, void *, register_t *);
570 int	compat_43_sys_lstat(struct proc *, void *, register_t *);
571 int	linux_sys_readlink(struct proc *, void *, register_t *);
572 int	linux_sys_uselib(struct proc *, void *, register_t *);
573 int	linux_sys_swapon(struct proc *, void *, register_t *);
574 int	linux_sys_reboot(struct proc *, void *, register_t *);
575 int	linux_sys_readdir(struct proc *, void *, register_t *);
576 int	linux_sys_mmap(struct proc *, void *, register_t *);
577 int	sys_munmap(struct proc *, void *, register_t *);
578 int	linux_sys_truncate(struct proc *, void *, register_t *);
579 int	compat_43_sys_ftruncate(struct proc *, void *, register_t *);
580 int	sys_fchmod(struct proc *, void *, register_t *);
581 int	sys___posix_fchown(struct proc *, void *, register_t *);
582 int	sys_getpriority(struct proc *, void *, register_t *);
583 int	sys_setpriority(struct proc *, void *, register_t *);
584 int	sys_profil(struct proc *, void *, register_t *);
585 int	linux_sys_statfs(struct proc *, void *, register_t *);
586 int	linux_sys_fstatfs(struct proc *, void *, register_t *);
587 int	linux_sys_ioperm(struct proc *, void *, register_t *);
588 int	linux_sys_socketcall(struct proc *, void *, register_t *);
589 int	sys_setitimer(struct proc *, void *, register_t *);
590 int	sys_getitimer(struct proc *, void *, register_t *);
591 int	linux_sys_stat(struct proc *, void *, register_t *);
592 int	linux_sys_lstat(struct proc *, void *, register_t *);
593 int	linux_sys_fstat(struct proc *, void *, register_t *);
594 int	linux_sys_uname(struct proc *, void *, register_t *);
595 int	linux_sys_wait4(struct proc *, void *, register_t *);
596 int	linux_sys_swapoff(struct proc *, void *, register_t *);
597 int	linux_sys_sysinfo(struct proc *, void *, register_t *);
598 int	linux_sys_ipc(struct proc *, void *, register_t *);
599 int	sys_fsync(struct proc *, void *, register_t *);
600 int	linux_sys_sigreturn(struct proc *, void *, register_t *);
601 int	linux_sys_clone(struct proc *, void *, register_t *);
602 int	linux_sys_setdomainname(struct proc *, void *, register_t *);
603 int	linux_sys_new_uname(struct proc *, void *, register_t *);
604 int	sys_mprotect(struct proc *, void *, register_t *);
605 int	linux_sys_sigprocmask(struct proc *, void *, register_t *);
606 int	linux_sys_getpgid(struct proc *, void *, register_t *);
607 int	sys_fchdir(struct proc *, void *, register_t *);
608 int	linux_sys_personality(struct proc *, void *, register_t *);
609 int	linux_sys_setfsuid(struct proc *, void *, register_t *);
610 int	linux_sys_getfsuid(struct proc *, void *, register_t *);
611 int	linux_sys_llseek(struct proc *, void *, register_t *);
612 int	linux_sys_getdents(struct proc *, void *, register_t *);
613 int	linux_sys_new_select(struct proc *, void *, register_t *);
614 int	sys_flock(struct proc *, void *, register_t *);
615 int	linux_sys_msync(struct proc *, void *, register_t *);
616 int	sys_readv(struct proc *, void *, register_t *);
617 int	sys_writev(struct proc *, void *, register_t *);
618 int	sys_getsid(struct proc *, void *, register_t *);
619 int	linux_sys_fdatasync(struct proc *, void *, register_t *);
620 int	linux_sys___sysctl(struct proc *, void *, register_t *);
621 int	sys_mlock(struct proc *, void *, register_t *);
622 int	sys_munlock(struct proc *, void *, register_t *);
623 int	sys_mlockall(struct proc *, void *, register_t *);
624 int	sys_munlockall(struct proc *, void *, register_t *);
625 int	linux_sys_sched_setparam(struct proc *, void *, register_t *);
626 int	linux_sys_sched_getparam(struct proc *, void *, register_t *);
627 int	linux_sys_sched_setscheduler(struct proc *, void *, register_t *);
628 int	linux_sys_sched_getscheduler(struct proc *, void *, register_t *);
629 int	linux_sys_sched_yield(struct proc *, void *, register_t *);
630 int	linux_sys_sched_get_priority_max(struct proc *, void *, register_t *);
631 int	linux_sys_sched_get_priority_min(struct proc *, void *, register_t *);
632 int	sys_nanosleep(struct proc *, void *, register_t *);
633 int	linux_sys_mremap(struct proc *, void *, register_t *);
634 int	linux_sys_setresuid(struct proc *, void *, register_t *);
635 int	linux_sys_getresuid(struct proc *, void *, register_t *);
636 int	sys_poll(struct proc *, void *, register_t *);
637 int	linux_sys_setresgid(struct proc *, void *, register_t *);
638 int	linux_sys_getresgid(struct proc *, void *, register_t *);
639 int	linux_sys_rt_sigreturn(struct proc *, void *, register_t *);
640 int	linux_sys_rt_sigaction(struct proc *, void *, register_t *);
641 int	linux_sys_rt_sigprocmask(struct proc *, void *, register_t *);
642 int	linux_sys_rt_sigpending(struct proc *, void *, register_t *);
643 int	linux_sys_rt_queueinfo(struct proc *, void *, register_t *);
644 int	linux_sys_rt_sigsuspend(struct proc *, void *, register_t *);
645 int	linux_sys_pread(struct proc *, void *, register_t *);
646 int	linux_sys_pwrite(struct proc *, void *, register_t *);
647 int	linux_sys_chown(struct proc *, void *, register_t *);
648 int	sys___getcwd(struct proc *, void *, register_t *);
649 int	linux_sys_sigaltstack(struct proc *, void *, register_t *);
650 int	sys___vfork14(struct proc *, void *, register_t *);
651 #endif /* _LINUX_SYS__SYSCALLARGS_H_ */
652