diff options
author | des <des@FreeBSD.org> | 2001-01-29 08:59:30 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2001-01-29 08:59:30 +0000 |
commit | 585529610f4457556d1e822cefc55763a21603fc (patch) | |
tree | 73496a17a9be291b5f96e10c9b2c4683d56040fd /share | |
parent | 85d4c1854a48af8fc2fcdbc5d5b3c98c156ca4d3 (diff) | |
download | FreeBSD-src-585529610f4457556d1e822cefc55763a21603fc.zip FreeBSD-src-585529610f4457556d1e822cefc55763a21603fc.tar.gz |
Style police.
Submitted by: ru
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/zone.9 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man9/zone.9 b/share/man/man9/zone.9 index 2ac1aa2..876466a 100644 --- a/share/man/man9/zone.9 +++ b/share/man/man9/zone.9 @@ -34,7 +34,7 @@ .Nm zinit , .Nm zalloc , .Nm zfree -.Nd Zone allocator +.Nd zone allocator .Sh SYNOPSIS .Fd #include <sys/types.h> .Fd #include <vm/vm_zone.h> @@ -117,7 +117,7 @@ up, the initialization of the zone is completed by calling The first argument to .Fn zbootinit is a pointer to a static -.Fa struct vm_zone +.Vt "struct vm_zone" to initialize. The second and third are the name of the zone and the size of the items it will hold. @@ -133,7 +133,7 @@ are the same as for .Fa zinit , with the addition of a pointer to the zone to initialize, and a pointer to a -.Fa struct vm_object +.Vt "struct vm_object" from which to allocate pages in the .Dv ZONE_INTERRUPT case. @@ -158,13 +158,13 @@ is inability to preallocate address space for an interrupt-safe zone. The .Fn zinit function returns a pointer to a fully initialized -.Fa struct vm_zone , +.Vt "struct vm_zone" , or .Dv NULL if it was unable to .Fn malloc a -.Fa struct vm_zone +.Vt "struct vm_zone" or the .Dv ZONE_INTERRUPT flag was specified and |