regen
This commit is contained in:
parent
5d231c5624
commit
9191aacdb4
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: sunos32_syscall.h,v 1.7 2002/01/03 01:11:30 mrg Exp $ */
|
||||
/* $NetBSD: sunos32_syscall.h,v 1.8 2002/01/03 15:30:08 mrg Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from; NetBSD: syscalls.master,v 1.6 2002/01/03 00:59:01 mrg Exp
|
||||
* created from; NetBSD: syscalls.master,v 1.7 2002/01/03 15:28:43 mrg Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: */
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: sunos32_syscallargs.h,v 1.7 2002/01/03 01:11:30 mrg Exp $ */
|
||||
/* $NetBSD: sunos32_syscallargs.h,v 1.8 2002/01/03 15:30:08 mrg Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from; NetBSD: syscalls.master,v 1.6 2002/01/03 00:59:01 mrg Exp
|
||||
* created from; NetBSD: syscalls.master,v 1.7 2002/01/03 15:28:43 mrg Exp
|
||||
*/
|
||||
|
||||
#ifndef _SUNOS32_SYS__SYSCALLARGS_H_
|
||||
|
@ -133,6 +133,12 @@ struct sunos32_sys_fcntl_args {
|
|||
syscallarg(netbsd32_voidp) arg;
|
||||
};
|
||||
|
||||
struct sunos32_sys_socket_args {
|
||||
syscallarg(int) domain;
|
||||
syscallarg(int) type;
|
||||
syscallarg(int) protocol;
|
||||
};
|
||||
|
||||
struct sunos32_sys_setsockopt_args {
|
||||
syscallarg(int) s;
|
||||
syscallarg(int) level;
|
||||
|
@ -151,6 +157,13 @@ struct sunos32_sys_sigsuspend_args {
|
|||
syscallarg(int) mask;
|
||||
};
|
||||
|
||||
struct sunos32_sys_socketpair_args {
|
||||
syscallarg(int) domain;
|
||||
syscallarg(int) type;
|
||||
syscallarg(int) protocol;
|
||||
syscallarg(netbsd32_intp) rsv;
|
||||
};
|
||||
|
||||
struct sunos32_sys_sigreturn_args {
|
||||
syscallarg(netbsd32_sigcontextp_t) sigcntxp;
|
||||
};
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: sunos32_syscalls.c,v 1.7 2002/01/03 01:11:30 mrg Exp $ */
|
||||
/* $NetBSD: sunos32_syscalls.c,v 1.8 2002/01/03 15:30:08 mrg Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from; NetBSD: syscalls.master,v 1.6 2002/01/03 00:59:01 mrg Exp
|
||||
* created from; NetBSD: syscalls.master,v 1.7 2002/01/03 15:28:43 mrg Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: sunos32_syscalls.c,v 1.7 2002/01/03 01:11:30 mrg Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: sunos32_syscalls.c,v 1.8 2002/01/03 15:30:08 mrg Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#if defined(_KERNEL_OPT)
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: sunos32_sysent.c,v 1.7 2002/01/03 01:11:30 mrg Exp $ */
|
||||
/* $NetBSD: sunos32_sysent.c,v 1.8 2002/01/03 15:30:09 mrg Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from; NetBSD: syscalls.master,v 1.6 2002/01/03 00:59:01 mrg Exp
|
||||
* created from; NetBSD: syscalls.master,v 1.7 2002/01/03 15:28:43 mrg Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: sunos32_sysent.c,v 1.7 2002/01/03 01:11:30 mrg Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: sunos32_sysent.c,v 1.8 2002/01/03 15:30:09 mrg Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include "opt_nfsserver.h"
|
||||
|
|
Loading…
Reference in New Issue