aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Williams <nate@FreeBSD.org>1994-12-23 22:32:48 +0000
committerNate Williams <nate@FreeBSD.org>1994-12-23 22:32:48 +0000
commitd27e9722db9ffe66a070989397c7537427d6b974 (patch)
treee0f93c847c7ea2e5168def4a2788a414db142bcc
parent61f9ce8d32ffafb73e35ba799825344928652705 (diff)
Notes
-rw-r--r--include/nlist.h7
-rw-r--r--sys/sys/nlist_aout.h7
2 files changed, 12 insertions, 2 deletions
diff --git a/include/nlist.h b/include/nlist.h
index 11e0a43848f6..b80c0b21f717 100644
--- a/include/nlist.h
+++ b/include/nlist.h
@@ -36,6 +36,8 @@
* SUCH DAMAGE.
*
* @(#)nlist.h 8.2 (Berkeley) 1/21/94
+ *
+ * $Id$
*/
#ifndef _NLIST_H_
@@ -60,8 +62,11 @@ struct nlist {
#define N_TEXT 0x04 /* text segment */
#define N_DATA 0x06 /* data segment */
#define N_BSS 0x08 /* bss segment */
+#define N_INDR 0x0a /* alias definition */
+#define N_SIZE 0x0c /* pseudo type, defines a symbol's size */
#define N_COMM 0x12 /* common reference */
-#define N_FN 0x1e /* file name */
+#define N_FN 0x1e /* file name (N_EXT on) */
+#define N_WARN 0x1e /* warning message (N_EXT off) */
#define N_EXT 0x01 /* external (global) bit, OR'ed in */
#define N_TYPE 0x1e /* mask for all the type bits */
diff --git a/sys/sys/nlist_aout.h b/sys/sys/nlist_aout.h
index 11e0a43848f6..b80c0b21f717 100644
--- a/sys/sys/nlist_aout.h
+++ b/sys/sys/nlist_aout.h
@@ -36,6 +36,8 @@
* SUCH DAMAGE.
*
* @(#)nlist.h 8.2 (Berkeley) 1/21/94
+ *
+ * $Id$
*/
#ifndef _NLIST_H_
@@ -60,8 +62,11 @@ struct nlist {
#define N_TEXT 0x04 /* text segment */
#define N_DATA 0x06 /* data segment */
#define N_BSS 0x08 /* bss segment */
+#define N_INDR 0x0a /* alias definition */
+#define N_SIZE 0x0c /* pseudo type, defines a symbol's size */
#define N_COMM 0x12 /* common reference */
-#define N_FN 0x1e /* file name */
+#define N_FN 0x1e /* file name (N_EXT on) */
+#define N_WARN 0x1e /* warning message (N_EXT off) */
#define N_EXT 0x01 /* external (global) bit, OR'ed in */
#define N_TYPE 0x1e /* mask for all the type bits */