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/0e1169b82a2f
branches: trunk
changeset: 483807:0e1169b82a2f
user: erh <erh%NetBSD.org@localhost>
date: Sat Mar 18 22:46:53 2000 +0000
description:
Regen.
diffstat:
sys/compat/linux/arch/alpha/linux_syscall.h | 6 +++---
sys/compat/linux/arch/alpha/linux_syscallargs.h | 21 +++++++++++++++++----
sys/compat/linux/arch/alpha/linux_syscalls.c | 4 ++--
sys/compat/linux/arch/alpha/linux_sysent.c | 12 ++++++------
4 files changed, 28 insertions(+), 15 deletions(-)
diffs (140 lines):
diff -r b25e92456580 -r 0e1169b82a2f sys/compat/linux/arch/alpha/linux_syscall.h
--- a/sys/compat/linux/arch/alpha/linux_syscall.h Sat Mar 18 22:46:27 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscall.h Sat Mar 18 22:46:53 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.15 2000/03/18 20:44:01 erh Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.16 2000/03/18 22:46:53 erh Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.15 1999/12/16 15:13:01 tron Exp
+ * created from NetBSD: syscalls.master,v 1.16 2000/03/18 20:43:33 erh Exp
*/
/* syscall: "syscall" ret: "int" args: */
@@ -334,7 +334,7 @@
/* syscall: "getdents" ret: "int" args: "int" "struct linux_dirent *" "unsigned int" */
#define LINUX_SYS_getdents 305
-/* syscall: "reboot" ret: "int" args: "int" */
+/* syscall: "reboot" ret: "int" args: "int" "int" "int" "void *" */
#define LINUX_SYS_reboot 311
/* syscall: "uselib" ret: "int" args: "char *" */
diff -r b25e92456580 -r 0e1169b82a2f sys/compat/linux/arch/alpha/linux_syscallargs.h
--- a/sys/compat/linux/arch/alpha/linux_syscallargs.h Sat Mar 18 22:46:27 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscallargs.h Sat Mar 18 22:46:53 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.15 2000/03/18 20:44:01 erh Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.16 2000/03/18 22:46:53 erh Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.15 1999/12/16 15:13:01 tron Exp
+ * created from NetBSD: syscalls.master,v 1.16 2000/03/18 20:43:33 erh Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@@ -137,6 +137,12 @@
syscallarg(int) protocol;
};
+struct linux_sys_connect_args {
+ syscallarg(int) s;
+ syscallarg(const struct sockaddr *) name;
+ syscallarg(unsigned int) namelen;
+};
+
struct linux_sys_sigreturn_args {
syscallarg(struct linux_sigframe *) sfp;
};
@@ -259,6 +265,13 @@
syscallarg(unsigned int) count;
};
+struct linux_sys_reboot_args {
+ syscallarg(int) magic1;
+ syscallarg(int) magic2;
+ syscallarg(int) cmd;
+ syscallarg(void *) arg;
+};
+
struct linux_sys_uselib_args {
syscallarg(char *) path;
};
@@ -462,7 +475,7 @@
int sys_fsync __P((struct proc *, void *, register_t *));
int sys_setpriority __P((struct proc *, void *, register_t *));
int linux_sys_socket __P((struct proc *, void *, register_t *));
-int sys_connect __P((struct proc *, void *, register_t *));
+int linux_sys_connect __P((struct proc *, void *, register_t *));
int compat_43_sys_accept __P((struct proc *, void *, register_t *));
int sys_getpriority __P((struct proc *, void *, register_t *));
int compat_43_sys_send __P((struct proc *, void *, register_t *));
@@ -525,7 +538,7 @@
int sys_getsid __P((struct proc *, void *, register_t *));
int linux_sys_fdatasync __P((struct proc *, void *, register_t *));
int linux_sys_getdents __P((struct proc *, void *, register_t *));
-int sys_reboot __P((struct proc *, void *, register_t *));
+int linux_sys_reboot __P((struct proc *, void *, register_t *));
#ifdef EXEC_AOUT
int linux_sys_uselib __P((struct proc *, void *, register_t *));
#else
diff -r b25e92456580 -r 0e1169b82a2f sys/compat/linux/arch/alpha/linux_syscalls.c
--- a/sys/compat/linux/arch/alpha/linux_syscalls.c Sat Mar 18 22:46:27 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscalls.c Sat Mar 18 22:46:53 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscalls.c,v 1.15 2000/03/18 20:44:01 erh Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.16 2000/03/18 22:46:53 erh Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.15 1999/12/16 15:13:01 tron Exp
+ * created from NetBSD: syscalls.master,v 1.16 2000/03/18 20:43:33 erh Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
diff -r b25e92456580 -r 0e1169b82a2f sys/compat/linux/arch/alpha/linux_sysent.c
--- a/sys/compat/linux/arch/alpha/linux_sysent.c Sat Mar 18 22:46:27 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_sysent.c Sat Mar 18 22:46:53 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_sysent.c,v 1.16 2000/03/18 20:44:01 erh Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.17 2000/03/18 22:46:53 erh Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.15 1999/12/16 15:13:01 tron Exp
+ * created from NetBSD: syscalls.master,v 1.16 2000/03/18 20:43:33 erh Exp
*/
#include "opt_sysv.h"
@@ -224,8 +224,8 @@
sys_setpriority }, /* 96 = setpriority */
{ 3, s(struct linux_sys_socket_args),
linux_sys_socket }, /* 97 = socket */
- { 3, s(struct sys_connect_args),
- sys_connect }, /* 98 = connect */
+ { 3, s(struct linux_sys_connect_args),
+ linux_sys_connect }, /* 98 = connect */
{ 3, s(struct compat_43_sys_accept_args),
compat_43_sys_accept }, /* 99 = accept */
{ 2, s(struct sys_getpriority_args),
@@ -681,8 +681,8 @@
sys_nosys }, /* 309 = unimplemented get_kernel_syms */
{ 0, 0,
sys_nosys }, /* 310 = unimplemented syslog */
- { 1, s(struct sys_reboot_args),
- sys_reboot }, /* 311 = reboot */
+ { 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 ) ; } */
#ifdef EXEC_AOUT
Home |
Main Index |
Thread Index |
Old Index