Typo, whitespace and punctuation fixes.
This commit is contained in:
parent
315360cfd2
commit
6abe6d18f8
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: a.out.5,v 1.13 2001/04/13 18:51:15 pooka Exp $
|
||||
.\" $NetBSD: a.out.5,v 1.14 2001/06/19 12:34:26 wiz Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
@ -130,7 +130,7 @@ if necessary.
|
||||
.El
|
||||
.Pp
|
||||
If both EX_DYNAMIC and EX_PIC are set, the object file is a position independent
|
||||
executable image (eg. a shared library), which is to be loaded into the
|
||||
executable image (e.g. a shared library), which is to be loaded into the
|
||||
process address space by the run-time link editor.
|
||||
.Pp
|
||||
The macro
|
||||
@ -288,7 +288,7 @@ only occurs in shared objects.
|
||||
.It Fa r_copy
|
||||
If set, this relocation record identifies a symbol whose contents should
|
||||
be copied to the location given in
|
||||
.Fa r_address.
|
||||
.Fa r_address .
|
||||
The copying is done by the run-time link-editor from a suitable data
|
||||
item in a shared object.
|
||||
.El
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: core.5,v 1.13 2000/11/17 10:14:17 lukem Exp $
|
||||
.\" $NetBSD: core.5,v 1.14 2001/06/19 12:34:26 wiz Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1980, 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
@ -46,7 +46,7 @@ A small number of signals which cause abnormal termination of a process
|
||||
also cause a record of the process's in-core state to be written
|
||||
to disk for later examination by one of the available debuggers
|
||||
(see
|
||||
.Xr signal 7 ).
|
||||
.Xr signal 7 ) .
|
||||
.Pp
|
||||
This memory image is written to a file named from a per-process template;
|
||||
provided the terminated process had write permission, and provided the
|
||||
@ -59,14 +59,14 @@ variable
|
||||
(where <pid> has to be replaced by the pid in decimal format of the
|
||||
process).
|
||||
This template is either an absolute or relative path name, in which format
|
||||
characters can be used, preceeded by the percent character
|
||||
characters can be used, preceded by the percent character
|
||||
.Pq Dq \&% .
|
||||
The following characters are recognised as format and subsituted:
|
||||
The following characters are recognised as format and substituted:
|
||||
.Bl -tag -width 4n -offset indent -compact
|
||||
.It Sy n
|
||||
The process's name
|
||||
.It Sy p
|
||||
The PID of the process (in decimal)
|
||||
The PID of the process (in decimal)
|
||||
.It Sy t
|
||||
The process's creation date (a la
|
||||
.Xr time 3 ,
|
||||
@ -96,11 +96,11 @@ The maximum size of a core file is limited by
|
||||
Files which would be larger than the limit are not created.
|
||||
.Pp
|
||||
The core file contains of a core header followed by a number of
|
||||
segments. Each segment is preceded by a core segment header.
|
||||
segments. Each segment is preceded by a core segment header.
|
||||
Both the core header and core segment header are defined in
|
||||
.Aq Pa sys/core.h .
|
||||
|
||||
The core header,
|
||||
The core header,
|
||||
.Fa struct core ,
|
||||
specifies the lengths of the core header itself and
|
||||
each of the following core segment headers to allow for any machine
|
||||
@ -126,16 +126,16 @@ The fields of
|
||||
are as follows:
|
||||
.Bl -tag -width XXXc_seghdrsize
|
||||
.It c_midmag
|
||||
Core file machine ID, magic value, and flags.
|
||||
These values may be extracted with the
|
||||
Core file machine ID, magic value, and flags.
|
||||
These values may be extracted with the
|
||||
.Fn CORE_GETMID ,
|
||||
.Fn CORE_GETMAGIC ,
|
||||
and
|
||||
.Fn CORE_GETFLAG
|
||||
macros. The machine ID values are listed in
|
||||
macros. The machine ID values are listed in
|
||||
.Aq Pa sys/exec_aout.h .
|
||||
For a valid core file, the magic value in the header must be
|
||||
.Dv COREMAGIC .
|
||||
.Dv COREMAGIC .
|
||||
No flags are defined for the core header.
|
||||
.It c_hdrsize
|
||||
Size of this data structure.
|
||||
@ -144,14 +144,14 @@ Size of a segment header.
|
||||
.It c_nseg
|
||||
Number of segments that follow this header.
|
||||
.It c_name
|
||||
Process name, copied from the p_comm field of
|
||||
Process name, copied from the p_comm field of
|
||||
.Fa struct proc .
|
||||
.It c_signo
|
||||
Signal that caused the process to dump core.
|
||||
.It c_ucode
|
||||
Code associated with the signal.
|
||||
.It c_cpusize
|
||||
Size of the segment containing CPU-specific information.
|
||||
Size of the segment containing CPU-specific information.
|
||||
This segment will have the
|
||||
.Dv CORE_CPU
|
||||
flag set.
|
||||
@ -183,21 +183,21 @@ are as follows:
|
||||
.Bl -tag -width XXXc_midmag
|
||||
.It c_midmag
|
||||
Core segment magic value and flags.
|
||||
These values may be extracted with the
|
||||
These values may be extracted with the
|
||||
.Fn CORE_GETMAGIC
|
||||
and
|
||||
.Fn CORE_GETFLAG
|
||||
macros.
|
||||
macros.
|
||||
The magic value in the segment header must be
|
||||
.Dv CORESEGMAGIC .
|
||||
.Dv CORESEGMAGIC .
|
||||
Exactly one of of the flags
|
||||
.Dv CORE_CPU ,
|
||||
.Dv CORE_DATA,
|
||||
.Dv CORE_DATA ,
|
||||
or
|
||||
.Dv CORE_STACK
|
||||
will be set to indicate the segment type.
|
||||
.It c_addr
|
||||
Virtual address of the segment in the program image.
|
||||
Virtual address of the segment in the program image.
|
||||
Meaningless if the segment type is
|
||||
.Dv CORE_CPU .
|
||||
.It c_size
|
||||
@ -216,6 +216,6 @@ file format appeared in
|
||||
.At v6 .
|
||||
.Sh BUGS
|
||||
There is no standard location or name for the
|
||||
CPU-dependant data structure stored in the
|
||||
CPU-dependent data structure stored in the
|
||||
.Dv CORE_CPU
|
||||
segment.
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: dir.5,v 1.7 1999/03/17 20:19:44 garbled Exp $
|
||||
.\" $NetBSD: dir.5,v 1.8 2001/06/19 12:34:26 wiz Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1983, 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
@ -53,8 +53,8 @@ entry.
|
||||
It consists of records (directory entries) each of which contains
|
||||
information about a file and a pointer to the file itself.
|
||||
Directory entries may contain other directories
|
||||
as well as plain files; such nested directories are refered to as
|
||||
subdirectories.
|
||||
as well as plain files; such nested directories are referred to as
|
||||
subdirectories.
|
||||
A hierarchy of directories and files is formed in this manner
|
||||
and is called a file system (or referred to as a file system tree).
|
||||
.\" An entry in this tree,
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: elf.5,v 1.4 2001/04/22 15:00:17 pooka Exp $
|
||||
.\" $NetBSD: elf.5,v 1.5 2001/06/19 12:34:27 wiz Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
.\" All rights reserved.
|
||||
@ -113,7 +113,7 @@ typedef struct {
|
||||
The array contains the following information in the indicated locations:
|
||||
.Bl -tag -width EI_ABIVERSION
|
||||
.It Dv ELFMAG0
|
||||
The elements ranging from
|
||||
The elements ranging from
|
||||
.Dv ELFMAG0
|
||||
to
|
||||
.Dv ELFMAG3
|
||||
@ -209,7 +209,7 @@ symbols and is intended for the regular link editor
|
||||
.It Dv SHT_STRTAB
|
||||
Section contains a string table.
|
||||
.It Dv SHT_RELA
|
||||
Section contains relocation information with an explicit addend.
|
||||
Section contains relocation information with an explicit addend.
|
||||
.It Dv SHT_HASH
|
||||
Section contains a symbol hash table.
|
||||
.It Dv SHT_DYNAMIC
|
||||
@ -283,7 +283,7 @@ follows:
|
||||
Section index of the section to which the relocation information applies.
|
||||
.Pp
|
||||
.It Dv SHT_SYMTAB
|
||||
.It Dv SHT_DYNSYM
|
||||
.It Dv SHT_DYNSYM
|
||||
Contains a value one greater that the last local symbol table index.
|
||||
.El
|
||||
.It Fa sh_addralign
|
||||
@ -326,7 +326,7 @@ If
|
||||
is greater than
|
||||
.Fa p_filesz ,
|
||||
the memory range from
|
||||
.Po Fa p_vaddr
|
||||
.Po Fa p_vaddr
|
||||
+
|
||||
.Fa p_filesz Pc
|
||||
to
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: ethers.5,v 1.7 2000/11/17 10:14:17 lukem Exp $
|
||||
.\" $NetBSD: ethers.5,v 1.8 2001/06/19 12:34:27 wiz Exp $
|
||||
.\"
|
||||
.\" Written by Roland McGrath <roland@frob.com>. Public domain.
|
||||
.\"
|
||||
@ -27,13 +27,13 @@ has the format:
|
||||
.Pp
|
||||
Ethernet MAC addresses are expressed as six hexadecimal numbers separated
|
||||
by colons, e.g. "08:00:20:00:5a:bc".
|
||||
The functions described in
|
||||
The functions described in
|
||||
.Xr ethers 3
|
||||
and
|
||||
.Xr ether_aton 3
|
||||
can read and produce this format.
|
||||
.Pp
|
||||
The tradional use of
|
||||
The traditional use of
|
||||
.Nm
|
||||
involved using hostnames for the second argument.
|
||||
This may not be suitable for machines that don't have a common MAC
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: genassym.cf.5,v 1.7 2001/06/05 12:39:40 wiz Exp $
|
||||
.\" $NetBSD: genassym.cf.5,v 1.8 2001/06/19 12:34:27 wiz Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1997 Matthias Pfaller.
|
||||
.\" All rights reserved.
|
||||
@ -77,7 +77,7 @@ can be used to customize the output of
|
||||
.Xr genassym.sh 8 .
|
||||
When producing C output, values are casted to <ctype> (default: long)
|
||||
before they get handed to printf. <gcc constraint> (default: n) is the
|
||||
constraint used in the __asm__ statments. <asm print modifier> (default:
|
||||
constraint used in the __asm__ statements. <asm print modifier> (default:
|
||||
empty) can be used to force gcc to output operands in different ways
|
||||
then normal. The "a" modifier e.g. stops gcc from emitting immediate
|
||||
prefixes in front of constants for the i386 and m68k port.
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: ipsec.conf.5,v 1.1 2001/02/23 02:32:27 hubertf Exp $
|
||||
.\" $NetBSD: ipsec.conf.5,v 1.2 2001/06/19 12:34:27 wiz Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
.\" All rights reserved.
|
||||
@ -38,11 +38,11 @@
|
||||
.Sh DESCRIPTION
|
||||
The
|
||||
.Nm
|
||||
file is read at system startup time if
|
||||
file is read at system startup time if
|
||||
.Sy ipsec
|
||||
is set to
|
||||
is set to
|
||||
.Dq yes
|
||||
in
|
||||
in
|
||||
.Xr rc.conf 5 .
|
||||
.Xr setkey 8
|
||||
is run with the
|
||||
@ -51,7 +51,7 @@ option to load in IPsec manual keys and policies from
|
||||
.Pa /etc/ipsec.conf
|
||||
at boot time, before any interfaces are configured.
|
||||
.Pp
|
||||
Please see the
|
||||
Please see the
|
||||
.Xr setkey 8
|
||||
manpage for all the commands available.
|
||||
.Sh FILES
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: link.5,v 1.10 1999/03/24 06:14:18 mycroft Exp $
|
||||
.\" $NetBSD: link.5,v 1.11 2001/06/19 12:34:27 wiz Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
.\" All rights reserved.
|
||||
@ -62,7 +62,7 @@ complete the link-editing process and indirection tables to facilitate
|
||||
.Em Position Independent Code
|
||||
(PIC) to improve sharing of code pages among different processes.
|
||||
.Pp
|
||||
The collection of data structures described here will be refered to as the
|
||||
The collection of data structures described here will be referred to as the
|
||||
.Em Run-time Relocation Section
|
||||
(RRS) and is embedded in the standard text and data segments of
|
||||
the dynamically linked program or shared object image as the existing
|
||||
@ -79,7 +79,7 @@ through the .size assembler directive.
|
||||
.Pp
|
||||
PIC code differs from conventional code in that it accesses data
|
||||
variables through an indirection table, the Global Offset Table,
|
||||
by convention accessable by the reserved name
|
||||
by convention accessible by the reserved name
|
||||
.Em _GLOBAL_OFFSET_TABLE_ .
|
||||
The exact mechanism used for this is machine dependent, usually a machine
|
||||
register is reserved for the purpose.
|
||||
@ -138,11 +138,11 @@ struct _dynamic {
|
||||
This field provides for different versions of the dynamic linking
|
||||
implementation.
|
||||
The current version numbers understood by ld and ld.so are
|
||||
.Em LD_VERSION_SUN (3),
|
||||
.Em LD_VERSION_SUN (3) ,
|
||||
which is used by the
|
||||
.Tn "SunOS 4.x"
|
||||
releases, and
|
||||
.Em LD_VERSION_BSD (8),
|
||||
.Em LD_VERSION_BSD (8) ,
|
||||
which is currently in use by
|
||||
.Nx .
|
||||
.It Fa d_un
|
||||
@ -236,7 +236,7 @@ The size of the Procedure Linkage Table.
|
||||
.Pp
|
||||
A
|
||||
.Fa sod
|
||||
structure descibes a shared object that is needed
|
||||
structure describes a shared object that is needed
|
||||
to complete the link edit process of the object containing it.
|
||||
A list of such objects
|
||||
.Po
|
||||
@ -278,7 +278,7 @@ should point at a full path name for the desired shared object.
|
||||
.It Fa sod_major
|
||||
Specifies the major version number of the shared object to load.
|
||||
.It Fa sod_minor
|
||||
Specifies the prefered minor version number of the shared object to load.
|
||||
Specifies the preferred minor version number of the shared object to load.
|
||||
.El
|
||||
.Pp
|
||||
The run-time link-editor maintains a list of structures called
|
||||
@ -455,7 +455,7 @@ Set by the run-time linker whenever it adds symbols by loading shared objects.
|
||||
The address were a breakpoint will be set by the run-time linker to
|
||||
divert control to the debugger.
|
||||
This address is determined by the start-up module,
|
||||
.Em crt0.o,
|
||||
.Em crt0.o ,
|
||||
to be some convenient place before the call to _main.
|
||||
.It Fa dd_bpt_shadow
|
||||
Contains the original instruction that was at
|
||||
@ -543,7 +543,7 @@ The
|
||||
and
|
||||
.Fa hints_bucket
|
||||
structures define the layout of the library hints, normally found in
|
||||
.Dq /var/run/ld.so.hints,
|
||||
.Dq /var/run/ld.so.hints ,
|
||||
which is used by ld.so to quickly locate the shared object images in the
|
||||
filesystem.
|
||||
The organization of the hints file is not unlike that of an
|
||||
|
@ -1,11 +1,11 @@
|
||||
.\" $NetBSD: mk.conf.5,v 1.7 2000/03/28 01:21:36 enami Exp $
|
||||
.\" $NetBSD: mk.conf.5,v 1.8 2001/06/19 12:34:27 wiz Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
.\" All rights reserved.
|
||||
.\"
|
||||
.\"
|
||||
.\" This code is derived from software contributed to The NetBSD Foundation
|
||||
.\" by Luke Mewburn.
|
||||
.\"
|
||||
.\"
|
||||
.\" Redistribution and use in source and binary forms, with or without
|
||||
.\" modification, are permitted provided that the following conditions
|
||||
.\" are met:
|
||||
@ -19,7 +19,7 @@
|
||||
.\" This product includes software developed by Luke Mewburn.
|
||||
.\" 4. The name of the author may not be used to endorse or promote products
|
||||
.\" derived from this software without specific prior written permission.
|
||||
.\"
|
||||
.\"
|
||||
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
@ -49,7 +49,6 @@ Listed below are the
|
||||
variables that may be set, the values to which each may be set,
|
||||
a brief description of what each variable does, and a reference to
|
||||
relevant manual pages.
|
||||
.Pp
|
||||
.Ss NetBSD System variables
|
||||
.Bl -tag -width OBJMACHINE
|
||||
.It Sy BSDOBJDIR
|
||||
@ -71,14 +70,14 @@ If defined,
|
||||
.Sq "make install"
|
||||
checks that the targets in the source directories are up-to-date and
|
||||
remakes them if they are out of date, instead of blindly trying to install
|
||||
out of date or non-existant targets.
|
||||
out of date or non-existent targets.
|
||||
.It Sy COPTS
|
||||
Extra options for the C compiler.
|
||||
Should be appended to (e.g.,
|
||||
.Sy COPTS+=-g ) ,
|
||||
rather than explicitly set.
|
||||
.It Sy MANZ
|
||||
Install manual pages compressed with
|
||||
Install manual pages compressed with
|
||||
.Xr gzip 1 .
|
||||
.It Sy MKCATPAGES
|
||||
If
|
||||
@ -148,10 +147,8 @@ If defined,
|
||||
only installs targets that are more recently modified in the source
|
||||
directories that their installed counterparts.
|
||||
.El
|
||||
.Pp
|
||||
.Ss Pkgsrc system variables
|
||||
|
||||
Please see
|
||||
Please see
|
||||
.Xr packages 7
|
||||
for more variables used internally by the package system and
|
||||
.Pa /usr/pkgsrc/mk/mk.conf.example
|
||||
|
Loading…
Reference in New Issue
Block a user