summaryrefslogtreecommitdiff
path: root/sys/uvm/uvm_extern.h
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-05-03 22:44:37 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-05-03 22:44:37 +0000
commitd80bf4667612fc0e31782d418d0c426f1db79461 (patch)
tree7b43a6f6b8dbb3c5753055385d5b9de7db59a7ac /sys/uvm/uvm_extern.h
parent6a5a09fe5abb7c3f12aae4466dcc7a714afed7b1 (diff)
Move the u-area allocation and pmap-magic logic to its own function
uvm_uarea_alloc() function name from NetBSD; arm testing by miod@
Diffstat (limited to 'sys/uvm/uvm_extern.h')
-rw-r--r--sys/uvm/uvm_extern.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/uvm/uvm_extern.h b/sys/uvm/uvm_extern.h
index 06919d70979..d6eae9c297f 100644
--- a/sys/uvm/uvm_extern.h
+++ b/sys/uvm/uvm_extern.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvm_extern.h,v 1.112 2014/04/03 21:40:10 tedu Exp $ */
+/* $OpenBSD: uvm_extern.h,v 1.113 2014/05/03 22:44:36 guenther Exp $ */
/* $NetBSD: uvm_extern.h,v 1.57 2001/03/09 01:02:12 chs Exp $ */
/*
@@ -513,6 +513,7 @@ int uvm_fault(vm_map_t, vaddr_t,
#if defined(KGDB)
void uvm_chgkprot(caddr_t, size_t, int);
#endif
+vaddr_t uvm_uarea_alloc(void);
void uvm_fork(struct proc *, struct proc *, boolean_t,
void *, size_t, void (*)(void *), void *);
void uvm_exit(struct proc *);