Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/linux/arch/alpha Regen.



details:   https://anonhg.NetBSD.org/src/rev/4163cfb122ba
branches:  trunk
changeset: 500377:4163cfb122ba
user:      mycroft <mycroft%NetBSD.org@localhost>
date:      Mon Dec 11 04:56:01 2000 +0000

description:
Regen.

diffstat:

 sys/compat/linux/arch/alpha/linux_syscall.h     |  12 ++++++------
 sys/compat/linux/arch/alpha/linux_syscallargs.h |   8 ++++----
 sys/compat/linux/arch/alpha/linux_syscalls.c    |   8 ++++----
 sys/compat/linux/arch/alpha/linux_sysent.c      |   8 ++++----
 4 files changed, 18 insertions(+), 18 deletions(-)

diffs (140 lines):

diff -r 5f24b822e96e -r 4163cfb122ba sys/compat/linux/arch/alpha/linux_syscall.h
--- a/sys/compat/linux/arch/alpha/linux_syscall.h       Mon Dec 11 04:55:50 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscall.h       Mon Dec 11 04:56:01 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.28 2000/12/11 04:54:29 mycroft Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.29 2000/12/11 04:56:01 mycroft Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.27 2000/12/11 04:54:13 mycroft Exp 
+ * created from        NetBSD: syscalls.master,v 1.28 2000/12/11 04:55:50 mycroft Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: */
@@ -61,8 +61,8 @@
 /* syscall: "setuid" ret: "int" args: "uid_t" */
 #define        LINUX_SYS_setuid        23
 
-/* syscall: "getuid" ret: "uid_t" args: */
-#define        LINUX_SYS_getuid        24
+/* syscall: "getuid_with_euid" ret: "uid_t" args: */
+#define        LINUX_SYS_getuid_with_euid      24
 
 /* syscall: "ptrace" ret: "int" args: "long" "long" "long" "long" */
 #define        LINUX_SYS_ptrace        26
@@ -88,8 +88,8 @@
 /* syscall: "open" ret: "int" args: "const char *" "int" "int" */
 #define        LINUX_SYS_open  45
 
-/* syscall: "getgid" ret: "gid_t" args: */
-#define        LINUX_SYS_getgid        47
+/* syscall: "getgid_with_egid" ret: "gid_t" args: */
+#define        LINUX_SYS_getgid_with_egid      47
 
 /* syscall: "sigprocmask" ret: "int" args: "int" "sigset13_t" */
 #define        LINUX_SYS_sigprocmask   48
diff -r 5f24b822e96e -r 4163cfb122ba sys/compat/linux/arch/alpha/linux_syscallargs.h
--- a/sys/compat/linux/arch/alpha/linux_syscallargs.h   Mon Dec 11 04:55:50 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscallargs.h   Mon Dec 11 04:56:01 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.28 2000/12/11 04:54:29 mycroft Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.29 2000/12/11 04:56:01 mycroft Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.27 2000/12/11 04:54:13 mycroft Exp 
+ * created from        NetBSD: syscalls.master,v 1.28 2000/12/11 04:55:50 mycroft Exp 
  */
 
 #ifndef _LINUX_SYS__SYSCALLARGS_H_
@@ -552,7 +552,7 @@
 int    sys_getpid_with_ppid(struct proc *, void *, register_t *);
 int    osf1_sys_mount(struct proc *, void *, register_t *);
 int    sys_setuid(struct proc *, void *, register_t *);
-int    sys_getuid(struct proc *, void *, register_t *);
+int    sys_getuid_with_euid(struct proc *, void *, register_t *);
 int    linux_sys_ptrace(struct proc *, void *, register_t *);
 int    linux_sys_access(struct proc *, void *, register_t *);
 int    sys_sync(struct proc *, void *, register_t *);
