add a stub cpu_mcontext_validate().

This commit is contained in:
chs 2012-11-05 15:13:04 +00:00
parent cbdf1a7f9d
commit 04068992a7
1 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.32 2012/07/28 19:08:24 matt Exp $ */
/* $NetBSD: machdep.c,v 1.33 2012/11/05 15:13:04 chs Exp $ */
/*-
* Copyright (c) 2003,2004 Marcel Moolenaar
@ -786,6 +786,12 @@ cpu_setmcontext(struct lwp *l, const mcontext_t *mcp, unsigned int flags)
return EINVAL;
}
int
cpu_mcontext_validate(struct lwp *l, const mcontext_t *mcp)
{
return EINVAL;
}
int
mm_md_physacc(paddr_t pa, vm_prot_t prot)
{