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/amd64 Regen for struct linux_stat64 fix.
details: https://anonhg.NetBSD.org/src/rev/213736a756a2
branches: trunk
changeset: 748656:213736a756a2
user: njoly <njoly%NetBSD.org@localhost>
date: Fri Oct 30 10:58:15 2009 +0000
description:
Regen for struct linux_stat64 fix.
diffstat:
sys/compat/linux/arch/amd64/linux_syscall.h | 10 +++++-----
sys/compat/linux/arch/amd64/linux_syscallargs.h | 10 +++++-----
sys/compat/linux/arch/amd64/linux_syscalls.c | 6 +++---
sys/compat/linux/arch/amd64/linux_sysent.c | 6 +++---
4 files changed, 16 insertions(+), 16 deletions(-)
diffs (114 lines):
diff -r 995f0676300d -r 213736a756a2 sys/compat/linux/arch/amd64/linux_syscall.h
--- a/sys/compat/linux/arch/amd64/linux_syscall.h Fri Oct 30 10:57:40 2009 +0000
+++ b/sys/compat/linux/arch/amd64/linux_syscall.h Fri Oct 30 10:58:15 2009 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.34 2009/06/17 14:20:08 njoly Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.35 2009/10/30 10:58:15 njoly Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.32 2009/06/17 14:18:51 njoly Exp
+ * created from NetBSD: syscalls.master,v 1.33 2009/10/30 10:57:40 njoly Exp
*/
#ifndef _LINUX_SYS_SYSCALL_H_
@@ -24,13 +24,13 @@
/* syscall: "close" ret: "int" args: "int" */
#define LINUX_SYS_close 3
-/* syscall: "stat64" ret: "int" args: "const char *" "struct linux_stat *" */
+/* syscall: "stat64" ret: "int" args: "const char *" "struct linux_stat64 *" */
#define LINUX_SYS_stat64 4
-/* syscall: "fstat64" ret: "int" args: "int" "struct linux_stat *" */
+/* syscall: "fstat64" ret: "int" args: "int" "struct linux_stat64 *" */
#define LINUX_SYS_fstat64 5
-/* syscall: "lstat64" ret: "int" args: "const char *" "struct linux_stat *" */
+/* syscall: "lstat64" ret: "int" args: "const char *" "struct linux_stat64 *" */
#define LINUX_SYS_lstat64 6
/* syscall: "poll" ret: "int" args: "struct pollfd *" "u_int" "int" */
diff -r 995f0676300d -r 213736a756a2 sys/compat/linux/arch/amd64/linux_syscallargs.h
--- a/sys/compat/linux/arch/amd64/linux_syscallargs.h Fri Oct 30 10:57:40 2009 +0000
+++ b/sys/compat/linux/arch/amd64/linux_syscallargs.h Fri Oct 30 10:58:15 2009 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.34 2009/06/17 14:20:08 njoly Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.35 2009/10/30 10:58:15 njoly Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.32 2009/06/17 14:18:51 njoly Exp
+ * created from NetBSD: syscalls.master,v 1.33 2009/10/30 10:57:40 njoly Exp
*/
#ifndef _LINUX_SYS_SYSCALLARGS_H_
@@ -46,19 +46,19 @@
struct linux_sys_stat64_args {
syscallarg(const char *) path;
- syscallarg(struct linux_stat *) sp;
+ syscallarg(struct linux_stat64 *) sp;
};
check_syscall_args(linux_sys_stat64)
struct linux_sys_fstat64_args {
syscallarg(int) fd;
- syscallarg(struct linux_stat *) sp;
+ syscallarg(struct linux_stat64 *) sp;
};
check_syscall_args(linux_sys_fstat64)
struct linux_sys_lstat64_args {
syscallarg(const char *) path;
- syscallarg(struct linux_stat *) sp;
+ syscallarg(struct linux_stat64 *) sp;
};
check_syscall_args(linux_sys_lstat64)
diff -r 995f0676300d -r 213736a756a2 sys/compat/linux/arch/amd64/linux_syscalls.c
--- a/sys/compat/linux/arch/amd64/linux_syscalls.c Fri Oct 30 10:57:40 2009 +0000
+++ b/sys/compat/linux/arch/amd64/linux_syscalls.c Fri Oct 30 10:58:15 2009 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.34 2009/06/17 14:20:08 njoly Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.35 2009/10/30 10:58:15 njoly Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.32 2009/06/17 14:18:51 njoly Exp
+ * created from NetBSD: syscalls.master,v 1.33 2009/10/30 10:57:40 njoly Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.34 2009/06/17 14:20:08 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.35 2009/10/30 10:58:15 njoly Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
diff -r 995f0676300d -r 213736a756a2 sys/compat/linux/arch/amd64/linux_sysent.c
--- a/sys/compat/linux/arch/amd64/linux_sysent.c Fri Oct 30 10:57:40 2009 +0000
+++ b/sys/compat/linux/arch/amd64/linux_sysent.c Fri Oct 30 10:58:15 2009 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.34 2009/06/17 14:20:08 njoly Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.35 2009/10/30 10:58:15 njoly Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.32 2009/06/17 14:18:51 njoly Exp
+ * created from NetBSD: syscalls.master,v 1.33 2009/10/30 10:57:40 njoly Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.34 2009/06/17 14:20:08 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.35 2009/10/30 10:58:15 njoly Exp $");
#if defined(_KERNEL_OPT)
#include "opt_sysv.h"
Home |
Main Index |
Thread Index |
Old Index