Source-Changes-HG archive

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

[src/trunk]: src/sys/rump/kern/lib regen



details:   https://anonhg.NetBSD.org/src/rev/6f6840401b45
branches:  trunk
changeset: 786855:6f6840401b45
user:      pooka <pooka%NetBSD.org@localhost>
date:      Wed May 15 21:41:25 2013 +0000

description:
regen

diffstat:

 sys/rump/kern/lib/libsys_cygwin/rump_cygwin_syscall.h     |  10 ++++++++--
 sys/rump/kern/lib/libsys_cygwin/rump_cygwin_syscallargs.h |  12 ++++++++++--
 sys/rump/kern/lib/libsys_cygwin/rump_cygwin_syscalls.c    |  10 +++++-----
 sys/rump/kern/lib/libsys_cygwin/rump_cygwin_sysent.c      |  14 +++++++-------
 sys/rump/kern/lib/libsys_sunos/rump_sunos_syscall.h       |  10 ++++++++--
 sys/rump/kern/lib/libsys_sunos/rump_sunos_syscallargs.h   |  12 ++++++++++--
 sys/rump/kern/lib/libsys_sunos/rump_sunos_syscalls.c      |  10 +++++-----
 sys/rump/kern/lib/libsys_sunos/rump_sunos_sysent.c        |  14 +++++++-------
 8 files changed, 60 insertions(+), 32 deletions(-)

diffs (282 lines):

diff -r b48ac8f71645 -r 6f6840401b45 sys/rump/kern/lib/libsys_cygwin/rump_cygwin_syscall.h
--- a/sys/rump/kern/lib/libsys_cygwin/rump_cygwin_syscall.h     Wed May 15 21:39:30 2013 +0000
+++ b/sys/rump/kern/lib/libsys_cygwin/rump_cygwin_syscall.h     Wed May 15 21:41:25 2013 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_cygwin_syscall.h,v 1.1 2013/04/10 16:45:45 pooka Exp $ */
+/* $NetBSD: rump_cygwin_syscall.h,v 1.2 2013/05/15 21:41:25 pooka Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.1 2013/04/10 16:44:54 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.2 2013/05/15 21:39:30 pooka Exp
  */
 
 #ifndef _RUMP_CYGWIN_SYS_SYSCALL_H_
@@ -171,6 +171,12 @@
 /* syscall: "fchroot" ret: "int" args: "int" */
 #define        RUMP_CYGWIN_SYS_fchroot 297
 
+/* syscall: "utimes" ret: "int" args: "char *" "struct timeval50 *" */
+#define        RUMP_CYGWIN_SYS_utimes  420
+
+/* syscall: "futimes" ret: "int" args: "int" "struct timeval50 *" */
+#define        RUMP_CYGWIN_SYS_futimes 423
+
 /* syscall: "__mknod50" ret: "int" args: "const char *" "mode_t" "int" */
 #define        RUMP_CYGWIN_SYS___mknod50       450
 
diff -r b48ac8f71645 -r 6f6840401b45 sys/rump/kern/lib/libsys_cygwin/rump_cygwin_syscallargs.h
--- a/sys/rump/kern/lib/libsys_cygwin/rump_cygwin_syscallargs.h Wed May 15 21:39:30 2013 +0000
+++ b/sys/rump/kern/lib/libsys_cygwin/rump_cygwin_syscallargs.h Wed May 15 21:41:25 2013 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_cygwin_syscallargs.h,v 1.1 2013/04/10 16:45:45 pooka Exp $ */
+/* $NetBSD: rump_cygwin_syscallargs.h,v 1.2 2013/05/15 21:41:25 pooka Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.1 2013/04/10 16:44:54 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.2 2013/05/15 21:39:30 pooka Exp
  */
 
 #ifndef _RUMP_CYGWIN_SYS_SYSCALLARGS_H_
@@ -133,6 +133,10 @@
 };
 check_syscall_args(rump_cygwin_sys_getdents)
 