@@ -562,7 +562,7 @@
 int    linux_sys_pipe(struct proc *, void *, register_t *);
 int    osf1_sys_set_program_attributes(struct proc *, void *, register_t *);
 int    linux_sys_open(struct proc *, void *, register_t *);
-int    sys_getgid(struct proc *, void *, register_t *);
+int    sys_getgid_with_egid(struct proc *, void *, register_t *);
 int    compat_13_sys_sigprocmask(struct proc *, void *, register_t *);
 int    sys_acct(struct proc *, void *, register_t *);
 int    linux_sys_sigpending(struct proc *, void *, register_t *);
diff -r 5f24b822e96e -r 4163cfb122ba sys/compat/linux/arch/alpha/linux_syscalls.c
--- a/sys/compat/linux/arch/alpha/linux_syscalls.c      Mon Dec 11 04:55:50 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscalls.c      Mon Dec 11 04:56:01 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscalls.c,v 1.29 2000/12/11 04:54:29 mycroft Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.30 2000/12/11 04:56:01 mycroft Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.27 2000/12/11 04:54:13 mycroft Exp 
+ * created from        NetBSD: syscalls.master,v 1.28 2000/12/11 04:55:50 mycroft Exp 
  */
 
 #if defined(_KERNEL) && !defined(_LKM)
@@ -55,7 +55,7 @@
        "mount",                        /* 21 = mount */
        "#22 (unimplemented umount)",           /* 22 = unimplemented umount */
        "setuid",                       /* 23 = setuid */
-       "getuid",                       /* 24 = getuid */
+       "getuid_with_euid",                     /* 24 = getuid_with_euid */
        "#25 (unimplemented)",          /* 25 = unimplemented */
        "ptrace",                       /* 26 = ptrace */
        "#27 (unimplemented)",          /* 27 = unimplemented */
@@ -78,7 +78,7 @@
        "#44 (unimplemented)",          /* 44 = unimplemented */
        "open",                 /* 45 = open */
        "#46 (unimplemented)",          /* 46 = unimplemented */
-       "getgid",                       /* 47 = getgid */
+       "getgid_with_egid",                     /* 47 = getgid_with_egid */
        "sigprocmask",                  /* 48 = sigprocmask */
        "#49 (unimplemented)",          /* 49 = unimplemented */
        "#50 (unimplemented)",          /* 50 = unimplemented */
diff -r 5f24b822e96e -r 4163cfb122ba sys/compat/linux/arch/alpha/linux_sysent.c
--- a/sys/compat/linux/arch/alpha/linux_sysent.c        Mon Dec 11 04:55:50 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_sysent.c        Mon Dec 11 04:56:01 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_sysent.c,v 1.29 2000/12/11 04:54:29 mycroft Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.30 2000/12/11 04:56:01 mycroft Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.27 2000/12/11 04:54:13 mycroft Exp 
+ * created from        NetBSD: syscalls.master,v 1.28 2000/12/11 04:55:50 mycroft Exp 
  */
 
 #if defined(_KERNEL) && !defined(_LKM)
@@ -80,7 +80,7 @@
        { 1, s(struct sys_setuid_args),
            sys_setuid },                       /* 23 = setuid */
        { 0, 0,
-           sys_getuid },                       /* 24 = getuid */
+           sys_getuid_with_euid },             /* 24 = getuid_with_euid */
        { 0, 0,
            sys_nosys },                        /* 25 = unimplemented */
        { 4, s(struct linux_sys_ptrace_args),
@@ -126,7 +126,7 @@
        { 0, 0,
            sys_nosys },                        /* 46 = unimplemented */
        { 0, 0,
-           sys_getgid },                       /* 47 = getgid */
+           sys_getgid_with_egid },             /* 47 = getgid_with_egid */
        { 2, s(struct compat_13_sys_sigprocmask_args),
            compat_13_sys_sigprocmask },        /* 48 = sigprocmask */
        { 0, 0,



Home | Main Index | Thread Index | Old Index