This commit is contained in:
chs 2010-04-23 03:03:03 +00:00
parent 822c314290
commit e59be4800f
4 changed files with 12 additions and 11 deletions

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscall.h,v 1.86 2009/12/14 00:58:36 matt Exp $ */
/* $NetBSD: linux_syscall.h,v 1.87 2010/04/23 03:03:03 chs Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.101 2009/11/24 10:42:43 njoly Exp
* created from NetBSD: syscalls.master,v 1.102 2010/04/23 03:02:16 chs Exp
*/
#ifndef _LINUX_SYS_SYSCALL_H_
@ -346,7 +346,7 @@
/* syscall: "sigreturn" ret: "int" args: "struct linux_sigcontext *" */
#define LINUX_SYS_sigreturn 119
/* syscall: "clone" ret: "int" args: "int" "void *" "void *" "void *" */
/* syscall: "clone" ret: "int" args: "int" "void *" "void *" "void *" "void *" */
#define LINUX_SYS_clone 120
/* syscall: "setdomainname" ret: "int" args: "char *" "int" */

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscallargs.h,v 1.86 2009/12/14 00:58:36 matt Exp $ */
/* $NetBSD: linux_syscallargs.h,v 1.87 2010/04/23 03:03:03 chs Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.101 2009/11/24 10:42:43 njoly Exp
* created from NetBSD: syscalls.master,v 1.102 2010/04/23 03:02:16 chs Exp
*/
#ifndef _LINUX_SYS_SYSCALLARGS_H_
@ -443,6 +443,7 @@ struct linux_sys_clone_args {
syscallarg(int) flags;
syscallarg(void *) stack;
syscallarg(void *) parent_tidptr;
syscallarg(void *) tls;
syscallarg(void *) child_tidptr;
};
check_syscall_args(linux_sys_clone)

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_syscalls.c,v 1.87 2009/12/14 00:58:36 matt Exp $ */
/* $NetBSD: linux_syscalls.c,v 1.88 2010/04/23 03:03:03 chs Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.101 2009/11/24 10:42:43 njoly Exp
* created from NetBSD: syscalls.master,v 1.102 2010/04/23 03:02:16 chs Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.87 2009/12/14 00:58:36 matt Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.88 2010/04/23 03:03:03 chs Exp $");
#if defined(_KERNEL_OPT)
#include <sys/param.h>

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_sysent.c,v 1.86 2009/12/14 00:58:36 matt Exp $ */
/* $NetBSD: linux_sysent.c,v 1.87 2010/04/23 03:03:03 chs Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.101 2009/11/24 10:42:43 njoly Exp
* created from NetBSD: syscalls.master,v 1.102 2010/04/23 03:02:16 chs Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.86 2009/12/14 00:58:36 matt Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.87 2010/04/23 03:03:03 chs Exp $");
#include <sys/param.h>
#include <sys/poll.h>