aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9/vm_page_wakeup.9
diff options
context:
space:
mode:
authorAndriy Gapon <avg@FreeBSD.org>2010-10-20 05:17:23 +0000
committerAndriy Gapon <avg@FreeBSD.org>2010-10-20 05:17:23 +0000
commit55144670c2d7dbb2bc047f275e4d2a75fbb9752a (patch)
tree1c0a053e5778058d353ae9a831d1eb3c1a948201 /share/man/man9/vm_page_wakeup.9
parent7e54c6db1f28f7daca4a4e988a7fa6626253f8e6 (diff)
downloadsrc-55144670c2d7dbb2bc047f275e4d2a75fbb9752a.tar.gz
src-55144670c2d7dbb2bc047f275e4d2a75fbb9752a.zip
PG_BUSY -> VPO_BUSY, PG_WANTED -> VPO_WANTED in manual pages and comments
Reviewed by: alc MFC after: 4 days
Notes
Notes: svn path=/head/; revision=214095
Diffstat (limited to 'share/man/man9/vm_page_wakeup.9')
-rw-r--r--share/man/man9/vm_page_wakeup.98
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/vm_page_wakeup.9 b/share/man/man9/vm_page_wakeup.9
index adb03a13c05b..75f0ca8abf3c 100644
--- a/share/man/man9/vm_page_wakeup.9
+++ b/share/man/man9/vm_page_wakeup.9
@@ -50,20 +50,20 @@ of a page.
.Pp
.Fn vm_page_busy
sets the
-.Dv PG_BUSY
+.Dv VPO_BUSY
flag in the page.
.Pp
.Fn vm_page_flash
checks to see if there is anybody waiting on the page
-.Dv ( PG_WANTED
+.Dv ( VPO_WANTED
will be set), and if so, clears the
-.Dv PG_WANTED
+.Dv VPO_WANTED
flag and notifies whoever is waiting via
.Fn wakeup .
.Pp
.Fn vm_page_wakeup
clears the
-.Dv PG_BUSY
+.Dv VPO_BUSY
flag on the page, and calls
.Fn vm_page_flash
in case somebody has been waiting for it.