TRUE -> true, FALSE -> false.

This commit is contained in:
rumble 2007-06-24 19:26:58 +00:00
parent 91629617de
commit b9ff3c810f
7 changed files with 39 additions and 24 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: altq.9,v 1.13 2006/10/14 07:31:41 wiz Exp $ .\" $NetBSD: altq.9,v 1.14 2007/06/24 19:26:58 rumble Exp $
.\" $OpenBSD: altq.9,v 1.4 2001/07/12 12:41:42 itojun Exp $ .\" $OpenBSD: altq.9,v 1.4 2001/07/12 12:41:42 itojun Exp $
.\" .\"
.\" Copyright (C) 2001 .\" Copyright (C) 2001
@ -356,7 +356,7 @@ checks only if there is any packet stored in the queue.
Another difference is that even when Another difference is that even when
.Fn IFQ_IS_EMPTY .Fn IFQ_IS_EMPTY
is is
.Dv FALSE , .Dv false ,
.Fn IFQ_DEQUEUE .Fn IFQ_DEQUEUE
could still return could still return
.Dv NULL .Dv NULL
@ -372,7 +372,7 @@ or not.
Note that even when Note that even when
.Fn IFQ_IS_EMPTY .Fn IFQ_IS_EMPTY
is is
.Dv FALSE , .Dv false ,
.Fn IFQ_DEQUEUE .Fn IFQ_DEQUEUE
could return could return
.Dv NULL .Dv NULL

View File

@ -1,4 +1,4 @@
.\" $NetBSD: fstrans.9,v 1.5 2007/05/17 07:26:21 hannken Exp $ .\" $NetBSD: fstrans.9,v 1.6 2007/06/24 19:26:58 rumble Exp $
.\" .\"
.\" Copyright (c) 2007 The NetBSD Foundation, Inc. .\" Copyright (c) 2007 The NetBSD Foundation, Inc.
.\" All rights reserved. .\" All rights reserved.
@ -129,7 +129,7 @@ releases a lock on the file system
.Fa mp . .Fa mp .
.It Fn fstrans_is_owner "mp" .It Fn fstrans_is_owner "mp"
returns returns
.Dv TRUE .Dv true
if this thread is currently suspending the file system if this thread is currently suspending the file system
.Fa mp . .Fa mp .
.El .El

View File

@ -1,4 +1,4 @@
.\" $NetBSD: optstr.9,v 1.1 2006/02/03 11:04:46 jmmv Exp $ .\" $NetBSD: optstr.9,v 1.2 2007/06/24 19:26:58 rumble Exp $
.\" .\"
.\" Copyright (c) 2006 The NetBSD Foundation, Inc. .\" Copyright (c) 2006 The NetBSD Foundation, Inc.
.\" All rights reserved. .\" All rights reserved.
@ -71,9 +71,9 @@ copying a maximum of
.Va bufsize .Va bufsize
bytes. bytes.
Returns Returns
.Sq TRUE .Sq true
if the key was found or if the key was found or
.Sq FALSE .Sq false
otherwise, in which case otherwise, in which case
.Va buf .Va buf
is left unmodified. is left unmodified.

View File

@ -1,4 +1,4 @@
.\" $NetBSD: pmap.9,v 1.32 2006/12/18 00:41:21 simonb Exp $ .\" $NetBSD: pmap.9,v 1.33 2007/06/24 19:26:58 rumble Exp $
.\" .\"
.\" Copyright (c) 2000, 2001, 2002 The NetBSD Foundation, Inc. .\" Copyright (c) 2000, 2001, 2002 The NetBSD Foundation, Inc.
.\" All rights reserved. .\" All rights reserved.
@ -266,7 +266,8 @@ supplying referenced information for a page is not feasible, then the
.Nm .Nm
implementation should always consider the implementation should always consider the
.Dq referenced .Dq referenced
attribute to be FALSE. attribute to be
.Dv false .
.Pp .Pp
The The
.Dq modified .Dq modified
@ -597,10 +598,14 @@ including KSEG-style direct-mapped kernel addresses.
.Pp .Pp
The The
.Fn pmap_extract .Fn pmap_extract
function returns FALSE if a mapping for function returns
.Dv false
if a mapping for
.Fa va .Fa va
does not exist. does not exist.
Otherwise, it returns TRUE and places the physical address mapped at Otherwise, it returns
.Dv true
and places the physical address mapped at
.Fa va .Fa va
into into
.Fa *pap .Fa *pap
@ -817,7 +822,11 @@ attribute on the page
.Pp .Pp
The The
.Fn pmap_clear_modify .Fn pmap_clear_modify
function returns TRUE or FALSE indicating whether or not the function returns
.Dv true
or
.Dv false
indicating whether or not the
.Dq modified .Dq modified
attribute was set on the page before it was cleared. attribute was set on the page before it was cleared.
.Pp .Pp
@ -830,7 +839,11 @@ attribute on the page
.Pp .Pp
The The
.Fn pmap_clear_reference .Fn pmap_clear_reference
function returns TRUE or FALSE indicating whether or not the function returns
.Dv true
or
.Dv false
indicating whether or not the
.Dq referenced .Dq referenced
attribute was set on the page before it was cleared. attribute was set on the page before it was cleared.
.Pp .Pp

