This commit is contained in:
erh 1998-10-07 23:08:26 +00:00
parent 358899800e
commit ecdbc1172b
4 changed files with 10 additions and 19 deletions

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscall.h,v 1.3 1998/10/04 00:02:23 fvdl Exp $ */
/* $NetBSD: linux_syscall.h,v 1.4 1998/10/07 23:08:26 erh Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.2 1998/10/03 20:17:38 christos Exp
* created from NetBSD: syscalls.master,v 1.3 1998/10/07 23:07:30 erh Exp
*/
/* syscall: "syscall" ret: "int" args: */
@ -376,7 +376,7 @@
/* syscall: "rt_sigpending" ret: "int" args: "linux_sigset_t *" "size_t" */
#define LINUX_SYS_rt_sigpending 354
/* syscall: "rt_queueinfo" ret: "int" args: "int" "int" "siginfo_t *" */
/* syscall: "rt_queueinfo" ret: "int" args: "int" "int" "linux_siginfo_t *" */
#define LINUX_SYS_rt_queueinfo 356
/* syscall: "rt_sigsuspend" ret: "int" args: "linux_sigset_t *" "size_t" */

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscallargs.h,v 1.3 1998/10/04 00:02:23 fvdl Exp $ */
/* $NetBSD: linux_syscallargs.h,v 1.4 1998/10/07 23:08:26 erh Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.2 1998/10/03 20:17:38 christos Exp
* created from NetBSD: syscalls.master,v 1.3 1998/10/07 23:07:30 erh Exp
*/
#ifdef syscallarg
@ -110,15 +110,6 @@ struct linux_sys_lstat_args {
syscallarg(struct linux_stat *) sp;
};
struct linux_sys_mmap_args {
syscallarg(unsigned long) addr;
syscallarg(size_t) len;
syscallarg(int) prot;
syscallarg(int) flags;
syscallarg(int) fd;
syscallarg(off_t) offset;
};
struct linux_sys_fstat_args {
syscallarg(int) fd;
syscallarg(struct linux_stat *) sp;
@ -321,7 +312,7 @@ struct linux_sys_rt_sigpending_args {
struct linux_sys_rt_queueinfo_args {
syscallarg(int) pid;
syscallarg(int) signum;
syscallarg(siginfo_t *) uinfo;
syscallarg(linux_siginfo_t *) uinfo;
};
struct linux_sys_rt_sigsuspend_args {

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscalls.c,v 1.3 1998/10/04 00:02:24 fvdl Exp $ */
/* $NetBSD: linux_syscalls.c,v 1.4 1998/10/07 23:08:26 erh Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.2 1998/10/03 20:17:38 christos Exp
* created from NetBSD: syscalls.master,v 1.3 1998/10/07 23:07:30 erh Exp
*/
#if defined(_KERNEL) && !defined(_LKM)

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_sysent.c,v 1.3 1998/10/04 00:02:24 fvdl Exp $ */
/* $NetBSD: linux_sysent.c,v 1.4 1998/10/07 23:08:26 erh Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.2 1998/10/03 20:17:38 christos Exp
* created from NetBSD: syscalls.master,v 1.3 1998/10/07 23:07:30 erh Exp
*/
#include <sys/param.h>