Regen for compat 50 update.
This commit is contained in:
parent
9554a2932f
commit
8ff5603c09
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: linux32_syscall.h,v 1.49 2009/01/13 22:33:10 pooka Exp $ */
|
||||
/* $NetBSD: linux32_syscall.h,v 1.50 2009/01/16 13:12:35 njoly Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.46 2009/01/13 22:27:43 pooka Exp
|
||||
* created from NetBSD: syscalls.master,v 1.47 2009/01/16 13:10:47 njoly Exp
|
||||
*/
|
||||
|
||||
#ifndef _LINUX32_SYS_SYSCALL_H_
|
||||
@ -202,10 +202,10 @@
|
||||
/* syscall: "compat_50_netbsd32_getrusage" ret: "int" args: "int" "netbsd32_rusage50p_t" */
|
||||
#define LINUX32_SYS_compat_50_netbsd32_getrusage 77
|
||||
|
||||
/* syscall: "gettimeofday" ret: "int" args: "netbsd32_timevalp_t" "netbsd32_timezonep_t" */
|
||||
/* syscall: "gettimeofday" ret: "int" args: "netbsd32_timeval50p_t" "netbsd32_timezonep_t" */
|
||||
#define LINUX32_SYS_gettimeofday 78
|
||||
|
||||
/* syscall: "settimeofday" ret: "int" args: "netbsd32_timevalp_t" "netbsd32_timezonep_t" */
|
||||
/* syscall: "settimeofday" ret: "int" args: "netbsd32_timeval50p_t" "netbsd32_timezonep_t" */
|
||||
#define LINUX32_SYS_settimeofday 79
|
||||
|
||||
/* syscall: "getgroups16" ret: "int" args: "int" "linux32_gid16p_t" */
|
||||
@ -319,7 +319,7 @@
|
||||
/* syscall: "getdents" ret: "int" args: "int" "linux32_direntp_t" "unsigned int" */
|
||||
#define LINUX32_SYS_getdents 141
|
||||
|
||||
/* syscall: "select" ret: "int" args: "int" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_timevalp_t" */
|
||||
/* syscall: "select" ret: "int" args: "int" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_timeval50p_t" */
|
||||
#define LINUX32_SYS_select 142
|
||||
|
||||
/* syscall: "netbsd32_flock" ret: "int" args: "int" "int" */
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: linux32_syscallargs.h,v 1.49 2009/01/13 22:33:10 pooka Exp $ */
|
||||
/* $NetBSD: linux32_syscallargs.h,v 1.50 2009/01/16 13:12:35 njoly Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.46 2009/01/13 22:27:43 pooka Exp
|
||||
* created from NetBSD: syscalls.master,v 1.47 2009/01/16 13:10:47 njoly Exp
|
||||
*/
|
||||
|
||||
#ifndef _LINUX32_SYS_SYSCALLARGS_H_
|
||||
@ -226,13 +226,13 @@ check_syscall_args(linux32_sys_getrlimit)
|
||||
struct compat_50_netbsd32_getrusage_args;
|
||||
|
||||
struct linux32_sys_gettimeofday_args {
|
||||
syscallarg(netbsd32_timevalp_t) tp;
|
||||
syscallarg(netbsd32_timeval50p_t) tp;
|
||||
syscallarg(netbsd32_timezonep_t) tzp;
|
||||
};
|
||||
check_syscall_args(linux32_sys_gettimeofday)
|
||||
|
||||
struct linux32_sys_settimeofday_args {
|
||||
syscallarg(netbsd32_timevalp_t) tp;
|
||||
syscallarg(netbsd32_timeval50p_t) tp;
|
||||
syscallarg(netbsd32_timezonep_t) tzp;
|
||||
};
|
||||
check_syscall_args(linux32_sys_settimeofday)
|
||||
@ -410,7 +410,7 @@ struct linux32_sys_select_args {
|
||||
syscallarg(netbsd32_fd_setp_t) readfds;
|
||||
syscallarg(netbsd32_fd_setp_t) writefds;
|
||||
syscallarg(netbsd32_fd_setp_t) exceptfds;
|
||||
syscallarg(netbsd32_timevalp_t) timeout;
|
||||
syscallarg(netbsd32_timeval50p_t) timeout;
|
||||
};
|
||||
check_syscall_args(linux32_sys_select)
|
||||
|
||||
|
@ -1,14 +1,14 @@
|
||||
/* $NetBSD: linux32_syscalls.c,v 1.49 2009/01/13 22:33:10 pooka Exp $ */
|
||||
/* $NetBSD: linux32_syscalls.c,v 1.50 2009/01/16 13:12:35 njoly Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.46 2009/01/13 22:27:43 pooka Exp
|
||||
* created from NetBSD: syscalls.master,v 1.47 2009/01/16 13:10:47 njoly Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: linux32_syscalls.c,v 1.49 2009/01/13 22:33:10 pooka Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: linux32_syscalls.c,v 1.50 2009/01/16 13:12:35 njoly Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include <sys/param.h>
|
||||
|
@ -1,14 +1,14 @@
|
||||
/* $NetBSD: linux32_sysent.c,v 1.49 2009/01/13 22:33:10 pooka Exp $ */
|
||||
/* $NetBSD: linux32_sysent.c,v 1.50 2009/01/16 13:12:35 njoly Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.46 2009/01/13 22:27:43 pooka Exp
|
||||
* created from NetBSD: syscalls.master,v 1.47 2009/01/16 13:10:47 njoly Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: linux32_sysent.c,v 1.49 2009/01/13 22:33:10 pooka Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: linux32_sysent.c,v 1.50 2009/01/16 13:12:35 njoly Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/poll.h>
|
||||
|
Loading…
Reference in New Issue
Block a user