[BACK]Return to linux_syscallargs.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / compat / linux / arch / m68k

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/compat/linux/arch/m68k/linux_syscallargs.h between version 1.46 and 1.46.2.1

version 1.46, 2003/06/29 16:08:36 version 1.46.2.1, 2004/08/03 10:44:02
Line 4 
Line 4 
  * System call argument lists.   * System call argument lists.
  *   *
  * DO NOT EDIT-- this file is automatically generated.   * DO NOT EDIT-- this file is automatically generated.
  * created from NetBSD: syscalls.master,v 1.42 2003/06/29 16:07:58 thorpej Exp   * created from NetBSD: syscalls.master,v 1.44 2004/08/01 15:34:22 jdolecek Exp
  */   */
   
 #ifndef _LINUX_SYS__SYSCALLARGS_H_  #ifndef _LINUX_SYS__SYSCALLARGS_H_
Line 83  struct linux_sys_chown16_args {
Line 83  struct linux_sys_chown16_args {
         syscallarg(int) uid;          syscallarg(int) uid;
         syscallarg(int) gid;          syscallarg(int) gid;
 };  };
   #if !defined(_KERNEL) || defined(COMPAT_43)
   #else
   #endif
   
 struct linux_sys_stime_args {  struct linux_sys_stime_args {
         syscallarg(linux_time_t *) t;          syscallarg(linux_time_t *) t;
Line 190  struct linux_sys_sigsuspend_args {
Line 193  struct linux_sys_sigsuspend_args {
 struct linux_sys_sigpending_args {  struct linux_sys_sigpending_args {
         syscallarg(linux_old_sigset_t *) set;          syscallarg(linux_old_sigset_t *) set;
 };  };
   #if !defined(_KERNEL) || defined(COMPAT_43)
   #else
   #endif
   
 struct linux_sys_setrlimit_args {  struct linux_sys_setrlimit_args {
         syscallarg(u_int) which;          syscallarg(u_int) which;
Line 229  struct linux_sys_symlink_args {
Line 235  struct linux_sys_symlink_args {
         syscallarg(const char *) path;          syscallarg(const char *) path;
         syscallarg(const char *) to;          syscallarg(const char *) to;
 };  };
   #if !defined(_KERNEL) || defined(COMPAT_43)
   #else
   #endif
   
 struct linux_sys_readlink_args {  struct linux_sys_readlink_args {
         syscallarg(const char *) name;          syscallarg(const char *) name;
Line 265  struct linux_sys_truncate_args {
Line 274  struct linux_sys_truncate_args {
         syscallarg(const char *) path;          syscallarg(const char *) path;
         syscallarg(long) length;          syscallarg(long) length;
 };  };
   #if !defined(_KERNEL) || defined(COMPAT_43)
   #else
   #endif
   
 struct linux_sys_fchown16_args {  struct linux_sys_fchown16_args {
         syscallarg(int) fd;          syscallarg(int) fd;
Line 514  struct linux_sys_truncate64_args {
Line 526  struct linux_sys_truncate64_args {
         syscallarg(off_t) length;          syscallarg(off_t) length;
 };  };
   
   struct linux_sys_ftruncate64_args {
           syscallarg(unsigned int) fd;
           syscallarg(off_t) length;
   };
   
 struct linux_sys_stat64_args {  struct linux_sys_stat64_args {
         syscallarg(const char *) path;          syscallarg(const char *) path;
         syscallarg(struct linux_stat64 *) sp;          syscallarg(struct linux_stat64 *) sp;
Line 580  struct linux_sys_getdents64_args {
Line 597  struct linux_sys_getdents64_args {
  */   */
   
 int     linux_sys_nosys(struct lwp *, void *, register_t *);  int     linux_sys_nosys(struct lwp *, void *, register_t *);
   
 int     sys_exit(struct lwp *, void *, register_t *);  int     sys_exit(struct lwp *, void *, register_t *);
   
 int     sys_fork(struct lwp *, void *, register_t *);  int     sys_fork(struct lwp *, void *, register_t *);
   
 int     sys_read(struct lwp *, void *, register_t *);  int     sys_read(struct lwp *, void *, register_t *);
   
 int     sys_write(struct lwp *, void *, register_t *);  int     sys_write(struct lwp *, void *, register_t *);
   
 int     linux_sys_open(struct lwp *, void *, register_t *);  int     linux_sys_open(struct lwp *, void *, register_t *);
   
 int     sys_close(struct lwp *, void *, register_t *);  int     sys_close(struct lwp *, void *, register_t *);
   
 int     linux_sys_waitpid(struct lwp *, void *, register_t *);  int     linux_sys_waitpid(struct lwp *, void *, register_t *);
   
 int     linux_sys_creat(struct lwp *, void *, register_t *);  int     linux_sys_creat(struct lwp *, void *, register_t *);
   
 int     linux_sys_link(struct lwp *, void *, register_t *);  int     linux_sys_link(struct lwp *, void *, register_t *);
   
 int     linux_sys_unlink(struct lwp *, void *, register_t *);  int     linux_sys_unlink(struct lwp *, void *, register_t *);
   
 int     linux_sys_execve(struct lwp *, void *, register_t *);  int     linux_sys_execve(struct lwp *, void *, register_t *);
   
 int     linux_sys_chdir(struct lwp *, void *, register_t *);  int     linux_sys_chdir(struct lwp *, void *, register_t *);
   
 int     linux_sys_time(struct lwp *, void *, register_t *);  int     linux_sys_time(struct lwp *, void *, register_t *);
   
 int     linux_sys_mknod(struct lwp *, void *, register_t *);  int     linux_sys_mknod(struct lwp *, void *, register_t *);
   
 int     linux_sys_chmod(struct lwp *, void *, register_t *);  int     linux_sys_chmod(struct lwp *, void *, register_t *);
   
 int     linux_sys_chown16(struct lwp *, void *, register_t *);  int     linux_sys_chown16(struct lwp *, void *, register_t *);
   
 #if !defined(_KERNEL) || defined(COMPAT_43)  #if !defined(_KERNEL) || defined(COMPAT_43)
 int     compat_43_sys_lseek(struct lwp *, void *, register_t *);  int     compat_43_sys_lseek(struct lwp *, void *, register_t *);
   
 #else  #else
 #endif  #endif
 int     sys_getpid(struct lwp *, void *, register_t *);  int     sys_getpid(struct lwp *, void *, register_t *);
   
 int     sys_setuid(struct lwp *, void *, register_t *);  int     sys_setuid(struct lwp *, void *, register_t *);
   
 int     sys_getuid(struct lwp *, void *, register_t *);  int     sys_getuid(struct lwp *, void *, register_t *);
   
 int     linux_sys_stime(struct lwp *, void *, register_t *);  int     linux_sys_stime(struct lwp *, void *, register_t *);
   
 int     linux_sys_ptrace(struct lwp *, void *, register_t *);  int     linux_sys_ptrace(struct lwp *, void *, register_t *);
   
 int     linux_sys_alarm(struct lwp *, void *, register_t *);  int     linux_sys_alarm(struct lwp *, void *, register_t *);
   
 int     linux_sys_pause(struct lwp *, void *, register_t *);  int     linux_sys_pause(struct lwp *, void *, register_t *);
   
 int     linux_sys_utime(struct lwp *, void *, register_t *);  int     linux_sys_utime(struct lwp *, void *, register_t *);
   
 int     linux_sys_access(struct lwp *, void *, register_t *);  int     linux_sys_access(struct lwp *, void *, register_t *);
   
 int     linux_sys_nice(struct lwp *, void *, register_t *);  int     linux_sys_nice(struct lwp *, void *, register_t *);
   
 int     sys_sync(struct lwp *, void *, register_t *);  int     sys_sync(struct lwp *, void *, register_t *);
   
 int     linux_sys_kill(struct lwp *, void *, register_t *);  int     linux_sys_kill(struct lwp *, void *, register_t *);
   
 int     linux_sys_rename(struct lwp *, void *, register_t *);  int     linux_sys_rename(struct lwp *, void *, register_t *);
   
 int     linux_sys_mkdir(struct lwp *, void *, register_t *);  int     linux_sys_mkdir(struct lwp *, void *, register_t *);
   
 int     linux_sys_rmdir(struct lwp *, void *, register_t *);  int     linux_sys_rmdir(struct lwp *, void *, register_t *);
   
 int     sys_dup(struct lwp *, void *, register_t *);  int     sys_dup(struct lwp *, void *, register_t *);
   
 int     linux_sys_pipe(struct lwp *, void *, register_t *);  int     linux_sys_pipe(struct lwp *, void *, register_t *);
   
 int     linux_sys_times(struct lwp *, void *, register_t *);  int     linux_sys_times(struct lwp *, void *, register_t *);
   
 int     linux_sys_brk(struct lwp *, void *, register_t *);  int     linux_sys_brk(struct lwp *, void *, register_t *);
   
 int     sys_setgid(struct lwp *, void *, register_t *);  int     sys_setgid(struct lwp *, void *, register_t *);
   
 int     sys_getgid(struct lwp *, void *, register_t *);  int     sys_getgid(struct lwp *, void *, register_t *);
   
 int     linux_sys_signal(struct lwp *, void *, register_t *);  int     linux_sys_signal(struct lwp *, void *, register_t *);
   
 int     sys_geteuid(struct lwp *, void *, register_t *);  int     sys_geteuid(struct lwp *, void *, register_t *);
   
 int     sys_getegid(struct lwp *, void *, register_t *);  int     sys_getegid(struct lwp *, void *, register_t *);
   
 int     sys_acct(struct lwp *, void *, register_t *);  int     sys_acct(struct lwp *, void *, register_t *);
   
 int     linux_sys_ioctl(struct lwp *, void *, register_t *);  int     linux_sys_ioctl(struct lwp *, void *, register_t *);
   
 int     linux_sys_fcntl(struct lwp *, void *, register_t *);  int     linux_sys_fcntl(struct lwp *, void *, register_t *);
   
 int     sys_setpgid(struct lwp *, void *, register_t *);  int     sys_setpgid(struct lwp *, void *, register_t *);
   
 int     sys_umask(struct lwp *, void *, register_t *);  int     sys_umask(struct lwp *, void *, register_t *);
   
 int     sys_chroot(struct lwp *, void *, register_t *);  int     sys_chroot(struct lwp *, void *, register_t *);
   
 int     sys_dup2(struct lwp *, void *, register_t *);  int     sys_dup2(struct lwp *, void *, register_t *);
   
 int     sys_getppid(struct lwp *, void *, register_t *);  int     sys_getppid(struct lwp *, void *, register_t *);
   
 int     sys_getpgrp(struct lwp *, void *, register_t *);  int     sys_getpgrp(struct lwp *, void *, register_t *);
   
 int     sys_setsid(struct lwp *, void *, register_t *);  int     sys_setsid(struct lwp *, void *, register_t *);
   
 int     linux_sys_sigaction(struct lwp *, void *, register_t *);  int     linux_sys_sigaction(struct lwp *, void *, register_t *);
   
 int     linux_sys_siggetmask(struct lwp *, void *, register_t *);  int     linux_sys_siggetmask(struct lwp *, void *, register_t *);
   
 int     linux_sys_sigsetmask(struct lwp *, void *, register_t *);  int     linux_sys_sigsetmask(struct lwp *, void *, register_t *);
   
 int     linux_sys_setreuid16(struct lwp *, void *, register_t *);  int     linux_sys_setreuid16(struct lwp *, void *, register_t *);
   
 int     linux_sys_setregid16(struct lwp *, void *, register_t *);  int     linux_sys_setregid16(struct lwp *, void *, register_t *);
   
 int     linux_sys_sigsuspend(struct lwp *, void *, register_t *);  int     linux_sys_sigsuspend(struct lwp *, void *, register_t *);
   
 int     linux_sys_sigpending(struct lwp *, void *, register_t *);  int     linux_sys_sigpending(struct lwp *, void *, register_t *);
   
 #if !defined(_KERNEL) || defined(COMPAT_43)  #if !defined(_KERNEL) || defined(COMPAT_43)
 int     compat_43_sys_sethostname(struct lwp *, void *, register_t *);  int     compat_43_sys_sethostname(struct lwp *, void *, register_t *);
   
 #else  #else
 #endif  #endif
 int     linux_sys_setrlimit(struct lwp *, void *, register_t *);  int     linux_sys_setrlimit(struct lwp *, void *, register_t *);
   
 int     linux_sys_getrlimit(struct lwp *, void *, register_t *);  int     linux_sys_getrlimit(struct lwp *, void *, register_t *);
   
 int     sys_getrusage(struct lwp *, void *, register_t *);  int     sys_getrusage(struct lwp *, void *, register_t *);
   
 int     linux_sys_gettimeofday(struct lwp *, void *, register_t *);  int     linux_sys_gettimeofday(struct lwp *, void *, register_t *);
   
 int     linux_sys_settimeofday(struct lwp *, void *, register_t *);  int     linux_sys_settimeofday(struct lwp *, void *, register_t *);
   
 int     linux_sys_getgroups16(struct lwp *, void *, register_t *);  int     linux_sys_getgroups16(struct lwp *, void *, register_t *);
   
 int     linux_sys_setgroups16(struct lwp *, void *, register_t *);  int     linux_sys_setgroups16(struct lwp *, void *, register_t *);
   
 int     linux_sys_oldselect(struct lwp *, void *, register_t *);  int     linux_sys_oldselect(struct lwp *, void *, register_t *);
   
 int     linux_sys_symlink(struct lwp *, void *, register_t *);  int     linux_sys_symlink(struct lwp *, void *, register_t *);
   
 #if !defined(_KERNEL) || defined(COMPAT_43)  #if !defined(_KERNEL) || defined(COMPAT_43)
 int     compat_43_sys_lstat(struct lwp *, void *, register_t *);  int     compat_43_sys_lstat(struct lwp *, void *, register_t *);
   
 #else  #else
 #endif  #endif
 int     linux_sys_readlink(struct lwp *, void *, register_t *);  int     linux_sys_readlink(struct lwp *, void *, register_t *);
   
 int     linux_sys_uselib(struct lwp *, void *, register_t *);  int     linux_sys_uselib(struct lwp *, void *, register_t *);
   
 int     linux_sys_swapon(struct lwp *, void *, register_t *);  int     linux_sys_swapon(struct lwp *, void *, register_t *);
   
 int     linux_sys_reboot(struct lwp *, void *, register_t *);  int     linux_sys_reboot(struct lwp *, void *, register_t *);
   
 int     linux_sys_readdir(struct lwp *, void *, register_t *);  int     linux_sys_readdir(struct lwp *, void *, register_t *);
   
 int     linux_sys_old_mmap(struct lwp *, void *, register_t *);  int     linux_sys_old_mmap(struct lwp *, void *, register_t *);
   
 int     sys_munmap(struct lwp *, void *, register_t *);  int     sys_munmap(struct lwp *, void *, register_t *);
   
 int     linux_sys_truncate(struct lwp *, void *, register_t *);  int     linux_sys_truncate(struct lwp *, void *, register_t *);
   
 #if !defined(_KERNEL) || defined(COMPAT_43)  #if !defined(_KERNEL) || defined(COMPAT_43)
 int     compat_43_sys_ftruncate(struct lwp *, void *, register_t *);  int     compat_43_sys_ftruncate(struct lwp *, void *, register_t *);
   
 #else  #else
 #endif  #endif
 int     sys_fchmod(struct lwp *, void *, register_t *);  int     sys_fchmod(struct lwp *, void *, register_t *);
   
 int     linux_sys_fchown16(struct lwp *, void *, register_t *);  int     linux_sys_fchown16(struct lwp *, void *, register_t *);
   
 int     sys_getpriority(struct lwp *, void *, register_t *);  int     sys_getpriority(struct lwp *, void *, register_t *);
   
 int     sys_setpriority(struct lwp *, void *, register_t *);  int     sys_setpriority(struct lwp *, void *, register_t *);
   
 int     sys_profil(struct lwp *, void *, register_t *);  int     sys_profil(struct lwp *, void *, register_t *);
   
 int     linux_sys_statfs(struct lwp *, void *, register_t *);  int     linux_sys_statfs(struct lwp *, void *, register_t *);
   
 int     linux_sys_fstatfs(struct lwp *, void *, register_t *);  int     linux_sys_fstatfs(struct lwp *, void *, register_t *);
   
 int     linux_sys_socketcall(struct lwp *, void *, register_t *);  int     linux_sys_socketcall(struct lwp *, void *, register_t *);
   
 int     sys_setitimer(struct lwp *, void *, register_t *);  int     sys_setitimer(struct lwp *, void *, register_t *);
   
 int     sys_getitimer(struct lwp *, void *, register_t *);  int     sys_getitimer(struct lwp *, void *, register_t *);
   
 int     linux_sys_stat(struct lwp *, void *, register_t *);  int     linux_sys_stat(struct lwp *, void *, register_t *);
   
 int     linux_sys_lstat(struct lwp *, void *, register_t *);  int     linux_sys_lstat(struct lwp *, void *, register_t *);
   
 int     linux_sys_fstat(struct lwp *, void *, register_t *);  int     linux_sys_fstat(struct lwp *, void *, register_t *);
   
 int     linux_sys_wait4(struct lwp *, void *, register_t *);  int     linux_sys_wait4(struct lwp *, void *, register_t *);
   
 int     linux_sys_swapoff(struct lwp *, void *, register_t *);  int     linux_sys_swapoff(struct lwp *, void *, register_t *);
   
 int     linux_sys_sysinfo(struct lwp *, void *, register_t *);  int     linux_sys_sysinfo(struct lwp *, void *, register_t *);
   
 int     linux_sys_ipc(struct lwp *, void *, register_t *);  int     linux_sys_ipc(struct lwp *, void *, register_t *);
   
 int     sys_fsync(struct lwp *, void *, register_t *);  int     sys_fsync(struct lwp *, void *, register_t *);
   
 int     linux_sys_sigreturn(struct lwp *, void *, register_t *);  int     linux_sys_sigreturn(struct lwp *, void *, register_t *);
   
 int     linux_sys_clone(struct lwp *, void *, register_t *);  int     linux_sys_clone(struct lwp *, void *, register_t *);
   
 int     linux_sys_setdomainname(struct lwp *, void *, register_t *);  int     linux_sys_setdomainname(struct lwp *, void *, register_t *);
   
 int     linux_sys_uname(struct lwp *, void *, register_t *);  int     linux_sys_uname(struct lwp *, void *, register_t *);
   
 int     linux_sys_cacheflush(struct lwp *, void *, register_t *);  int     linux_sys_cacheflush(struct lwp *, void *, register_t *);
   
 int     linux_sys_mprotect(struct lwp *, void *, register_t *);  int     linux_sys_mprotect(struct lwp *, void *, register_t *);
   
 int     linux_sys_sigprocmask(struct lwp *, void *, register_t *);  int     linux_sys_sigprocmask(struct lwp *, void *, register_t *);
   
 int     linux_sys_getpgid(struct lwp *, void *, register_t *);  int     linux_sys_getpgid(struct lwp *, void *, register_t *);
   
 int     sys_fchdir(struct lwp *, void *, register_t *);  int     sys_fchdir(struct lwp *, void *, register_t *);
   
 int     linux_sys_personality(struct lwp *, void *, register_t *);  int     linux_sys_personality(struct lwp *, void *, register_t *);
   
 int     linux_sys_setfsuid(struct lwp *, void *, register_t *);  int     linux_sys_setfsuid(struct lwp *, void *, register_t *);
   
 int     linux_sys_getfsuid(struct lwp *, void *, register_t *);  int     linux_sys_getfsuid(struct lwp *, void *, register_t *);
   
 int     linux_sys_llseek(struct lwp *, void *, register_t *);  int     linux_sys_llseek(struct lwp *, void *, register_t *);
   
 int     linux_sys_getdents(struct lwp *, void *, register_t *);  int     linux_sys_getdents(struct lwp *, void *, register_t *);
   
 int     linux_sys_select(struct lwp *, void *, register_t *);  int     linux_sys_select(struct lwp *, void *, register_t *);
   
 int     sys_flock(struct lwp *, void *, register_t *);  int     sys_flock(struct lwp *, void *, register_t *);
   
 int     linux_sys_msync(struct lwp *, void *, register_t *);  int     linux_sys_msync(struct lwp *, void *, register_t *);
   
 int     sys_readv(struct lwp *, void *, register_t *);  int     sys_readv(struct lwp *, void *, register_t *);
   
 int     sys_writev(struct lwp *, void *, register_t *);  int     sys_writev(struct lwp *, void *, register_t *);
   
 int     sys_getsid(struct lwp *, void *, register_t *);  int     sys_getsid(struct lwp *, void *, register_t *);
   
 int     linux_sys_fdatasync(struct lwp *, void *, register_t *);  int     linux_sys_fdatasync(struct lwp *, void *, register_t *);
   
 int     linux_sys___sysctl(struct lwp *, void *, register_t *);  int     linux_sys___sysctl(struct lwp *, void *, register_t *);
   
 int     sys_mlock(struct lwp *, void *, register_t *);  int     sys_mlock(struct lwp *, void *, register_t *);
   
 int     sys_munlock(struct lwp *, void *, register_t *);  int     sys_munlock(struct lwp *, void *, register_t *);
   
 int     sys_mlockall(struct lwp *, void *, register_t *);  int     sys_mlockall(struct lwp *, void *, register_t *);
   
 int     sys_munlockall(struct lwp *, void *, register_t *);  int     sys_munlockall(struct lwp *, void *, register_t *);
   
 int     linux_sys_sched_setparam(struct lwp *, void *, register_t *);  int     linux_sys_sched_setparam(struct lwp *, void *, register_t *);
   
 int     linux_sys_sched_getparam(struct lwp *, void *, register_t *);  int     linux_sys_sched_getparam(struct lwp *, void *, register_t *);
   
 int     linux_sys_sched_setscheduler(struct lwp *, void *, register_t *);  int     linux_sys_sched_setscheduler(struct lwp *, void *, register_t *);
   
 int     linux_sys_sched_getscheduler(struct lwp *, void *, register_t *);  int     linux_sys_sched_getscheduler(struct lwp *, void *, register_t *);
   
 int     linux_sys_sched_yield(struct lwp *, void *, register_t *);  int     linux_sys_sched_yield(struct lwp *, void *, register_t *);
   
 int     linux_sys_sched_get_priority_max(struct lwp *, void *, register_t *);  int     linux_sys_sched_get_priority_max(struct lwp *, void *, register_t *);
   
 int     linux_sys_sched_get_priority_min(struct lwp *, void *, register_t *);  int     linux_sys_sched_get_priority_min(struct lwp *, void *, register_t *);
   
 int     sys_nanosleep(struct lwp *, void *, register_t *);  int     sys_nanosleep(struct lwp *, void *, register_t *);
   
 int     linux_sys_mremap(struct lwp *, void *, register_t *);  int     linux_sys_mremap(struct lwp *, void *, register_t *);
   
 int     linux_sys_setresuid16(struct lwp *, void *, register_t *);  int     linux_sys_setresuid16(struct lwp *, void *, register_t *);
   
 int     linux_sys_getresuid(struct lwp *, void *, register_t *);  int     linux_sys_getresuid(struct lwp *, void *, register_t *);
   
 int     sys_poll(struct lwp *, void *, register_t *);  int     sys_poll(struct lwp *, void *, register_t *);
   
 int     linux_sys_setresgid16(struct lwp *, void *, register_t *);  int     linux_sys_setresgid16(struct lwp *, void *, register_t *);
   
 int     linux_sys_getresgid(struct lwp *, void *, register_t *);  int     linux_sys_getresgid(struct lwp *, void *, register_t *);
   
 int     linux_sys_rt_sigreturn(struct lwp *, void *, register_t *);  int     linux_sys_rt_sigreturn(struct lwp *, void *, register_t *);
   
 int     linux_sys_rt_sigaction(struct lwp *, void *, register_t *);  int     linux_sys_rt_sigaction(struct lwp *, void *, register_t *);
   
 int     linux_sys_rt_sigprocmask(struct lwp *, void *, register_t *);  int     linux_sys_rt_sigprocmask(struct lwp *, void *, register_t *);
   
 int     linux_sys_rt_sigpending(struct lwp *, void *, register_t *);  int     linux_sys_rt_sigpending(struct lwp *, void *, register_t *);
   
 int     linux_sys_rt_queueinfo(struct lwp *, void *, register_t *);  int     linux_sys_rt_queueinfo(struct lwp *, void *, register_t *);
   
 int     linux_sys_rt_sigsuspend(struct lwp *, void *, register_t *);  int     linux_sys_rt_sigsuspend(struct lwp *, void *, register_t *);
   
 int     linux_sys_pread(struct lwp *, void *, register_t *);  int     linux_sys_pread(struct lwp *, void *, register_t *);
   
 int     linux_sys_pwrite(struct lwp *, void *, register_t *);  int     linux_sys_pwrite(struct lwp *, void *, register_t *);
   
 int     linux_sys_lchown16(struct lwp *, void *, register_t *);  int     linux_sys_lchown16(struct lwp *, void *, register_t *);
   
 int     sys___getcwd(struct lwp *, void *, register_t *);  int     sys___getcwd(struct lwp *, void *, register_t *);
   
 int     linux_sys_sigaltstack(struct lwp *, void *, register_t *);  int     linux_sys_sigaltstack(struct lwp *, void *, register_t *);
   
 int     sys___vfork14(struct lwp *, void *, register_t *);  int     sys___vfork14(struct lwp *, void *, register_t *);
   
 int     linux_sys_ugetrlimit(struct lwp *, void *, register_t *);  int     linux_sys_ugetrlimit(struct lwp *, void *, register_t *);
   
 int     linux_sys_mmap2(struct lwp *, void *, register_t *);  int     linux_sys_mmap2(struct lwp *, void *, register_t *);
   
 int     linux_sys_truncate64(struct lwp *, void *, register_t *);  int     linux_sys_truncate64(struct lwp *, void *, register_t *);
 int     sys_ftruncate(struct lwp *, void *, register_t *);  
   int     linux_sys_ftruncate64(struct lwp *, void *, register_t *);
   
 int     linux_sys_stat64(struct lwp *, void *, register_t *);  int     linux_sys_stat64(struct lwp *, void *, register_t *);
   
 int     linux_sys_lstat64(struct lwp *, void *, register_t *);  int     linux_sys_lstat64(struct lwp *, void *, register_t *);
   
 int     linux_sys_fstat64(struct lwp *, void *, register_t *);  int     linux_sys_fstat64(struct lwp *, void *, register_t *);
   
 int     linux_sys_chown(struct lwp *, void *, register_t *);  int     linux_sys_chown(struct lwp *, void *, register_t *);
 int     sys_getuid(struct lwp *, void *, register_t *);  
 int     sys_getgid(struct lwp *, void *, register_t *);  
 int     sys_geteuid(struct lwp *, void *, register_t *);  
 int     sys_getegid(struct lwp *, void *, register_t *);  
 int     sys_setreuid(struct lwp *, void *, register_t *);  int     sys_setreuid(struct lwp *, void *, register_t *);
   
 int     sys_setregid(struct lwp *, void *, register_t *);  int     sys_setregid(struct lwp *, void *, register_t *);
   
 int     sys_getgroups(struct lwp *, void *, register_t *);  int     sys_getgroups(struct lwp *, void *, register_t *);
   
 int     sys_setgroups(struct lwp *, void *, register_t *);  int     sys_setgroups(struct lwp *, void *, register_t *);
   
 int     sys___posix_fchown(struct lwp *, void *, register_t *);  int     sys___posix_fchown(struct lwp *, void *, register_t *);
   
 int     linux_sys_setresuid(struct lwp *, void *, register_t *);  int     linux_sys_setresuid(struct lwp *, void *, register_t *);
 int     linux_sys_getresuid(struct lwp *, void *, register_t *);  
 int     linux_sys_setresgid(struct lwp *, void *, register_t *);  int     linux_sys_setresgid(struct lwp *, void *, register_t *);
 int     linux_sys_getresgid(struct lwp *, void *, register_t *);  
 int     linux_sys_lchown(struct lwp *, void *, register_t *);  int     linux_sys_lchown(struct lwp *, void *, register_t *);
 int     sys_setuid(struct lwp *, void *, register_t *);  
 int     sys_setgid(struct lwp *, void *, register_t *);  
 int     linux_sys_setfsuid(struct lwp *, void *, register_t *);  
 int     linux_sys_getfsuid(struct lwp *, void *, register_t *);  
 int     linux_sys_getdents64(struct lwp *, void *, register_t *);  int     linux_sys_getdents64(struct lwp *, void *, register_t *);
   
 #endif /* _LINUX_SYS__SYSCALLARGS_H_ */  #endif /* _LINUX_SYS__SYSCALLARGS_H_ */

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.46.2.1

CVSweb <webmaster@jp.NetBSD.org>