stab.5 (9cbda59000e0f366b04c83d8d852c7c34b467722) | stab.5 (54e57c8145e0c37cc49e92adf0021c7da62587d6) |
---|---|
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. --- 18 unchanged lines hidden (view full) --- 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$ 34.\" | 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. --- 18 unchanged lines hidden (view full) --- 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$ 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 --- |