Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-2-0]: src/sys/compat/linux/arch/alpha Regen



details:   https://anonhg.NetBSD.org/src/rev/05c6b8c00f10
branches:  netbsd-2-0
changeset: 562747:05c6b8c00f10
user:      jmc <jmc%NetBSD.org@localhost>
date:      Mon Oct 04 05:20:12 2004 +0000

description:
Regen

diffstat:

 sys/compat/linux/arch/alpha/linux_syscall.h     |   16 +-
 sys/compat/linux/arch/alpha/linux_syscallargs.h |  194 +++++++++++++++++++++++-
 sys/compat/linux/arch/alpha/linux_syscalls.c    |    6 +-
 sys/compat/linux/arch/alpha/linux_sysent.c      |   10 +-
 4 files changed, 213 insertions(+), 13 deletions(-)

diffs (truncated from 544 to 300 lines):

diff -r 2ff6c95ca014 -r 05c6b8c00f10 sys/compat/linux/arch/alpha/linux_syscall.h
--- a/sys/compat/linux/arch/alpha/linux_syscall.h       Mon Oct 04 05:19:21 2004 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscall.h       Mon Oct 04 05:20:12 2004 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.48 2003/01/18 23:34:01 thorpej Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.48.4.1 2004/10/04 05:20:12 jmc Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.42 2003/01/18 08:02:46 thorpej Exp 
+ * created from        NetBSD: syscalls.master,v 1.42.4.1 2004/10/04 05:19:16 jmc Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: */
@@ -298,6 +298,7 @@
 /* syscall: "ugetrlimit" ret: "int" args: "int" "struct rlimit *" */
 #define        LINUX_SYS_ugetrlimit    191
 
+#ifdef SYSVMSG
 /* syscall: "msgctl" ret: "int" args: "int" "int" "struct linux_msqid_ds *" */
 #define        LINUX_SYS_msgctl        200
 
@@ -310,6 +311,9 @@
 /* syscall: "msgsnd" ret: "int" args: "int" "void *" "size_t" "int" */
 #define        LINUX_SYS_msgsnd        203
 
+#else
+#endif
+#ifdef SYSVSEM
 /* syscall: "semctl" ret: "int" args: "int" "int" "int" "union linux_semun" */
 #define        LINUX_SYS_semctl        204
 
@@ -319,12 +323,15 @@
 /* syscall: "semop" ret: "int" args: "int" "struct sembuf *" "size_t" */
 #define        LINUX_SYS_semop 206
 
+#else
+#endif
 /* syscall: "olduname" ret: "int" args: "struct linux_old_utsname *" */
 #define        LINUX_SYS_olduname      207
 
 /* syscall: "__posix_lchown" ret: "int" args: "const char *" "int" "int" */
 #define        LINUX_SYS___posix_lchown        208
 
+#ifdef SYSVSHM
 /* syscall: "shmat" ret: "int" args: "int" "void *" "int" "u_long *" */
 #define        LINUX_SYS_shmat 209
 
@@ -337,6 +344,8 @@
 /* syscall: "shmget" ret: "int" args: "key_t" "size_t" "int" */
 #define        LINUX_SYS_shmget        212
 
+#else
+#endif
 /* syscall: "msync" ret: "int" args: "caddr_t" "int" "int" */
 #define        LINUX_SYS_msync 217
 
@@ -361,9 +370,12 @@
 /* syscall: "clone" ret: "int" args: "int" "void *" */
 #define        LINUX_SYS_clone 312
 
+#ifdef EXEC_AOUT
 /* syscall: "uselib" ret: "int" args: "const char *" */
 #define        LINUX_SYS_uselib        313
 
+#else
+#endif
 /* syscall: "mlock" ret: "int" args: "const void *" "size_t" */
 #define        LINUX_SYS_mlock 314
 
