summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/compat/linux/linux_syscall.h4
-rw-r--r--sys/compat/linux/linux_syscallargs.h14
-rw-r--r--sys/compat/linux/linux_syscalls.c4
-rw-r--r--sys/compat/linux/linux_sysent.c14
4 files changed, 18 insertions, 18 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h
index b567c016415..a175e4f3528 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.34 2002/03/14 00:44:20 miod Exp $ */
+/* $OpenBSD: linux_syscall.h,v 1.35 2002/06/05 19:43:44 jasoni Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.33 2002/03/14 00:42:25 miod Exp
+ * created from OpenBSD: syscalls.master,v 1.34 2002/06/05 19:43:25 jasoni Exp
*/
/* syscall: "syscall" ret: "int" args: */
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h
index df2460079ef..f1c17c1b1a9 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.36 2002/03/14 01:26:50 millert Exp $ */
+/* $OpenBSD: linux_syscallargs.h,v 1.37 2002/06/05 19:43:44 jasoni Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.33 2002/03/14 00:42:25 miod Exp
+ * created from OpenBSD: syscalls.master,v 1.34 2002/06/05 19:43:25 jasoni Exp
*/
#ifdef syscallarg
@@ -547,11 +547,11 @@ int linux_sys_lchown16(struct proc *, void *, register_t *);
int linux_sys_break(struct proc *, void *, register_t *);
int linux_sys_ostat(struct proc *, void *, register_t *);
int compat_43_sys_lseek(struct proc *, void *, register_t *);
-int sys_getpid(struct proc *, void *, register_t *);
+int linux_sys_getpid(struct proc *, void *, register_t *);
int linux_sys_mount(struct proc *, void *, register_t *);
int linux_sys_umount(struct proc *, void *, register_t *);
int sys_setuid(struct proc *, void *, register_t *);
-int sys_getuid(struct proc *, void *, register_t *);
+int linux_sys_getuid(struct proc *, void *, register_t *);
int linux_sys_stime(struct proc *, void *, register_t *);
#ifdef PTRACE
int linux_sys_ptrace(struct proc *, void *, register_t *);
@@ -577,7 +577,7 @@ int linux_sys_times(struct proc *, void *, register_t *);
int linux_sys_prof(struct proc *, void *, register_t *);
int linux_sys_brk(struct proc *, void *, register_t *);
int sys_setgid(struct proc *, void *, register_t *);
-int sys_getgid(struct proc *, void *, register_t *);
+int linux_sys_getgid(struct proc *, void *, register_t *);
int linux_sys_signal(struct proc *, void *, register_t *);
int sys_geteuid(struct proc *, void *, register_t *);
int sys_getegid(struct proc *, void *, register_t *);
@@ -741,8 +741,8 @@ int linux_sys_stat64(struct proc *, void *, register_t *);
int linux_sys_lstat64(struct proc *, void *, register_t *);
int linux_sys_fstat64(struct proc *, void *, register_t *);
int linux_sys_lchown(struct proc *, void *, register_t *);
-int sys_getuid(struct proc *, void *, register_t *);
-int sys_getgid(struct proc *, void *, register_t *);
+int linux_sys_getuid(struct proc *, void *, register_t *);
+int linux_sys_getgid(struct proc *, void *, register_t *);
int sys_geteuid(struct proc *, void *, register_t *);
int sys_getegid(struct proc *, void *, register_t *);
int linux_sys_setreuid(struct proc *, void *, register_t *);
diff --git a/sys/compat/linux/linux_syscalls.c b/sys/compat/linux/linux_syscalls.c
index 00a090d3b35..1cd5c1af95c 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.34 2002/03/14 00:44:20 miod Exp $ */
+/* $OpenBSD: linux_syscalls.c,v 1.35 2002/06/05 19:43:44 jasoni Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.33 2002/03/14 00:42:25 miod Exp
+ * created from OpenBSD: syscalls.master,v 1.34 2002/06/05 19:43:25 jasoni Exp
*/
char *linux_syscallnames[] = {
diff --git a/sys/compat/linux/linux_sysent.c b/sys/compat/linux/linux_sysent.c
index 2875f99c9bd..93c5b9b3b31 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.35 2002/03/14 00:44:20 miod Exp $ */
+/* $OpenBSD: linux_sysent.c,v 1.36 2002/06/05 19:43:44 jasoni Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.33 2002/03/14 00:42:25 miod Exp
+ * created from OpenBSD: syscalls.master,v 1.34 2002/06/05 19:43:25 jasoni Exp
*/
#include <sys/param.h>
@@ -61,7 +61,7 @@ struct sysent linux_sysent[] = {
{ 3, s(struct compat_43_sys_lseek_args),
compat_43_sys_lseek }, /* 19 = lseek */
{ 0, 0,
- sys_getpid }, /* 20 = getpid */
+ linux_sys_getpid }, /* 20 = getpid */
{ 5, s(struct linux_sys_mount_args),
linux_sys_mount }, /* 21 = mount */
{ 1, s(struct linux_sys_umount_args),
@@ -69,7 +69,7 @@ struct sysent linux_sysent[] = {
{ 1, s(struct sys_setuid_args),
sys_setuid }, /* 23 = linux_setuid16 */
{ 0, 0,
- sys_getuid }, /* 24 = linux_getuid16 */
+ linux_sys_getuid }, /* 24 = linux_getuid16 */
{ 1, s(struct linux_sys_stime_args),
linux_sys_stime }, /* 25 = stime */
#ifdef PTRACE
@@ -120,7 +120,7 @@ struct sysent linux_sysent[] = {
{ 1, s(struct sys_setgid_args),
sys_setgid }, /* 46 = linux_setgid16 */
{ 0, 0,
- sys_getgid }, /* 47 = linux_getgid16 */
+ linux_sys_getgid }, /* 47 = linux_getgid16 */
{ 2, s(struct linux_sys_signal_args),
linux_sys_signal }, /* 48 = signal */
{ 0, 0,
@@ -439,9 +439,9 @@ struct sysent linux_sysent[] = {
{ 0, 0,
linux_sys_lchown }, /* 198 = lchown */
{ 0, 0,
- sys_getuid }, /* 199 = getuid */
+ linux_sys_getuid }, /* 199 = getuid */
{ 0, 0,
- sys_getgid }, /* 200 = getgid */
+ linux_sys_getgid }, /* 200 = getgid */
{ 0, 0,
sys_geteuid }, /* 201 = geteuid */
{ 0, 0,