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/9e710913cd96
branches:  trunk
changeset: 790036:9e710913cd96
user:      njoly <njoly%NetBSD.org@localhost>
date:      Sun Sep 15 12:59:17 2013 +0000

description:
Regen.

diffstat:

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

diffs (116 lines):

diff -r 925b23d1a7f1 -r 9e710913cd96 sys/compat/linux/arch/alpha/linux_syscall.h
--- a/sys/compat/linux/arch/alpha/linux_syscall.h       Sun Sep 15 12:58:34 2013 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscall.h       Sun Sep 15 12:59:17 2013 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.83 2012/09/19 21:24:36 pooka Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.84 2013/09/15 12:59:17 njoly Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.77 2012/09/19 21:19:14 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.78 2013/09/15 12:58:34 njoly Exp
  */
 
 #ifndef _LINUX_SYS_SYSCALL_H_
@@ -501,7 +501,7 @@
 /* syscall: "setitimer" ret: "int" args: "int" "const struct itimerval50 *" "struct itimerval50 *" */
 #define        LINUX_SYS_setitimer     362
 
-/* syscall: "utimes" ret: "int" args: "char *" "struct timeval50 *" */
+/* syscall: "utimes" ret: "int" args: "char *" "struct linux_timeval *" */
 #define        LINUX_SYS_utimes        363
 
 /* syscall: "getrusage" ret: "int" args: "int" "struct rusage50 *" */
diff -r 925b23d1a7f1 -r 9e710913cd96 sys/compat/linux/arch/alpha/linux_syscallargs.h
--- a/sys/compat/linux/arch/alpha/linux_syscallargs.h   Sun Sep 15 12:58:34 2013 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscallargs.h   Sun Sep 15 12:59:17 2013 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.82 2012/09/19 21:24:36 pooka Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.83 2013/09/15 12:59:17 njoly Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.77 2012/09/19 21:19:14 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.78 2013/09/15 12:58:34 njoly Exp
  */
 
 #ifndef _LINUX_SYS_SYSCALLARGS_H_
@@ -784,7 +784,11 @@
 
 struct compat_50_sys_setitimer_args;
 
-struct compat_50_sys_utimes_args;
+struct linux_sys_utimes_args {
+       syscallarg(char *) path;
+       syscallarg(struct linux_timeval *) times;
+};
+check_syscall_args(linux_sys_utimes)
 
 struct compat_50_sys_getrusage_args;
 
@@ -1376,7 +1380,7 @@
 
 int    compat_50_sys_setitimer(struct lwp *, const struct compat_50_sys_setitimer_args *, register_t *);
 
-int    compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
+int    linux_sys_utimes(struct lwp *, const struct linux_sys_utimes_args *, register_t *);
 
 int    compat_50_sys_getrusage(struct lwp *, const struct compat_50_sys_getrusage_args *, register_t *);
 
diff -r 925b23d1a7f1 -r 9e710913cd96 sys/compat/linux/arch/alpha/linux_syscalls.c
--- a/sys/compat/linux/arch/alpha/linux_syscalls.c      Sun Sep 15 12:58:34 2013 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscalls.c      Sun Sep 15 12:59:17 2013 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.84 2012/09/19 21:24:36 pooka Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.85 2013/09/15 12:59:17 njoly Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.77 2012/09/19 21:19:14 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.78 2013/09/15 12:58:34 njoly Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.84 2012/09/19 21:24:36 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.85 2013/09/15 12:59:17 njoly Exp $");
 
 #if defined(_KERNEL_OPT)
 #if defined(_KERNEL_OPT)
diff -r 925b23d1a7f1 -r 9e710913cd96 sys/compat/linux/arch/alpha/linux_sysent.c
--- a/sys/compat/linux/arch/alpha/linux_sysent.c        Sun Sep 15 12:58:34 2013 +0000
+++ b/sys/compat/linux/arch/alpha/linux_sysent.c        Sun Sep 15 12:59:17 2013 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.83 2012/09/19 21:24:36 pooka Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.84 2013/09/15 12:59:17 njoly Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.77 2012/09/19 21:19:14 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.78 2013/09/15 12:58:34 njoly Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.83 2012/09/19 21:24:36 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.84 2013/09/15 12:59:17 njoly Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_sysv.h"
@@ -796,8 +796,8 @@
            (sy_call_t *)compat_50_sys_getitimer },/* 361 = getitimer */
        { ns(struct compat_50_sys_setitimer_args), SYCALL_ARG_PTR,
            (sy_call_t *)compat_50_sys_setitimer },/* 362 = setitimer */
-       { ns(struct compat_50_sys_utimes_args), SYCALL_ARG_PTR,
-           (sy_call_t *)compat_50_sys_utimes },/* 363 = utimes */
+       { ns(struct linux_sys_utimes_args), SYCALL_ARG_PTR,
+           (sy_call_t *)linux_sys_utimes },    /* 363 = utimes */
        { ns(struct compat_50_sys_getrusage_args), SYCALL_ARG_PTR,
            (sy_call_t *)compat_50_sys_getrusage },/* 364 = getrusage */
        { ns(struct linux_sys_wait4_args), SYCALL_ARG_PTR,



Home | Main Index | Thread Index | Old Index