View File

@ -1,4 +1,4 @@
.\" $NetBSD: uvm.9,v 1.83 2007/05/06 12:38:09 pavel Exp $ .\" $NetBSD: uvm.9,v 1.84 2007/06/24 19:26:59 rumble Exp $
.\" .\"
.\" Copyright (c) 1998 Matthew R. Green .\" Copyright (c) 1998 Matthew R. Green
.\" All rights reserved. .\" All rights reserved.
@ -331,9 +331,9 @@ in map
against against
.Fa protection . .Fa protection .
This returns either This returns either
.Dv TRUE .Dv true
or or
.Dv FALSE . .Dv false .
.Pp .Pp
.Fn uvm_map_protect .Fn uvm_map_protect
changes the protection changes the protection
@ -407,9 +407,9 @@ allocates virtual space for a u-area (i.e., a kernel stack) and stores
its virtual address in its virtual address in
.Fa *uaddrp . .Fa *uaddrp .
The return value is The return value is
.Dv TRUE .Dv true
if the u-area is already backed by wired physical memory, otherwise if the u-area is already backed by wired physical memory, otherwise
.Dv FALSE . .Dv false .
.Pp .Pp
.Fn uvm_uarea_free .Fn uvm_uarea_free
frees a u-area allocated with frees a u-area allocated with

View File

@ -1,4 +1,4 @@
.\" $NetBSD: veriexec.9,v 1.15 2007/05/19 22:13:57 christos Exp $ .\" $NetBSD: veriexec.9,v 1.16 2007/06/24 19:26:59 rumble Exp $
.\" .\"
.\" Copyright 2006 Elad Efrat <elad@NetBSD.org> .\" Copyright 2006 Elad Efrat <elad@NetBSD.org>
.\" Copyright 2006 Brett Lymn <blymn@NetBSD.org> .\" Copyright 2006 Brett Lymn <blymn@NetBSD.org>
@ -61,9 +61,9 @@ is monitored by
.Em Veriexec .Em Veriexec
or not. or not.
Returns Returns
.Dv TRUE .Dv true
if it is, or if it is, or
.Dv FALSE .Dv false
otherwise. otherwise.
.It Ft int Fn veriexec_verify "struct lwp *l" "struct vnode *vp" \ .It Ft int Fn veriexec_verify "struct lwp *l" "struct vnode *vp" \
"const u_char *name" "int flag" "boolean_t *found" "const u_char *name" "int flag" "boolean_t *found"

View File

@ -1,4 +1,4 @@
.\" $NetBSD: vnodeops.9,v 1.63 2007/05/13 19:02:17 tnn Exp $ .\" $NetBSD: vnodeops.9,v 1.64 2007/06/24 19:26:59 rumble Exp $
.\" .\"
.\" Copyright (c) 2001, 2005, 2006 The NetBSD Foundation, Inc. .\" Copyright (c) 2001, 2005, 2006 The NetBSD Foundation, Inc.
.\" All rights reserved. .\" All rights reserved.
@ -1020,7 +1020,9 @@ and
are used. are used.
The value of The value of
.Fa *eofflag .Fa *eofflag
will be set to TRUE if the end of the directory is reached while will be set to
.Dv true
if the end of the directory is reached while
reading. reading.
The directory seek cookies are returned to the NFS client and may be The directory seek cookies are returned to the NFS client and may be
used later to restart a directory read part way through the directory. used later to restart a directory read part way through the directory.