summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorWilbern Cobb <wcobb@cvs.openbsd.org>2002-09-10 20:54:22 +0000
committerWilbern Cobb <wcobb@cvs.openbsd.org>2002-09-10 20:54:22 +0000
commit3a20f83663e11e88b559d85009bf93b4781c6190 (patch)
tree8bcbd253a6968af00d3835edeb113cc039f12cf5 /share
parentc2d298e4d38d0f5816f1f55e7bbfd2fbf9b5a6aa (diff)
sync with the pmap_zero_page and pmap_copy_page API change; ok art@
Diffstat (limited to 'share')
-rw-r--r--share/man/man9/pmap.910
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man9/pmap.9 b/share/man/man9/pmap.9
index d72b5d37800..a56c4d60082 100644
--- a/share/man/man9/pmap.9
+++ b/share/man/man9/pmap.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: pmap.9,v 1.2 2002/09/02 06:01:01 wcobb Exp $
+.\" $OpenBSD: pmap.9,v 1.3 2002/09/10 20:54:21 wcobb Exp $
.\"
.\" Copyright (c) 2001, 2002 CubeSoft Communications, Inc.
.\" <http://www.csoft.org>
@@ -289,9 +289,9 @@ that are no longer in demand.
.Sh PHYSICAL PAGE INITIALIZATION
.nr nS 1
.Ft void
-.Fn pmap_copy_page "paddr_t src" "paddr_t dst"
+.Fn pmap_copy_page "struct vm_page *src" "struct vm_page *dst"
.Ft void
-.Fn pmap_zero_page "paddr_t phys"
+.Fn pmap_zero_page "struct vm_page *page"
.nr nS 0
.Pp
The
@@ -303,8 +303,8 @@ to physical page
.Pp
The
.Fn pmap_zero_page
-function fills the page at
-.Fa phys
+function fills
+.Fa page
with zeroes.
.Sh INTERNAL DATA STRUCTURE MANAGEMENT
.nr nS 1