Elliott Hughes | 180edef | 2023-11-02 00:08:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is auto-generated. Modifications will be lost. |
| 3 | * |
| 4 | * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/ |
| 5 | * for more information. |
| 6 | */ |
Elliott Hughes | abd6261 | 2013-11-08 11:45:48 -0800 | [diff] [blame] | 7 | #ifndef _ASM_X86_A_OUT_H |
| 8 | #define _ASM_X86_A_OUT_H |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 9 | struct exec { |
| 10 | unsigned int a_info; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 11 | unsigned a_text; |
| 12 | unsigned a_data; |
| 13 | unsigned a_bss; |
| 14 | unsigned a_syms; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 15 | unsigned a_entry; |
| 16 | unsigned a_trsize; |
| 17 | unsigned a_drsize; |
Elliott Hughes | abd6261 | 2013-11-08 11:45:48 -0800 | [diff] [blame] | 18 | }; |
| 19 | #define N_TRSIZE(a) ((a).a_trsize) |
| 20 | #define N_DRSIZE(a) ((a).a_drsize) |
| 21 | #define N_SYMSIZE(a) ((a).a_syms) |
Elliott Hughes | abd6261 | 2013-11-08 11:45:48 -0800 | [diff] [blame] | 22 | #endif |