blob: e8f17dc1ce74fdd1b65bb28d6ac9a6b9499e398d [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 ****************************************************************************
11 ****************************************************************************/
12#ifndef __ARM_A_OUT_H__
13#define __ARM_A_OUT_H__
14
15#include <linux/personality.h>
16#include <asm/types.h>
17
18struct exec
19{
20 __u32 a_info;
21 __u32 a_text;
22 __u32 a_data;
23 __u32 a_bss;
24 __u32 a_syms;
25 __u32 a_entry;
26 __u32 a_trsize;
27 __u32 a_drsize;
28};
29
30#define N_TXTADDR(a) (0x00008000)
31
32#define N_TRSIZE(a) ((a).a_trsize)
33#define N_DRSIZE(a) ((a).a_drsize)
34#define N_SYMSIZE(a) ((a).a_syms)
35
36#define M_ARM 103
37
38#ifndef LIBRARY_START_TEXT
39#define LIBRARY_START_TEXT (0x00c00000)
40#endif
41
42#endif