diff -r 2ff6c95ca014 -r 05c6b8c00f10 sys/compat/linux/arch/alpha/linux_syscallargs.h
--- a/sys/compat/linux/arch/alpha/linux_syscallargs.h   Mon Oct 04 05:19:21 2004 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscallargs.h   Mon Oct 04 05:20:12 2004 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.47 2003/01/18 23:34:01 thorpej Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.47.4.1 2004/10/04 05:20:12 jmc Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.42 2003/01/18 08:02:46 thorpej Exp 
+ * created from        NetBSD: syscalls.master,v 1.42.4.1 2004/10/04 05:19:16 jmc Exp 
  */
 
 #ifndef _LINUX_SYS__SYSCALLARGS_H_
@@ -361,10 +361,19 @@
        syscallarg(int) which;
        syscallarg(struct rlimit *) rlp;
 };
+#ifdef SYSVMSG
+#else
+#endif
+#ifdef SYSVSEM
+#else
+#endif
 
 struct linux_sys_olduname_args {
        syscallarg(struct linux_old_utsname *) up;
 };
+#ifdef SYSVSHM
+#else
+#endif
 
 struct linux_sys_msync_args {
        syscallarg(caddr_t) addr;
@@ -428,10 +437,13 @@
        syscallarg(int) flags;
        syscallarg(void *) stack;
 };
+#ifdef EXEC_AOUT
 
 struct linux_sys_uselib_args {
        syscallarg(const char *) path;
 };
