move function prototype to x86, so it is available to amd64 too

This commit is contained in:
maya 2016-09-19 20:46:55 +00:00
parent ac7944cb93
commit 9699213d82
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.h,v 1.117 2014/04/21 19:12:11 christos Exp $ */
/* $NetBSD: pmap.h,v 1.118 2016/09/19 20:46:55 maya Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@ -405,7 +405,6 @@ struct trapframe;
struct pcb;
int pmap_exec_fixup(struct vm_map *, struct trapframe *, struct pcb *);
void pmap_ldt_cleanup(struct lwp *);
#include <x86/pmap_pv.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.h,v 1.59 2016/07/25 12:11:40 maxv Exp $ */
/* $NetBSD: pmap.h,v 1.60 2016/09/19 20:46:55 maya Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@ -255,6 +255,7 @@ void pmap_write_protect(struct pmap *, vaddr_t, vaddr_t, vm_prot_t);
void pmap_load(void);
paddr_t pmap_init_tmp_pgtbl(paddr_t);
void pmap_remove_all(struct pmap *);
void pmap_ldt_cleanup(struct lwp *);
void pmap_ldt_sync(struct pmap *);
void pmap_kremove_local(vaddr_t, vsize_t);