Deleted Added
full compact
stab.5 (140561) stab.5 (208986)
1.\" Copyright (c) 1980, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 16 unchanged lines hidden (view full) ---

25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)stab.5 8.1 (Berkeley) 6/5/93
1.\" Copyright (c) 1980, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 16 unchanged lines hidden (view full) ---

25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)stab.5 8.1 (Berkeley) 6/5/93
33.\" $FreeBSD: head/share/man/man5/stab.5 140561 2005-01-21 08:36:40Z ru $
33.\" $FreeBSD: head/share/man/man5/stab.5 208986 2010-06-10 14:19:51Z bz $
34.\"
34.\"
35.Dd June 5, 1993
35.Dd June 10, 2010
36.Dt STAB 5
37.Os
38.Sh NAME
39.Nm stab
40.Nd symbol table types
41.Sh SYNOPSIS
42.In stab.h
43.Sh DESCRIPTION

--- 30 unchanged lines hidden (view full) ---

74consists of the following structure:
75.Bd -literal
76/*
77* Format of a symbol table entry.
78*/
79
80struct nlist {
81 union {
36.Dt STAB 5
37.Os
38.Sh NAME
39.Nm stab
40.Nd symbol table types
41.Sh SYNOPSIS
42.In stab.h
43.Sh DESCRIPTION

--- 30 unchanged lines hidden (view full) ---

74consists of the following structure:
75.Bd -literal
76/*
77* Format of a symbol table entry.
78*/
79
80struct nlist {
81 union {
82 char *n_name; /* for use when in-core */
82 const char *n_name; /* for use when in-core */
83 long n_strx; /* index into file string table */
84 } n_un;
85 unsigned char n_type; /* type flag */
86 char n_other; /* unused */
87 short n_desc; /* see struct desc, below */
88 unsigned n_value; /* address or offset or line */
89};
90.Ed

--- 131 unchanged lines hidden ---
83 long n_strx; /* index into file string table */
84 } n_un;
85 unsigned char n_type; /* type flag */
86 char n_other; /* unused */
87 short n_desc; /* see struct desc, below */
88 unsigned n_value; /* address or offset or line */
89};
90.Ed

--- 131 unchanged lines hidden ---