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__
Ben Cheng4b29af02012-03-07 16:14:53 -080014
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080015#include <linux/personality.h>
16#include <asm/types.h>
Ben Cheng4b29af02012-03-07 16:14:53 -080017
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080018struct 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};
Ben Cheng4b29af02012-03-07 16:14:53 -080029
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080030#define N_TXTADDR(a) (0x00008000)
Ben Cheng4b29af02012-03-07 16:14:53 -080031
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080032#define N_TRSIZE(a) ((a).a_trsize)
33#define N_DRSIZE(a) ((a).a_drsize)
34#define N_SYMSIZE(a) ((a).a_syms)
Ben Cheng4b29af02012-03-07 16:14:53 -080035
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080036#define M_ARM 103
Ben Cheng4b29af02012-03-07 16:14:53 -080037
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080038#ifndef LIBRARY_START_TEXT
39#define LIBRARY_START_TEXT (0x00c00000)
40#endif
Ben Cheng4b29af02012-03-07 16:14:53 -080041
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080042#endif