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/mips regen
details: https://anonhg.NetBSD.org/src/rev/fbd99783c9e9
branches: trunk
changeset: 351169:fbd99783c9e9
user: christos <christos%NetBSD.org@localhost>
date: Sat Feb 04 18:14:55 2017 +0000
description:
regen
diffstat:
sys/compat/linux/arch/mips/linux_syscall.h | 6 +-
sys/compat/linux/arch/mips/linux_syscallargs.h | 124 +++++++++++++++++++++---
sys/compat/linux/arch/mips/linux_syscalls.c | 6 +-
sys/compat/linux/arch/mips/linux_sysent.c | 6 +-
4 files changed, 115 insertions(+), 27 deletions(-)
diffs (225 lines):
diff -r 45fe83e92923 -r fbd99783c9e9 sys/compat/linux/arch/mips/linux_syscall.h
--- a/sys/compat/linux/arch/mips/linux_syscall.h Sat Feb 04 18:14:44 2017 +0000
+++ b/sys/compat/linux/arch/mips/linux_syscall.h Sat Feb 04 18:14:55 2017 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.73 2017/02/03 16:49:19 christos Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.74 2017/02/04 18:14:55 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.63 2017/02/03 16:49:08 christos Exp
+ * created from NetBSD: syscalls.master,v 1.64 2017/02/04 18:14:44 christos Exp
*/
#ifndef _LINUX_SYS_SYSCALL_H_
@@ -421,7 +421,7 @@
/* syscall: "bind" ret: "int" args: "int" "const struct osockaddr *" "int" */
#define LINUX_SYS_bind 169
-/* syscall: "connect" ret: "int" args: "int" "const struct sockaddr *" "int" */
+/* syscall: "connect" ret: "int" args: "int" "const struct osockaddr *" "int" */
#define LINUX_SYS_connect 170
/* syscall: "getpeername" ret: "int" args: "int" "void *" "int *" */
diff -r 45fe83e92923 -r fbd99783c9e9 sys/compat/linux/arch/mips/linux_syscallargs.h
--- a/sys/compat/linux/arch/mips/linux_syscallargs.h Sat Feb 04 18:14:44 2017 +0000
+++ b/sys/compat/linux/arch/mips/linux_syscallargs.h Sat Feb 04 18:14:55 2017 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.72 2017/02/03 16:49:19 christos Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.73 2017/02/04 18:14:55 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.63 2017/02/03 16:49:08 christos Exp
+ * created from NetBSD: syscalls.master,v 1.64 2017/02/04 18:14:44 christos Exp
*/
#ifndef _LINUX_SYS_SYSCALLARGS_H_
@@ -549,37 +549,125 @@
};
check_syscall_args(linux_sys_mremap)
-struct linux_sys_accept_args;
+struct linux_sys_accept_args {
+ syscallarg(int) s;
+ syscallarg(struct osockaddr *) name;
+ syscallarg(int *) anamelen;
+};
+check_syscall_args(linux_sys_accept)
-struct linux_sys_bind_args;
+struct linux_sys_bind_args {
+ syscallarg(int) s;
+ syscallarg(const struct osockaddr *) name;
+ syscallarg(int) namelen;
+};
+check_syscall_args(linux_sys_bind)
-struct linux_sys_connect_args;
+struct linux_sys_connect_args {
+ syscallarg(int) s;
+ syscallarg(const struct osockaddr *) name;
+ syscallarg(int) namelen;
+};
+check_syscall_args(linux_sys_connect)
-struct linux_sys_getpeername_args;
+struct linux_sys_getpeername_args {
+ syscallarg(int) fdes;
+ syscallarg(void *) asa;
+ syscallarg(int *) alen;
+};
+check_syscall_args(linux_sys_getpeername)
-struct linux_sys_getsockname_args;
+struct linux_sys_getsockname_args {
+ syscallarg(int) fdes;
+ syscallarg(void *) asa;
+ syscallarg(int *) alen;
+};
+check_syscall_args(linux_sys_getsockname)
-struct linux_sys_getsockopt_args;
+struct linux_sys_getsockopt_args {
+ syscallarg(int) s;
+ syscallarg(int) level;
+ syscallarg(int) optname;
+ syscallarg(void *) optval;
+ syscallarg(int *) optlen;
+};
+check_syscall_args(linux_sys_getsockopt)
struct sys_listen_args;
-struct linux_sys_recv_args;
-
-struct linux_sys_recvfrom_args;
+struct linux_sys_recv_args {
+ syscallarg(int) s;
+ syscallarg(void *) buf;
+ syscallarg(int) len;
+ syscallarg(int) flags;
+};
+check_syscall_args(linux_sys_recv)
-struct linux_sys_recvmsg_args;
+struct linux_sys_recvfrom_args {
+ syscallarg(int) s;
+ syscallarg(void *) buf;
+ syscallarg(int) len;
+ syscallarg(int) flags;
+ syscallarg(struct osockaddr *) from;
+ syscallarg(int *) fromlenaddr;
+};
+check_syscall_args(linux_sys_recvfrom)
-struct linux_sys_send_args;
+struct linux_sys_recvmsg_args {
+ syscallarg(int) s;
+ syscallarg(struct linux_msghdr *) msg;
+ syscallarg(u_int) flags;
+};
+check_syscall_args(linux_sys_recvmsg)
+
+struct linux_sys_send_args {
+ syscallarg(int) s;
+ syscallarg(void *) buf;
+ syscallarg(int) len;
+ syscallarg(int) flags;
+};
+check_syscall_args(linux_sys_send)
-struct linux_sys_sendmsg_args;
+struct linux_sys_sendmsg_args {
+ syscallarg(int) s;
+ syscallarg(struct linux_msghdr *) msg;
+ syscallarg(u_int) flags;
+};
+check_syscall_args(linux_sys_sendmsg)
-struct linux_sys_sendto_args;
+struct linux_sys_sendto_args {
+ syscallarg(int) s;
+ syscallarg(void *) msg;
+ syscallarg(int) len;
+ syscallarg(int) flags;
+ syscallarg(struct osockaddr *) to;
+ syscallarg(int) tolen;
+};
+check_syscall_args(linux_sys_sendto)
-struct linux_sys_setsockopt_args;
+struct linux_sys_setsockopt_args {
+ syscallarg(int) s;
+ syscallarg(int) level;
+ syscallarg(int) optname;
+ syscallarg(void *) optval;
+ syscallarg(int) optlen;
+};
+check_syscall_args(linux_sys_setsockopt)
-struct linux_sys_socket_args;
+struct linux_sys_socket_args {
+ syscallarg(int) domain;
+ syscallarg(int) type;
+ syscallarg(int) protocol;
+};
+check_syscall_args(linux_sys_socket)
-struct linux_sys_socketpair_args;
+struct linux_sys_socketpair_args {
+ syscallarg(int) domain;
+ syscallarg(int) type;
+ syscallarg(int) protocol;
+ syscallarg(int *) rsv;
+};
+check_syscall_args(linux_sys_socketpair)
struct linux_sys_setresuid_args {
syscallarg(uid_t) ruid;
diff -r 45fe83e92923 -r fbd99783c9e9 sys/compat/linux/arch/mips/linux_syscalls.c
--- a/sys/compat/linux/arch/mips/linux_syscalls.c Sat Feb 04 18:14:44 2017 +0000
+++ b/sys/compat/linux/arch/mips/linux_syscalls.c Sat Feb 04 18:14:55 2017 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.72 2017/02/03 16:49:19 christos Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.73 2017/02/04 18:14:55 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.63 2017/02/03 16:49:08 christos Exp
+ * created from NetBSD: syscalls.master,v 1.64 2017/02/04 18:14:44 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.72 2017/02/03 16:49:19 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.73 2017/02/04 18:14:55 christos Exp $");
#if defined(_KERNEL_OPT)
#include <sys/param.h>
diff -r 45fe83e92923 -r fbd99783c9e9 sys/compat/linux/arch/mips/linux_sysent.c
--- a/sys/compat/linux/arch/mips/linux_sysent.c Sat Feb 04 18:14:44 2017 +0000
+++ b/sys/compat/linux/arch/mips/linux_sysent.c Sat Feb 04 18:14:55 2017 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.72 2017/02/03 16:49:19 christos Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.73 2017/02/04 18:14:55 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.63 2017/02/03 16:49:08 christos Exp
+ * created from NetBSD: syscalls.master,v 1.64 2017/02/04 18:14:44 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.72 2017/02/03 16:49:19 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.73 2017/02/04 18:14:55 christos Exp $");
#include <sys/param.h>
#include <sys/poll.h>
Home |
Main Index |
Thread Index |
Old Index