1 #ifndef __ASM_SH64_A_OUT_H
2 #define __ASM_SH64_A_OUT_H
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
9 * include/asm-sh64/a.out.h
11 * Copyright (C) 2000, 2001 Paolo Alberelli
17 unsigned long a_info
; /* Use macros N_MAGIC, etc for access */
18 unsigned a_text
; /* length of text, in bytes */
19 unsigned a_data
; /* length of data, in bytes */
20 unsigned a_bss
; /* length of uninitialized data area for file, in bytes */
21 unsigned a_syms
; /* length of symbol table data in file, in bytes */
22 unsigned a_entry
; /* start address */
23 unsigned a_trsize
; /* length of relocation info for text, in bytes */
24 unsigned a_drsize
; /* length of relocation info for data, in bytes */
27 #define N_TRSIZE(a) ((a).a_trsize)
28 #define N_DRSIZE(a) ((a).a_drsize)
29 #define N_SYMSIZE(a) ((a).a_syms)
33 #define STACK_TOP TASK_SIZE
34 #define STACK_TOP_MAX STACK_TOP
38 #endif /* __ASM_SH64_A_OUT_H */