Syscalls.master changed, regen. (NFSCLIENT -> NFS)
This commit is contained in:
parent
12cb3aaf21
commit
b266dedfc8
|
@ -2,7 +2,7 @@
|
|||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.5 1996/09/20 16:19:27 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.6 1997/01/31 02:17:47 thorpej Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: */
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.5 1996/09/20 16:19:27 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.6 1997/01/31 02:17:47 thorpej Exp
|
||||
*/
|
||||
|
||||
#define syscallarg(x) union { x datum; register_t pad; }
|
||||
|
@ -348,14 +348,14 @@ int sys_setsid __P((struct proc *, void *, register_t *));
|
|||
int sys_quotactl __P((struct proc *, void *, register_t *));
|
||||
int compat_43_sys_quota __P((struct proc *, void *, register_t *));
|
||||
int compat_43_sys_getsockname __P((struct proc *, void *, register_t *));
|
||||
#if defined(NFSCLIENT) || defined(NFSSERVER)
|
||||
#if defined(NFS) || defined(NFSSERVER)
|
||||
int sys_nfssvc __P((struct proc *, void *, register_t *));
|
||||
#else
|
||||
#endif
|
||||
int compat_43_sys_getdirentries __P((struct proc *, void *, register_t *));
|
||||
int freebsd_sys_statfs __P((struct proc *, void *, register_t *));
|
||||
int sys_fstatfs __P((struct proc *, void *, register_t *));
|
||||
#ifdef NFSCLIENT
|
||||
#ifdef NFS
|
||||
int freebsd_sys_getfh __P((struct proc *, void *, register_t *));
|
||||
#else
|
||||
#endif
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.5 1996/09/20 16:19:27 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.6 1997/01/31 02:17:47 thorpej Exp
|
||||
*/
|
||||
|
||||
char *freebsd_syscallnames[] = {
|
||||
|
@ -169,7 +169,7 @@ char *freebsd_syscallnames[] = {
|
|||
"#152 (unimplemented)", /* 152 = unimplemented */
|
||||
"#153 (unimplemented)", /* 153 = unimplemented */
|
||||
"#154 (unimplemented)", /* 154 = unimplemented */
|
||||
#if defined(NFSCLIENT) || defined(NFSSERVER)
|
||||
#if defined(NFS) || defined(NFSSERVER)
|
||||
"nfssvc", /* 155 = nfssvc */
|
||||
#else
|
||||
"#155 (unimplemented)", /* 155 = unimplemented */
|
||||
|
@ -179,7 +179,7 @@ char *freebsd_syscallnames[] = {
|
|||
"fstatfs", /* 158 = fstatfs */
|
||||
"#159 (unimplemented)", /* 159 = unimplemented */
|
||||
"#160 (unimplemented)", /* 160 = unimplemented */
|
||||
#ifdef NFSCLIENT
|
||||
#ifdef NFS
|
||||
"getfh", /* 161 = getfh */
|
||||
#else
|
||||
"#161 (unimplemented getfh)", /* 161 = unimplemented getfh */
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.5 1996/09/20 16:19:27 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.6 1997/01/31 02:17:47 thorpej Exp
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -336,7 +336,7 @@ struct sysent freebsd_sysent[] = {
|
|||
sys_nosys }, /* 153 = unimplemented */
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 154 = unimplemented */
|
||||
#if defined(NFSCLIENT) || defined(NFSSERVER)
|
||||
#if defined(NFS) || defined(NFSSERVER)
|
||||
{ 2, s(struct sys_nfssvc_args),
|
||||
sys_nfssvc }, /* 155 = nfssvc */
|
||||
#else
|
||||
|
@ -353,7 +353,7 @@ struct sysent freebsd_sysent[] = {
|
|||
sys_nosys }, /* 159 = unimplemented */
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 160 = unimplemented */
|
||||
#ifdef NFSCLIENT
|
||||
#ifdef NFS
|
||||
{ 2, s(struct freebsd_sys_getfh_args),
|
||||
freebsd_sys_getfh }, /* 161 = getfh */
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue