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/libsys_linux Regen for utimes(2).
details: https://anonhg.NetBSD.org/src/rev/f78795b39570
branches: trunk
changeset: 329568:f78795b39570
user: njoly <njoly%NetBSD.org@localhost>
date: Thu May 29 10:42:23 2014 +0000
description:
Regen for utimes(2).
diffstat:
sys/rump/kern/lib/libsys_linux/rump_linux_syscall.h | 6 +++---
sys/rump/kern/lib/libsys_linux/rump_linux_syscallargs.h | 8 ++++----
sys/rump/kern/lib/libsys_linux/rump_linux_syscalls.c | 6 +++---
sys/rump/kern/lib/libsys_linux/rump_linux_sysent.c | 10 +++++-----
4 files changed, 15 insertions(+), 15 deletions(-)
diffs (112 lines):
diff -r b14a2c6240b1 -r f78795b39570 sys/rump/kern/lib/libsys_linux/rump_linux_syscall.h
--- a/sys/rump/kern/lib/libsys_linux/rump_linux_syscall.h Thu May 29 10:41:48 2014 +0000
+++ b/sys/rump/kern/lib/libsys_linux/rump_linux_syscall.h Thu May 29 10:42:23 2014 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_linux_syscall.h,v 1.13 2014/05/04 10:31:10 njoly Exp $ */
+/* $NetBSD: rump_linux_syscall.h,v 1.14 2014/05/29 10:42:23 njoly Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.15 2014/05/04 10:30:39 njoly Exp
+ * created from NetBSD: syscalls.master,v 1.16 2014/05/29 10:41:48 njoly Exp
*/
#ifndef _RUMP_LINUX_SYS_SYSCALL_H_
@@ -249,7 +249,7 @@
/* syscall: "settimeofday" ret: "int" args: "struct timeval50 *" "struct timezone *" */
#define RUMP_LINUX_SYS_settimeofday 419
-/* syscall: "utimes" ret: "int" args: "const char *" "struct linux_timeval *" */
+/* syscall: "utimes" ret: "int" args: "const char *" "const struct timveval50 *" */
#define RUMP_LINUX_SYS_utimes 420
/* syscall: "__futimes50" ret: "int" args: "int" "const struct timeval *" */
diff -r b14a2c6240b1 -r f78795b39570 sys/rump/kern/lib/libsys_linux/rump_linux_syscallargs.h
--- a/sys/rump/kern/lib/libsys_linux/rump_linux_syscallargs.h Thu May 29 10:41:48 2014 +0000
+++ b/sys/rump/kern/lib/libsys_linux/rump_linux_syscallargs.h Thu May 29 10:42:23 2014 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_linux_syscallargs.h,v 1.16 2014/05/04 10:31:10 njoly Exp $ */
+/* $NetBSD: rump_linux_syscallargs.h,v 1.17 2014/05/29 10:42:23 njoly Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.15 2014/05/04 10:30:39 njoly Exp
+ * created from NetBSD: syscalls.master,v 1.16 2014/05/29 10:41:48 njoly Exp
*/
#ifndef _RUMP_LINUX_SYS_SYSCALLARGS_H_
@@ -171,7 +171,7 @@
struct linux_sys_settimeofday_args;
-struct linux_sys_utimes_args;
+struct compat_50_sys_utimes_args;
struct sys___futimes50_args;
@@ -396,7 +396,7 @@
int linux_sys_settimeofday(struct lwp *, const struct linux_sys_settimeofday_args *, register_t *);
-int linux_sys_utimes(struct lwp *, const struct linux_sys_utimes_args *, register_t *);
+int compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
int sys___futimes50(struct lwp *, const struct sys___futimes50_args *, register_t *);
diff -r b14a2c6240b1 -r f78795b39570 sys/rump/kern/lib/libsys_linux/rump_linux_syscalls.c
--- a/sys/rump/kern/lib/libsys_linux/rump_linux_syscalls.c Thu May 29 10:41:48 2014 +0000
+++ b/sys/rump/kern/lib/libsys_linux/rump_linux_syscalls.c Thu May 29 10:42:23 2014 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: rump_linux_syscalls.c,v 1.16 2014/05/04 10:31:10 njoly Exp $ */
+/* $NetBSD: rump_linux_syscalls.c,v 1.17 2014/05/29 10:42:23 njoly Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.15 2014/05/04 10:30:39 njoly Exp
+ * created from NetBSD: syscalls.master,v 1.16 2014/05/29 10:41:48 njoly Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_linux_syscalls.c,v 1.16 2014/05/04 10:31:10 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_linux_syscalls.c,v 1.17 2014/05/29 10:42:23 njoly Exp $");
#if defined(_KERNEL_OPT)
#include <sys/param.h>
diff -r b14a2c6240b1 -r f78795b39570 sys/rump/kern/lib/libsys_linux/rump_linux_sysent.c
--- a/sys/rump/kern/lib/libsys_linux/rump_linux_sysent.c Thu May 29 10:41:48 2014 +0000
+++ b/sys/rump/kern/lib/libsys_linux/rump_linux_sysent.c Thu May 29 10:42:23 2014 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: rump_linux_sysent.c,v 1.16 2014/05/04 10:31:10 njoly Exp $ */
+/* $NetBSD: rump_linux_sysent.c,v 1.17 2014/05/29 10:42:23 njoly Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.15 2014/05/04 10:30:39 njoly Exp
+ * created from NetBSD: syscalls.master,v 1.16 2014/05/29 10:41:48 njoly Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_linux_sysent.c,v 1.16 2014/05/04 10:31:10 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_linux_sysent.c,v 1.17 2014/05/29 10:42:23 njoly Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -871,8 +871,8 @@
(sy_call_t *)linux_sys_gettimeofday },/* 418 = gettimeofday */
{ ns(struct linux_sys_settimeofday_args), SYCALL_ARG_PTR,
(sy_call_t *)linux_sys_settimeofday },/* 419 = settimeofday */
- { ns(struct linux_sys_utimes_args), SYCALL_ARG_PTR,
- (sy_call_t *)linux_sys_utimes }, /* 420 = utimes */
+ { ns(struct compat_50_sys_utimes_args), SYCALL_ARG_PTR,
+ (sy_call_t *)compat_50_sys_utimes },/* 420 = utimes */
{ 0, 0, 0,
linux_sys_nosys }, /* 421 = unimplemented adjtime */
{ 0, 0, 0,
Home |
Main Index |
Thread Index |
Old Index