Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/linux32/arch/amd64 regen
details: https://anonhg.NetBSD.org/src/rev/7e94e08fe797
branches: trunk
changeset: 779214:7e94e08fe797
user: christos <christos%NetBSD.org@localhost>
date: Thu May 10 19:41:52 2012 +0000
description:
regen
diffstat:
sys/compat/linux32/arch/amd64/linux32_syscall.h | 6 +++---
sys/compat/linux32/arch/amd64/linux32_syscallargs.h | 10 +++++-----
sys/compat/linux32/arch/amd64/linux32_syscalls.c | 6 +++---
sys/compat/linux32/arch/amd64/linux32_sysent.c | 6 +++---
4 files changed, 14 insertions(+), 14 deletions(-)
diffs (96 lines):
diff -r 0fef8cb87b3a -r 7e94e08fe797 sys/compat/linux32/arch/amd64/linux32_syscall.h
--- a/sys/compat/linux32/arch/amd64/linux32_syscall.h Thu May 10 19:40:46 2012 +0000
+++ b/sys/compat/linux32/arch/amd64/linux32_syscall.h Thu May 10 19:41:52 2012 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux32_syscall.h,v 1.65 2011/11/18 04:20:16 christos Exp $ */
+/* $NetBSD: linux32_syscall.h,v 1.66 2012/05/10 19:41:52 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.60 2011/11/18 04:08:56 christos Exp
+ * created from NetBSD: syscalls.master,v 1.61 2012/05/10 19:40:46 christos Exp
*/
#ifndef _LINUX32_SYS_SYSCALL_H_
@@ -445,7 +445,7 @@
/* syscall: "rt_sigpending" ret: "int" args: "linux32_sigsetp_t" "netbsd32_size_t" */
#define LINUX32_SYS_rt_sigpending 176
-/* syscall: "rt_sigtimedwait" ret: "int" args: "const linux32_sigset_t *" "linux32_siginfo_t *" "const struct linux_timespec32 *" */
+/* syscall: "rt_sigtimedwait" ret: "int" args: "const linux32_sigsetp_t" "linux32_siginfop_t" "const linux32_timespecp_t" */
#define LINUX32_SYS_rt_sigtimedwait 177
/* syscall: "rt_queueinfo" ret: "int" args: "int" "int" "linux32_siginfop_t" */
diff -r 0fef8cb87b3a -r 7e94e08fe797 sys/compat/linux32/arch/amd64/linux32_syscallargs.h
--- a/sys/compat/linux32/arch/amd64/linux32_syscallargs.h Thu May 10 19:40:46 2012 +0000
+++ b/sys/compat/linux32/arch/amd64/linux32_syscallargs.h Thu May 10 19:41:52 2012 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux32_syscallargs.h,v 1.65 2011/11/18 04:20:16 christos Exp $ */
+/* $NetBSD: linux32_syscallargs.h,v 1.66 2012/05/10 19:41:52 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.60 2011/11/18 04:08:56 christos Exp
+ * created from NetBSD: syscalls.master,v 1.61 2012/05/10 19:40:46 christos Exp
*/
#ifndef _LINUX32_SYS_SYSCALLARGS_H_
@@ -605,9 +605,9 @@
check_syscall_args(linux32_sys_rt_sigpending)
struct linux32_sys_rt_sigtimedwait_args {
- syscallarg(const linux32_sigset_t *) set;
- syscallarg(linux32_siginfo_t *) info;
- syscallarg(const struct linux_timespec32 *) timeout;
+ syscallarg(const linux32_sigsetp_t) set;
+ syscallarg(linux32_siginfop_t) info;
+ syscallarg(const linux32_timespecp_t) timeout;
};
check_syscall_args(linux32_sys_rt_sigtimedwait)
diff -r 0fef8cb87b3a -r 7e94e08fe797 sys/compat/linux32/arch/amd64/linux32_syscalls.c
--- a/sys/compat/linux32/arch/amd64/linux32_syscalls.c Thu May 10 19:40:46 2012 +0000
+++ b/sys/compat/linux32/arch/amd64/linux32_syscalls.c Thu May 10 19:41:52 2012 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux32_syscalls.c,v 1.65 2011/11/18 04:20:16 christos Exp $ */
+/* $NetBSD: linux32_syscalls.c,v 1.66 2012/05/10 19:41:52 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.60 2011/11/18 04:08:56 christos Exp
+ * created from NetBSD: syscalls.master,v 1.61 2012/05/10 19:40:46 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux32_syscalls.c,v 1.65 2011/11/18 04:20:16 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux32_syscalls.c,v 1.66 2012/05/10 19:41:52 christos Exp $");
#if defined(_KERNEL_OPT)
#include <sys/param.h>
diff -r 0fef8cb87b3a -r 7e94e08fe797 sys/compat/linux32/arch/amd64/linux32_sysent.c
--- a/sys/compat/linux32/arch/amd64/linux32_sysent.c Thu May 10 19:40:46 2012 +0000
+++ b/sys/compat/linux32/arch/amd64/linux32_sysent.c Thu May 10 19:41:52 2012 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux32_sysent.c,v 1.65 2011/11/18 04:20:16 christos Exp $ */
+/* $NetBSD: linux32_sysent.c,v 1.66 2012/05/10 19:41:52 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.60 2011/11/18 04:08:56 christos Exp
+ * created from NetBSD: syscalls.master,v 1.61 2012/05/10 19:40:46 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux32_sysent.c,v 1.65 2011/11/18 04:20:16 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux32_sysent.c,v 1.66 2012/05/10 19:41:52 christos Exp $");
#include <sys/param.h>
#include <sys/poll.h>
Home |
Main Index |
Thread Index |
Old Index