BSD 4_3 release
[unix-history] / usr / man / man5 / a.out.5
index de952dc..b0427c3 100644 (file)
@@ -1,4 +1,10 @@
-.TH A.OUT 5 VAX/11
+.\" Copyright (c) 1980 Regents of the University of California.
+.\" All rights reserved.  The Berkeley software License Agreement
+.\" specifies the terms and conditions for redistribution.
+.\"
+.\"    @(#)a.out.5     6.2 (Berkeley) 5/19/86
+.\"
+.TH A.OUT 5 "May 19, 1986"
 .UC 4
 .SH NAME
 a.out \- assembler and link editor output
 .UC 4
 .SH NAME
 a.out \- assembler and link editor output
@@ -105,13 +111,11 @@ for very large programs and is the default format produced by
 .IR ld (1).
 .PP
 The stack will occupy the highest possible locations
 .IR ld (1).
 .PP
 The stack will occupy the highest possible locations
-in the core image: growing downwards from
-.lg 0
-0x7ffff400.
-.lg 1
+in the core image, growing downwards from USRSTACK (from
+.IR <machine/vmparam.h> ).
 The stack is automatically extended as required.
 The data segment is only extended as requested by
 The stack is automatically extended as required.
 The data segment is only extended as requested by
-.IR break (2).
+.IR brk (2).
 .PP
 After the header in the file follow the text, data, text relocation
 data relocation, symbol table and string table in that order.
 .PP
 After the header in the file follow the text, data, text relocation
 data relocation, symbol table and string table in that order.
@@ -145,7 +149,7 @@ struct nlist {
        unsigned char   n_type; /* type flag, i.e. N_TEXT etc; see below */
        char    n_other;
        short   n_desc; /* see <stab.h> */
        unsigned char   n_type; /* type flag, i.e. N_TEXT etc; see below */
        char    n_other;
        short   n_desc; /* see <stab.h> */
-       unsigned        n_value;        /* value of this symbol (or sdb offset) */
+       unsigned        n_value;        /* value of this symbol (or offset) */
 };
 #define        n_hash  n_desc  /* used internally by ld */
 
 };
 #define        n_hash  n_desc  /* used internally by ld */
 
@@ -241,7 +245,7 @@ If r_extern is 0, then r_symbolnum is actually a n_type for the relocation
 (i.e. N_TEXT meaning relative to segment text origin.)
 .fi
 .SH "SEE ALSO"
 (i.e. N_TEXT meaning relative to segment text origin.)
 .fi
 .SH "SEE ALSO"
-adb(1), as(1), ld(1), nm(1), sdb(1), stab(5), strip(1)
+adb(1), as(1), ld(1), nm(1), dbx(1), stab(5), strip(1)
 .SH BUGS
 Not having the size of the string table in the header is a loss, but
 expanding the header size would have meant stripped executable file
 .SH BUGS
 Not having the size of the string table in the header is a loss, but
 expanding the header size would have meant stripped executable file