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/alpha Regen.
details: https://anonhg.NetBSD.org/src/rev/b4f11171540f
branches: trunk
changeset: 483874:b4f11171540f
user: erh <erh%NetBSD.org@localhost>
date: Mon Mar 20 00:50:45 2000 +0000
description:
Regen.
diffstat:
sys/compat/linux/arch/alpha/linux_syscall.h | 7 +++++--
sys/compat/linux/arch/alpha/linux_syscallargs.h | 10 ++++++++--
sys/compat/linux/arch/alpha/linux_syscalls.c | 6 +++---
sys/compat/linux/arch/alpha/linux_sysent.c | 8 ++++----
4 files changed, 20 insertions(+), 11 deletions(-)
diffs (114 lines):
diff -r 4a13f1026ad4 -r b4f11171540f sys/compat/linux/arch/alpha/linux_syscall.h
--- a/sys/compat/linux/arch/alpha/linux_syscall.h Mon Mar 20 00:50:20 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscall.h Mon Mar 20 00:50:45 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.17 2000/03/18 23:53:38 erh Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.18 2000/03/20 00:50:45 erh Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.17 2000/03/18 22:46:27 erh Exp
+ * created from NetBSD: syscalls.master,v 1.18 2000/03/18 23:53:24 erh Exp
*/
/* syscall: "syscall" ret: "int" args: */
@@ -337,6 +337,9 @@
/* syscall: "reboot" ret: "int" args: "int" "int" "int" "void *" */
#define LINUX_SYS_reboot 311
+/* syscall: "clone" ret: "int" args: "int" "void *" */
+#define LINUX_SYS_clone 312
+
/* syscall: "uselib" ret: "int" args: "char *" */
#define LINUX_SYS_uselib 313
diff -r 4a13f1026ad4 -r b4f11171540f sys/compat/linux/arch/alpha/linux_syscallargs.h
--- a/sys/compat/linux/arch/alpha/linux_syscallargs.h Mon Mar 20 00:50:20 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscallargs.h Mon Mar 20 00:50:45 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.17 2000/03/18 23:53:38 erh Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.18 2000/03/20 00:50:45 erh Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.17 2000/03/18 22:46:27 erh Exp
+ * created from NetBSD: syscalls.master,v 1.18 2000/03/18 23:53:24 erh Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@@ -272,6 +272,11 @@
syscallarg(void *) arg;
};
+struct linux_sys_clone_args {
+ syscallarg(int) flags;
+ syscallarg(void *) stack;
+};
+
struct linux_sys_uselib_args {
syscallarg(char *) path;
};
@@ -539,6 +544,7 @@
int linux_sys_fdatasync __P((struct proc *, void *, register_t *));
int linux_sys_getdents __P((struct proc *, void *, register_t *));
int linux_sys_reboot __P((struct proc *, void *, register_t *));
+int linux_sys_clone __P((struct proc *, void *, register_t *));
#ifdef EXEC_AOUT
int linux_sys_uselib __P((struct proc *, void *, register_t *));
#else
diff -r 4a13f1026ad4 -r b4f11171540f sys/compat/linux/arch/alpha/linux_syscalls.c
--- a/sys/compat/linux/arch/alpha/linux_syscalls.c Mon Mar 20 00:50:20 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscalls.c Mon Mar 20 00:50:45 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscalls.c,v 1.17 2000/03/18 23:53:38 erh Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.18 2000/03/20 00:50:45 erh Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.17 2000/03/18 22:46:27 erh Exp
+ * created from NetBSD: syscalls.master,v 1.18 2000/03/18 23:53:24 erh Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
@@ -360,7 +360,7 @@
"#309 (unimplemented get_kernel_syms)", /* 309 = unimplemented get_kernel_syms */
"#310 (unimplemented syslog)", /* 310 = unimplemented syslog */
"reboot", /* 311 = reboot */
- "#312 (unimplemented { int linux_sys_clone ( int flags , void * stack ) ; })", /* 312 = unimplemented { int linux_sys_clone ( int flags , void * stack ) ; } */
+ "clone", /* 312 = clone */
#ifdef EXEC_AOUT
"uselib", /* 313 = uselib */
#else
diff -r 4a13f1026ad4 -r b4f11171540f sys/compat/linux/arch/alpha/linux_sysent.c
--- a/sys/compat/linux/arch/alpha/linux_sysent.c Mon Mar 20 00:50:20 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_sysent.c Mon Mar 20 00:50:45 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_sysent.c,v 1.18 2000/03/18 23:53:38 erh Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.19 2000/03/20 00:50:45 erh Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.17 2000/03/18 22:46:27 erh Exp
+ * created from NetBSD: syscalls.master,v 1.18 2000/03/18 23:53:24 erh Exp
*/
#include "opt_sysv.h"
@@ -683,8 +683,8 @@
sys_nosys }, /* 310 = unimplemented syslog */
{ 4, s(struct linux_sys_reboot_args),
linux_sys_reboot }, /* 311 = reboot */
- { 0, 0,
- sys_nosys }, /* 312 = unimplemented { int linux_sys_clone ( int flags , void * stack ) ; } */
+ { 2, s(struct linux_sys_clone_args),
+ linux_sys_clone }, /* 312 = clone */
#ifdef EXEC_AOUT
{ 1, s(struct linux_sys_uselib_args),
linux_sys_uselib }, /* 313 = uselib */
Home |
Main Index |
Thread Index |
Old Index