+#else
+#endif
 
 struct linux_sys_sysinfo_args {
        syscallarg(struct linux_sysinfo *) arg;
@@ -592,191 +604,367 @@
  */
 
 int    linux_sys_nosys(struct lwp *, void *, register_t *);
+
 int    sys_exit(struct lwp *, void *, register_t *);
+
 int    sys_fork(struct lwp *, void *, register_t *);
+
 int    sys_read(struct lwp *, void *, register_t *);
+
 int    sys_write(struct lwp *, void *, register_t *);
+
 int    sys_close(struct lwp *, void *, register_t *);
+
 int    osf1_sys_wait4(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_unlink(struct lwp *, void *, register_t *);
+
 int    linux_sys_chdir(struct lwp *, void *, register_t *);
+
 int    sys_fchdir(struct lwp *, void *, register_t *);
+
 int    linux_sys_mknod(struct lwp *, void *, register_t *);
+
 int    linux_sys_chmod(struct lwp *, void *, register_t *);
+
 int    sys___posix_chown(struct lwp *, void *, register_t *);
+
 int    linux_sys_brk(struct lwp *, void *, register_t *);
+
 int    compat_43_sys_lseek(struct lwp *, void *, register_t *);
+
 int    sys_getpid_with_ppid(struct lwp *, void *, register_t *);
+
 int    osf1_sys_mount(struct lwp *, void *, register_t *);
+
 int    sys_setuid(struct lwp *, void *, register_t *);
+
 int    sys_getuid_with_euid(struct lwp *, void *, register_t *);
+
 int    linux_sys_ptrace(struct lwp *, void *, register_t *);
+
 int    linux_sys_access(struct lwp *, void *, register_t *);
+
 int    sys_sync(struct lwp *, void *, register_t *);
+
 int    linux_sys_kill(struct lwp *, void *, register_t *);
+
 int    sys_setpgid(struct lwp *, void *, register_t *);
+
 int    sys_dup(struct lwp *, void *, register_t *);
+
 int    linux_sys_pipe(struct lwp *, void *, register_t *);
+
 int    osf1_sys_set_program_attributes(struct lwp *, void *, register_t *);
+
 int    linux_sys_open(struct lwp *, void *, register_t *);
+
 int    sys_getgid_with_egid(struct lwp *, void *, register_t *);
+
 int    compat_13_sys_sigprocmask(struct lwp *, void *, register_t *);
+
 int    sys_acct(struct lwp *, void *, register_t *);
+
 int    linux_sys_sigpending(struct lwp *, void *, register_t *);
+
 int    linux_sys_ioctl(struct lwp *, void *, register_t *);
+
 int    linux_sys_symlink(struct lwp *, void *, register_t *);
+
 int    linux_sys_readlink(struct lwp *, void *, register_t *);
+
 int    linux_sys_execve(struct lwp *, void *, register_t *);
+
 int    sys_umask(struct lwp *, void *, register_t *);
+
 int    sys_chroot(struct lwp *, void *, register_t *);
+
 int    sys_getpgrp(struct lwp *, void *, register_t *);
+
 int    compat_43_sys_getpagesize(struct lwp *, void *, register_t *);
+
 int    sys___vfork14(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_mmap(struct lwp *, void *, register_t *);
+
 int    sys_munmap(struct lwp *, void *, register_t *);
+
 int    linux_sys_mprotect(struct lwp *, void *, register_t *);
+
 int    sys_getgroups(struct lwp *, void *, register_t *);
+
 int    sys_setgroups(struct lwp *, void *, register_t *);
+
 int    osf1_sys_setitimer(struct lwp *, void *, register_t *);
+
 int    compat_43_sys_gethostname(struct lwp *, void *, register_t *);
+
 int    compat_43_sys_sethostname(struct lwp *, void *, register_t *);
+
 int    sys_dup2(struct lwp *, void *, register_t *);
+
 int    linux_sys_fstat(struct lwp *, void *, register_t *);
+
 int    linux_sys_fcntl(struct lwp *, void *, register_t *);
+
 int    osf1_sys_select(struct lwp *, void *, register_t *);
+
 int    sys_poll(struct lwp *, void *, register_t *);
+
 int    sys_fsync(struct lwp *, void *, register_t *);
+
 int    sys_setpriority(struct lwp *, void *, register_t *);
+
 int    linux_sys_socket(struct lwp *, void *, register_t *);
+
 int    linux_sys_connect(struct lwp *, void *, register_t *);
+
 int    linux_sys_accept(struct lwp *, void *, register_t *);
+
 int    sys_getpriority(struct lwp *, void *, register_t *);
+
 int    linux_sys_send(struct lwp *, void *, register_t *);
+
 int    linux_sys_recv(struct lwp *, void *, register_t *);
+
 int    linux_sys_sigreturn(struct lwp *, void *, register_t *);
+
 int    linux_sys_bind(struct lwp *, void *, register_t *);
+
 int    linux_sys_setsockopt(struct lwp *, void *, register_t *);
+
 int    sys_listen(struct lwp *, void *, register_t *);
+
 int    linux_sys_sigsuspend(struct lwp *, void *, register_t *);
+
 int    compat_43_sys_sigstack(struct lwp *, void *, register_t *);
+
 int    linux_sys_recvmsg(struct lwp *, void *, register_t *);
+
 int    linux_sys_sendmsg(struct lwp *, void *, register_t *);
+
 int    osf1_sys_gettimeofday(struct lwp *, void *, register_t *);
+
 int    osf1_sys_getrusage(struct lwp *, void *, register_t *);
+
 int    linux_sys_getsockopt(struct lwp *, void *, register_t *);
+
 int    sys_readv(struct lwp *, void *, register_t *);
+
 int    sys_writev(struct lwp *, void *, register_t *);
+
 int    osf1_sys_settimeofday(struct lwp *, void *, register_t *);
+
 int    sys___posix_fchown(struct lwp *, void *, register_t *);
+
 int    sys_fchmod(struct lwp *, void *, register_t *);
+
 int    linux_sys_recvfrom(struct lwp *, void *, register_t *);
+
 int    sys_setreuid(struct lwp *, void *, register_t *);
+
 int    sys_setregid(struct lwp *, void *, register_t *);
+
 int    linux_sys_rename(struct lwp *, void *, register_t *);
+
 int    linux_sys_truncate(struct lwp *, void *, register_t *);
+
 int    compat_43_sys_ftruncate(struct lwp *, void *, register_t *);



Home | Main Index | Thread Index | Old Index