Move netbsd32_sysarch to netbsd32_machdep.c
This commit is contained in:
parent
c9bdddaac5
commit
e877145e56
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: netbsd32_netbsd.c,v 1.63 2002/03/16 20:43:54 christos Exp $ */
|
||||
/* $NetBSD: netbsd32_netbsd.c,v 1.64 2002/07/07 23:23:41 fvdl Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998, 2001 Matthew R. Green
|
||||
|
@ -29,7 +29,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: netbsd32_netbsd.c,v 1.63 2002/03/16 20:43:54 christos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: netbsd32_netbsd.c,v 1.64 2002/07/07 23:23:41 fvdl Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include "opt_ddb.h"
|
||||
|
@ -1451,24 +1451,6 @@ netbsd32_getfh(p, v, retval)
|
|||
}
|
||||
#endif
|
||||
|
||||
int
|
||||
netbsd32_sysarch(p, v, retval)
|
||||
struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct netbsd32_sysarch_args /* {
|
||||
syscallarg(int) op;
|
||||
syscallarg(netbsd32_voidp) parms;
|
||||
} */ *uap = v;
|
||||
|
||||
switch (SCARG(uap, op)) {
|
||||
default:
|
||||
printf("(%s) netbsd32_sysarch(%d)\n", MACHINE, SCARG(uap, op));
|
||||
return EINVAL;
|
||||
}
|
||||
}
|
||||
|
||||
int
|
||||
netbsd32_pread(p, v, retval)
|
||||
struct proc *p;
|
||||
|
|
Loading…
Reference in New Issue