summaryrefslogtreecommitdiff
path: root/sys/compat
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2013-08-13 05:54:12 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2013-08-13 05:54:12 +0000
commit718bdef9f7c68dd29ea4f2adb43382d12c4c5ed0 (patch)
tree47c4cdbb4cf3feafe0b7c895cb43b84c44b9a31b /sys/compat
parentf2b95a621a9fd41d222844eda237f607eb14d49c (diff)
regen
Diffstat (limited to 'sys/compat')
-rw-r--r--sys/compat/linux/linux_syscall.h6
-rw-r--r--sys/compat/linux/linux_syscallargs.h8
-rw-r--r--sys/compat/linux/linux_syscalls.c4
-rw-r--r--sys/compat/linux/linux_sysent.c12
4 files changed, 15 insertions, 15 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h
index 2669e965fa4..9107ecf3cea 100644
--- a/sys/compat/linux/linux_syscall.h
+++ b/sys/compat/linux/linux_syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: linux_syscall.h,v 1.74 2012/06/19 11:35:56 pirofti Exp $ */
+/* $OpenBSD: linux_syscall.h,v 1.75 2013/08/13 05:54:10 guenther Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.70 2012/06/19 11:31:39 pirofti Exp
+ * created from OpenBSD: syscalls.master,v 1.72 2013/08/13 05:52:22 guenther Exp
*/
/* syscall: "syscall" ret: "int" args: */
@@ -502,7 +502,7 @@
/* syscall: "sched_rr_get_interval" ret: "int" args: */
#define LINUX_SYS_sched_rr_get_interval 161
-/* syscall: "nanosleep" ret: "int" args: "const struct timespec *" "struct timespec *" */
+/* syscall: "nanosleep" ret: "int" args: "const struct timespec32 *" "struct timespec32 *" */
#define LINUX_SYS_nanosleep 162
/* syscall: "mremap" ret: "int" args: "void *" "size_t" "size_t" "long" */
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h
index 346f91db0f0..cd40b749fda 100644
--- a/sys/compat/linux/linux_syscallargs.h
+++ b/sys/compat/linux/linux_syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: linux_syscallargs.h,v 1.76 2012/06/19 11:35:56 pirofti Exp $ */
+/* $OpenBSD: linux_syscallargs.h,v 1.77 2013/08/13 05:54:10 guenther Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.70 2012/06/19 11:31:39 pirofti Exp
+ * created from OpenBSD: syscalls.master,v 1.72 2013/08/13 05:52:22 guenther Exp
*/
#ifdef syscallarg
@@ -733,7 +733,7 @@ int linux_sys_sethostname(struct proc *, void *, register_t *);
int linux_sys_setrlimit(struct proc *, void *, register_t *);
int linux_sys_getrlimit(struct proc *, void *, register_t *);
int sys_getrusage(struct proc *, void *, register_t *);
-int sys_gettimeofday(struct proc *, void *, register_t *);
+int t32_sys_gettimeofday(struct proc *, void *, register_t *);
int sys_settimeofday(struct proc *, void *, register_t *);
int sys_getgroups(struct proc *, void *, register_t *);
int sys_setgroups(struct proc *, void *, register_t *);
@@ -829,7 +829,7 @@ int linux_sys_sched_yield(struct proc *, void *, register_t *);
int linux_sys_sched_get_priority_max(struct proc *, void *, register_t *);
int linux_sys_sched_get_priority_min(struct proc *, void *, register_t *);
int linux_sys_sched_rr_get_interval(struct proc *, void *, register_t *);
-int sys_nanosleep(struct proc *, void *, register_t *);
+int t32_sys_nanosleep(struct proc *, void *, register_t *);
int linux_sys_mremap(struct proc *, void *, register_t *);
int linux_sys_setresuid16(struct proc *, void *, register_t *);
int linux_sys_getresuid16(struct proc *, void *, register_t *);
diff --git a/sys/compat/linux/linux_syscalls.c b/sys/compat/linux/linux_syscalls.c
index df98ec3106b..1539a65b53b 100644
--- a/sys/compat/linux/linux_syscalls.c
+++ b/sys/compat/linux/linux_syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: linux_syscalls.c,v 1.74 2012/06/19 11:35:56 pirofti Exp $ */
+/* $OpenBSD: linux_syscalls.c,v 1.75 2013/08/13 05:54:11 guenther Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.70 2012/06/19 11:31:39 pirofti Exp
+ * created from OpenBSD: syscalls.master,v 1.72 2013/08/13 05:52:22 guenther Exp
*/
char *linux_syscallnames[] = {
diff --git a/sys/compat/linux/linux_sysent.c b/sys/compat/linux/linux_sysent.c
index 6dc6eec7431..df75c3513d5 100644
--- a/sys/compat/linux/linux_sysent.c
+++ b/sys/compat/linux/linux_sysent.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: linux_sysent.c,v 1.75 2012/06/19 11:35:56 pirofti Exp $ */
+/* $OpenBSD: linux_sysent.c,v 1.76 2013/08/13 05:54:11 guenther Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.70 2012/06/19 11:31:39 pirofti Exp
+ * created from OpenBSD: syscalls.master,v 1.72 2013/08/13 05:52:22 guenther Exp
*/
#include <sys/param.h>
@@ -187,8 +187,8 @@ struct sysent linux_sysent[] = {
linux_sys_getrlimit }, /* 76 = getrlimit */
{ 2, s(struct sys_getrusage_args), 0,
sys_getrusage }, /* 77 = getrusage */
- { 2, s(struct sys_gettimeofday_args), 0,
- sys_gettimeofday }, /* 78 = gettimeofday */
+ { 2, s(struct t32_sys_gettimeofday_args), 0,
+ t32_sys_gettimeofday }, /* 78 = gettimeofday */
{ 2, s(struct sys_settimeofday_args), 0,
sys_settimeofday }, /* 79 = settimeofday */
{ 2, s(struct sys_getgroups_args), 0,
@@ -370,8 +370,8 @@ struct sysent linux_sysent[] = {
linux_sys_sched_get_priority_min }, /* 160 = sched_get_priority_min */
{ 0, 0, 0,
linux_sys_sched_rr_get_interval }, /* 161 = sched_rr_get_interval */
- { 2, s(struct sys_nanosleep_args), 0,
- sys_nanosleep }, /* 162 = nanosleep */
+ { 2, s(struct t32_sys_nanosleep_args), 0,
+ t32_sys_nanosleep }, /* 162 = nanosleep */
{ 4, s(struct linux_sys_mremap_args), 0,
linux_sys_mremap }, /* 163 = mremap */
{ 3, s(struct linux_sys_setresuid16_args), 0,