Regen for pipe2.
This commit is contained in:
parent
f85e6e86e8
commit
4127bcdacf
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: netbsd32_syscall.h,v 1.93 2011/03/06 17:08:34 bouyer Exp $ */
|
/* $NetBSD: netbsd32_syscall.h,v 1.94 2011/07/05 14:23:26 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call numbers.
|
* System call numbers.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.84.6.2 2011/02/09 16:09:55 bouyer Exp
|
* created from NetBSD: syscalls.master,v 1.86 2011/07/05 14:21:47 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _NETBSD32_SYS_SYSCALL_H_
|
#ifndef _NETBSD32_SYS_SYSCALL_H_
|
||||||
|
@ -1199,6 +1199,9 @@
|
||||||
/* syscall: "netbsd32___quotactl50" ret: "int" args: "const netbsd32_charp" "netbsd32_voidp" */
|
/* syscall: "netbsd32___quotactl50" ret: "int" args: "const netbsd32_charp" "netbsd32_voidp" */
|
||||||
#define NETBSD32_SYS_netbsd32___quotactl50 452
|
#define NETBSD32_SYS_netbsd32___quotactl50 452
|
||||||
|
|
||||||
#define NETBSD32_SYS_MAXSYSCALL 453
|
/* syscall: "netbsd32_pipe2" ret: "int" args: "netbsd32_intp" "int" */
|
||||||
|
#define NETBSD32_SYS_netbsd32_pipe2 453
|
||||||
|
|
||||||
|
#define NETBSD32_SYS_MAXSYSCALL 454
|
||||||
#define NETBSD32_SYS_NSYSENT 512
|
#define NETBSD32_SYS_NSYSENT 512
|
||||||
#endif /* _NETBSD32_SYS_SYSCALL_H_ */
|
#endif /* _NETBSD32_SYS_SYSCALL_H_ */
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: netbsd32_syscallargs.h,v 1.93 2011/03/06 17:08:34 bouyer Exp $ */
|
/* $NetBSD: netbsd32_syscallargs.h,v 1.94 2011/07/05 14:23:27 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call argument lists.
|
* System call argument lists.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.84.6.2 2011/02/09 16:09:55 bouyer Exp
|
* created from NetBSD: syscalls.master,v 1.86 2011/07/05 14:21:47 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _NETBSD32_SYS_SYSCALLARGS_H_
|
#ifndef _NETBSD32_SYS_SYSCALLARGS_H_
|
||||||
|
@ -2309,6 +2309,12 @@ struct netbsd32___quotactl50_args {
|
||||||
};
|
};
|
||||||
check_syscall_args(netbsd32___quotactl50)
|
check_syscall_args(netbsd32___quotactl50)
|
||||||
|
|
||||||
|
struct netbsd32_pipe2_args {
|
||||||
|
syscallarg(netbsd32_intp) fildes;
|
||||||
|
syscallarg(int) flags;
|
||||||
|
};
|
||||||
|
check_syscall_args(netbsd32_pipe2)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call prototypes.
|
* System call prototypes.
|
||||||
*/
|
*/
|
||||||
|
@ -3087,4 +3093,6 @@ int netbsd32___fhstat50(struct lwp *, const struct netbsd32___fhstat50_args *, r
|
||||||
|
|
||||||
int netbsd32___quotactl50(struct lwp *, const struct netbsd32___quotactl50_args *, register_t *);
|
int netbsd32___quotactl50(struct lwp *, const struct netbsd32___quotactl50_args *, register_t *);
|
||||||
|
|
||||||
|
int netbsd32_pipe2(struct lwp *, const struct netbsd32_pipe2_args *, register_t *);
|
||||||
|
|
||||||
#endif /* _NETBSD32_SYS_SYSCALLARGS_H_ */
|
#endif /* _NETBSD32_SYS_SYSCALLARGS_H_ */
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: netbsd32_syscalls.c,v 1.92 2011/03/06 17:08:34 bouyer Exp $ */
|
/* $NetBSD: netbsd32_syscalls.c,v 1.93 2011/07/05 14:23:27 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call names.
|
* System call names.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.84.6.2 2011/02/09 16:09:55 bouyer Exp
|
* created from NetBSD: syscalls.master,v 1.86 2011/07/05 14:21:47 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.92 2011/03/06 17:08:34 bouyer Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.93 2011/07/05 14:23:27 njoly Exp $");
|
||||||
|
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
|
@ -564,7 +564,7 @@ const char *const netbsd32_syscallnames[] = {
|
||||||
/* 450 */ "netbsd32___mknod50",
|
/* 450 */ "netbsd32___mknod50",
|
||||||
/* 451 */ "netbsd32___fhstat50",
|
/* 451 */ "netbsd32___fhstat50",
|
||||||
/* 452 */ "netbsd32___quotactl50",
|
/* 452 */ "netbsd32___quotactl50",
|
||||||
/* 453 */ "# filler",
|
/* 453 */ "netbsd32_pipe2",
|
||||||
/* 454 */ "# filler",
|
/* 454 */ "# filler",
|
||||||
/* 455 */ "# filler",
|
/* 455 */ "# filler",
|
||||||
/* 456 */ "# filler",
|
/* 456 */ "# filler",
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: netbsd32_sysent.c,v 1.92 2011/03/06 17:08:35 bouyer Exp $ */
|
/* $NetBSD: netbsd32_sysent.c,v 1.93 2011/07/05 14:23:27 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call switch table.
|
* System call switch table.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.84.6.2 2011/02/09 16:09:55 bouyer Exp
|
* created from NetBSD: syscalls.master,v 1.86 2011/07/05 14:21:47 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.92 2011/03/06 17:08:35 bouyer Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.93 2011/07/05 14:23:27 njoly Exp $");
|
||||||
|
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
#include "opt_compat_netbsd.h"
|
#include "opt_compat_netbsd.h"
|
||||||
|
@ -1132,8 +1132,8 @@ struct sysent netbsd32_sysent[] = {
|
||||||
(sy_call_t *)netbsd32___fhstat50 }, /* 451 = netbsd32___fhstat50 */
|
(sy_call_t *)netbsd32___fhstat50 }, /* 451 = netbsd32___fhstat50 */
|
||||||
{ ns(struct netbsd32___quotactl50_args), 0,
|
{ ns(struct netbsd32___quotactl50_args), 0,
|
||||||
(sy_call_t *)netbsd32___quotactl50 },/* 452 = netbsd32___quotactl50 */
|
(sy_call_t *)netbsd32___quotactl50 },/* 452 = netbsd32___quotactl50 */
|
||||||
{ 0, 0, 0,
|
{ ns(struct netbsd32_pipe2_args), 0,
|
||||||
sys_nosys }, /* 453 = filler */
|
(sy_call_t *)netbsd32_pipe2 }, /* 453 = netbsd32_pipe2 */
|
||||||
{ 0, 0, 0,
|
{ 0, 0, 0,
|
||||||
sys_nosys }, /* 454 = filler */
|
sys_nosys }, /* 454 = filler */
|
||||||
{ 0, 0, 0,
|
{ 0, 0, 0,
|
||||||
|
|
Loading…
Reference in New Issue