summaryrefslogtreecommitdiff
path: root/sys/compat/linux
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>2000-12-11 04:54:29 +0000
committermycroft <mycroft@NetBSD.org>2000-12-11 04:54:29 +0000
commitcfe0002fc5a6b08f2af441bea709ba736c3136a5 (patch)
tree8b9c34617340e1cae38675d3e03f5775897a6aeb /sys/compat/linux
parent6d0c28a87cfb16f56d3f04635e6282fcda883a0a (diff)
Regen.
Diffstat (limited to 'sys/compat/linux')
-rw-r--r--sys/compat/linux/arch/alpha/linux_syscall.h8
-rw-r--r--sys/compat/linux/arch/alpha/linux_syscallargs.h6
-rw-r--r--sys/compat/linux/arch/alpha/linux_syscalls.c6
-rw-r--r--sys/compat/linux/arch/alpha/linux_sysent.c6
4 files changed, 13 insertions, 13 deletions
diff --git a/sys/compat/linux/arch/alpha/linux_syscall.h b/sys/compat/linux/arch/alpha/linux_syscall.h
index a75efb5b233..9751be89607 100644
--- a/sys/compat/linux/arch/alpha/linux_syscall.h
+++ b/sys/compat/linux/arch/alpha/linux_syscall.h
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.27 2000/12/09 12:27:01 jdolecek Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.28 2000/12/11 04:54:29 mycroft Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.26 2000/12/09 12:23:35 jdolecek Exp
+ * created from NetBSD: syscalls.master,v 1.27 2000/12/11 04:54:13 mycroft Exp
*/
/* syscall: "syscall" ret: "int" args: */
@@ -55,8 +55,8 @@
/* syscall: "lseek" ret: "long" args: "int" "long" "int" */
#define LINUX_SYS_lseek 19
-/* syscall: "getpid" ret: "pid_t" args: */
-#define LINUX_SYS_getpid 20
+/* syscall: "getpid_with_ppid" ret: "pid_t" args: */
+#define LINUX_SYS_getpid_with_ppid 20
/* syscall: "setuid" ret: "int" args: "uid_t" */
#define LINUX_SYS_setuid 23
diff --git a/sys/compat/linux/arch/alpha/linux_syscallargs.h b/sys/compat/linux/arch/alpha/linux_syscallargs.h
index 44ac314c1e3..72d1a740958 100644
--- a/sys/compat/linux/arch/alpha/linux_syscallargs.h
+++ b/sys/compat/linux/arch/alpha/linux_syscallargs.h
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.27 2000/12/09 12:27:01 jdolecek Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.28 2000/12/11 04:54:29 mycroft Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.26 2000/12/09 12:23:35 jdolecek Exp
+ * created from NetBSD: syscalls.master,v 1.27 2000/12/11 04:54:13 mycroft Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@@ -549,7 +549,7 @@ int linux_sys_chmod(struct proc *, void *, register_t *);
int linux_sys_chown(struct proc *, void *, register_t *);
int linux_sys_brk(struct proc *, void *, register_t *);
int compat_43_sys_lseek(struct proc *, void *, register_t *);
-int sys_getpid(struct proc *, void *, register_t *);
+int sys_getpid_with_ppid(struct proc *, void *, register_t *);
int osf1_sys_mount(struct proc *, void *, register_t *);
int sys_setuid(struct proc *, void *, register_t *);
int sys_getuid(struct proc *, void *, register_t *);
diff --git a/sys/compat/linux/arch/alpha/linux_syscalls.c b/sys/compat/linux/arch/alpha/linux_syscalls.c
index ed1aaf6cadd..83b02d1a6a8 100644
--- a/sys/compat/linux/arch/alpha/linux_syscalls.c
+++ b/sys/compat/linux/arch/alpha/linux_syscalls.c
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscalls.c,v 1.28 2000/12/09 12:27:01 jdolecek Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.29 2000/12/11 04:54:29 mycroft Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.26 2000/12/09 12:23:35 jdolecek Exp
+ * created from NetBSD: syscalls.master,v 1.27 2000/12/11 04:54:13 mycroft Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
@@ -51,7 +51,7 @@ const char *const linux_syscallnames[] = {
"brk", /* 17 = brk */
"#18 (unimplemented)", /* 18 = unimplemented */
"lseek", /* 19 = lseek */
- "getpid", /* 20 = getpid */
+ "getpid_with_ppid", /* 20 = getpid_with_ppid */
"mount", /* 21 = mount */
"#22 (unimplemented umount)", /* 22 = unimplemented umount */
"setuid", /* 23 = setuid */
diff --git a/sys/compat/linux/arch/alpha/linux_sysent.c b/sys/compat/linux/arch/alpha/linux_sysent.c
index 99c7945b4ef..7acff6ec4b5 100644
--- a/sys/compat/linux/arch/alpha/linux_sysent.c
+++ b/sys/compat/linux/arch/alpha/linux_sysent.c
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_sysent.c,v 1.28 2000/12/09 12:27:01 jdolecek Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.29 2000/12/11 04:54:29 mycroft Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.26 2000/12/09 12:23:35 jdolecek Exp
+ * created from NetBSD: syscalls.master,v 1.27 2000/12/11 04:54:13 mycroft Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
@@ -72,7 +72,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 */
+ sys_getpid_with_ppid }, /* 20 = getpid_with_ppid */
{ 4, s(struct osf1_sys_mount_args),
osf1_sys_mount }, /* 21 = mount */
{ 0, 0,