+struct compat_50_sys_utimes_args;
+
+struct compat_50_sys_futimes_args;
+
 struct rump_cygwin_sys_stat_args {
        syscallarg(const char *) path;
        syscallarg(struct cygwin_stat *) sp;
@@ -267,6 +271,10 @@
 
 int    rump_cygwin_sys_getdents(struct lwp *, const struct rump_cygwin_sys_getdents_args *, register_t *);
 
+int    compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
+
+int    compat_50_sys_futimes(struct lwp *, const struct compat_50_sys_futimes_args *, register_t *);
+
 int    rump_cygwin_sys_stat(struct lwp *, const struct rump_cygwin_sys_stat_args *, register_t *);
 
 int    rump_cygwin_sys_fstat(struct lwp *, const struct rump_cygwin_sys_fstat_args *, register_t *);
diff -r b48ac8f71645 -r 6f6840401b45 sys/rump/kern/lib/libsys_cygwin/rump_cygwin_syscalls.c
--- a/sys/rump/kern/lib/libsys_cygwin/rump_cygwin_syscalls.c    Wed May 15 21:39:30 2013 +0000
+++ b/sys/rump/kern/lib/libsys_cygwin/rump_cygwin_syscalls.c    Wed May 15 21:41:25 2013 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: rump_cygwin_syscalls.c,v 1.1 2013/04/10 16:45:45 pooka Exp $ */
+/* $NetBSD: rump_cygwin_syscalls.c,v 1.2 2013/05/15 21:41:25 pooka Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.1 2013/04/10 16:44:54 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.2 2013/05/15 21:39:30 pooka Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_cygwin_syscalls.c,v 1.1 2013/04/10 16:45:45 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_cygwin_syscalls.c,v 1.2 2013/05/15 21:41:25 pooka Exp $");
 
 #if defined(_KERNEL_OPT)
 #include <sys/param.h>
@@ -442,10 +442,10 @@
        /* 417 */       "#417 (unimplemented select)",
        /* 418 */       "#418 (unimplemented gettimeofday)",
        /* 419 */       "#419 (unimplemented settimeofday)",
-       /* 420 */       "#420 (unimplemented utimes)",
+       /* 420 */       "utimes",
        /* 421 */       "#421 (unimplemented adjtime)",
        /* 422 */       "#422 (unimplemented lfs_segwait)",
-       /* 423 */       "#423 (unimplemented futimes)",
+       /* 423 */       "futimes",
        /* 424 */       "#424 (unimplemented lutimes)",
        /* 425 */       "#425 (unimplemented setitimer)",
        /* 426 */       "#426 (unimplemented getitimer)",
diff -r b48ac8f71645 -r 6f6840401b45 sys/rump/kern/lib/libsys_cygwin/rump_cygwin_sysent.c
--- a/sys/rump/kern/lib/libsys_cygwin/rump_cygwin_sysent.c      Wed May 15 21:39:30 2013 +0000
+++ b/sys/rump/kern/lib/libsys_cygwin/rump_cygwin_sysent.c      Wed May 15 21:41:25 2013 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: rump_cygwin_sysent.c,v 1.1 2013/04/10 16:45:45 pooka Exp $ */
+/* $NetBSD: rump_cygwin_sysent.c,v 1.2 2013/05/15 21:41:25 pooka Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.1 2013/04/10 16:44:54 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.2 2013/05/15 21:39:30 pooka Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_cygwin_sysent.c,v 1.1 2013/04/10 16:45:45 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_cygwin_sysent.c,v 1.2 2013/05/15 21:41:25 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -864,14 +864,14 @@
            sys_nosys },                        /* 418 = unimplemented gettimeofday */
        { 0, 0, 0,
            sys_nosys },                        /* 419 = unimplemented settimeofday */
-       { 0, 0, 0,
-           sys_nosys },                        /* 420 = unimplemented utimes */
+       { ns(struct compat_50_sys_utimes_args), SYCALL_ARG_PTR,
+           (sy_call_t *)compat_50_sys_utimes },/* 420 = utimes */
        { 0, 0, 0,
            sys_nosys },                        /* 421 = unimplemented adjtime */
        { 0, 0, 0,
            sys_nosys },                        /* 422 = unimplemented lfs_segwait */
-       { 0, 0, 0,
-           sys_nosys },                        /* 423 = unimplemented futimes */
+       { ns(struct compat_50_sys_futimes_args), SYCALL_ARG_PTR,
+           (sy_call_t *)compat_50_sys_futimes },/* 423 = futimes */
        { 0, 0, 0,
            sys_nosys },                        /* 424 = unimplemented lutimes */
        { 0, 0, 0,
diff -r b48ac8f71645 -r 6f6840401b45 sys/rump/kern/lib/libsys_sunos/rump_sunos_syscall.h
--- a/sys/rump/kern/lib/libsys_sunos/rump_sunos_syscall.h       Wed May 15 21:39:30 2013 +0000
+++ b/sys/rump/kern/lib/libsys_sunos/rump_sunos_syscall.h       Wed May 15 21:41:25 2013 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_sunos_syscall.h,v 1.1 2013/04/09 13:09:12 pooka Exp $ */
+/* $NetBSD: rump_sunos_syscall.h,v 1.2 2013/05/15 21:41:25 pooka Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.1 2013/04/09 13:08:33 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.2 2013/05/15 21:39:30 pooka Exp
  */
 
 #ifndef _RUMP_SUNOS_SYS_SYSCALL_H_
@@ -177,6 +177,12 @@
 /* syscall: "fchroot" ret: "int" args: "int" */
 #define        RUMP_SUNOS_SYS_fchroot  297
 
+/* syscall: "utimes" ret: "int" args: "char *" "struct timeval50 *" */
+#define        RUMP_SUNOS_SYS_utimes   420
+
+/* syscall: "futimes" ret: "int" args: "int" "struct timeval50 *" */
+#define        RUMP_SUNOS_SYS_futimes  423
+
 /* syscall: "__mknod50" ret: "int" args: "const char *" "mode_t" "int" */
 #define        RUMP_SUNOS_SYS___mknod50        450
 
diff -r b48ac8f71645 -r 6f6840401b45 sys/rump/kern/lib/libsys_sunos/rump_sunos_syscallargs.h
--- a/sys/rump/kern/lib/libsys_sunos/rump_sunos_syscallargs.h   Wed May 15 21:39:30 2013 +0000
+++ b/sys/rump/kern/lib/libsys_sunos/rump_sunos_syscallargs.h   Wed May 15 21:41:25 2013 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_sunos_syscallargs.h,v 1.1 2013/04/09 13:09:12 pooka Exp $ */
+/* $NetBSD: rump_sunos_syscallargs.h,v 1.2 2013/05/15 21:41:25 pooka Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.1 2013/04/09 13:08:33 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.2 2013/05/15 21:39:30 pooka Exp
  */
 
 #ifndef _RUMP_SUNOS_SYS_SYSCALLARGS_H_
@@ -137,6 +137,10 @@
 };
 check_syscall_args(rump_sunos_sys_getdents)
 
+struct compat_50_sys_utimes_args;
+
+struct compat_50_sys_futimes_args;
+
 struct rump_sunos_sys_stat_args {
        syscallarg(const char *) path;
        syscallarg(struct sunos_stat *) sp;
@@ -275,6 +279,10 @@
 
 int    rump_sunos_sys_getdents(struct lwp *, const struct rump_sunos_sys_getdents_args *, register_t *);
 
+int    compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
+
+int    compat_50_sys_futimes(struct lwp *, const struct compat_50_sys_futimes_args *, register_t *);
+
 int    rump_sunos_sys_stat(struct lwp *, const struct rump_sunos_sys_stat_args *, register_t *);
 
 int    rump_sunos_sys_fstat(struct lwp *, const struct rump_sunos_sys_fstat_args *, register_t *);
diff -r b48ac8f71645 -r 6f6840401b45 sys/rump/kern/lib/libsys_sunos/rump_sunos_syscalls.c
--- a/sys/rump/kern/lib/libsys_sunos/rump_sunos_syscalls.c      Wed May 15 21:39:30 2013 +0000
+++ b/sys/rump/kern/lib/libsys_sunos/rump_sunos_syscalls.c      Wed May 15 21:41:25 2013 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: rump_sunos_syscalls.c,v 1.1 2013/04/09 13:09:12 pooka Exp $ */
+/* $NetBSD: rump_sunos_syscalls.c,v 1.2 2013/05/15 21:41:25 pooka Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.1 2013/04/09 13:08:33 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.2 2013/05/15 21:39:30 pooka Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_sunos_syscalls.c,v 1.1 2013/04/09 13:09:12 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_sunos_syscalls.c,v 1.2 2013/05/15 21:41:25 pooka Exp $");
 
 #if defined(_KERNEL_OPT)
 #include <sys/param.h>
@@ -443,10 +443,10 @@
        /* 417 */       "#417 (unimplemented select)",
        /* 418 */       "#418 (unimplemented gettimeofday)",
        /* 419 */       "#419 (unimplemented settimeofday)",
-       /* 420 */       "#420 (unimplemented utimes)",
+       /* 420 */       "utimes",
        /* 421 */       "#421 (unimplemented adjtime)",
        /* 422 */       "#422 (unimplemented lfs_segwait)",
-       /* 423 */       "#423 (unimplemented futimes)",
+       /* 423 */       "futimes",
        /* 424 */       "#424 (unimplemented lutimes)",
        /* 425 */       "#425 (unimplemented setitimer)",
        /* 426 */       "#426 (unimplemented getitimer)",
diff -r b48ac8f71645 -r 6f6840401b45 sys/rump/kern/lib/libsys_sunos/rump_sunos_sysent.c
--- a/sys/rump/kern/lib/libsys_sunos/rump_sunos_sysent.c        Wed May 15 21:39:30 2013 +0000
+++ b/sys/rump/kern/lib/libsys_sunos/rump_sunos_sysent.c        Wed May 15 21:41:25 2013 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: rump_sunos_sysent.c,v 1.1 2013/04/09 13:09:12 pooka Exp $ */
+/* $NetBSD: rump_sunos_sysent.c,v 1.2 2013/05/15 21:41:25 pooka Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.1 2013/04/09 13:08:33 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.2 2013/05/15 21:39:30 pooka Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_sunos_sysent.c,v 1.1 2013/04/09 13:09:12 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_sunos_sysent.c,v 1.2 2013/05/15 21:41:25 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -865,14 +865,14 @@
            sys_nosys },                        /* 418 = unimplemented gettimeofday */
        { 0, 0, 0,
            sys_nosys },                        /* 419 = unimplemented settimeofday */
-       { 0, 0, 0,
-           sys_nosys },                        /* 420 = unimplemented utimes */
+       { ns(struct compat_50_sys_utimes_args), SYCALL_ARG_PTR,
+           (sy_call_t *)compat_50_sys_utimes },/* 420 = utimes */
        { 0, 0, 0,
            sys_nosys },                        /* 421 = unimplemented adjtime */
        { 0, 0, 0,
            sys_nosys },                        /* 422 = unimplemented lfs_segwait */
-       { 0, 0, 0,
-           sys_nosys },                        /* 423 = unimplemented futimes */
+       { ns(struct compat_50_sys_futimes_args), SYCALL_ARG_PTR,
+           (sy_call_t *)compat_50_sys_futimes },/* 423 = futimes */
        { 0, 0, 0,
            sys_nosys },                        /* 424 = unimplemented lutimes */
        { 0, 0, 0,



Home | Main Index | Thread Index | Old Index