diff options
author | Tom Rix <trix@redhat.com> | 2001-09-06 15:20:01 +0000 |
---|---|---|
committer | Tom Rix <trix@redhat.com> | 2001-09-06 15:20:01 +0000 |
commit | 1fdf02497c16f3f011e3548c4bb810b26ac670b9 (patch) | |
tree | 18939020809bd254355dacb1d871bc39887bb421 /include/coff/xcoff.h | |
parent | 7ccaa899b118c3a792abfa68eaf36116dc63a2df (diff) | |
download | gdb-1fdf02497c16f3f011e3548c4bb810b26ac670b9.zip gdb-1fdf02497c16f3f011e3548c4bb810b26ac670b9.tar.gz gdb-1fdf02497c16f3f011e3548c4bb810b26ac670b9.tar.bz2 |
Fix import symbols for AIX.
Diffstat (limited to 'include/coff/xcoff.h')
-rw-r--r-- | include/coff/xcoff.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/coff/xcoff.h b/include/coff/xcoff.h index 508ddfa..b25c294 100644 --- a/include/coff/xcoff.h +++ b/include/coff/xcoff.h @@ -122,6 +122,8 @@ /* 14 ??? */ #define XMC_TC0 15 /* Read-write TOC anchor */ #define XMC_TD 16 /* Read-write data in TOC */ +#define XMC_SV64 17 /* Read-only 64 bit supervisor call */ +#define XMC_SV3264 18 /* Read-only 32 or 64 bit supervisor call */ /* The ldhdr structure. This appears at the start of the .loader section. */ @@ -305,6 +307,11 @@ struct xcoff_link_hash_entry * XCOFF_RTINIT * Symbol is the __rtinit symbol * + * XCOFF_SYSCALL32 + * Symbol is an imported 32 bit syscall + * + * XCOFF_SYSCALL64 + * Symbol is an imported 64 bit syscall */ #define XCOFF_REF_REGULAR 0x00000001 @@ -322,7 +329,8 @@ struct xcoff_link_hash_entry #define XCOFF_DESCRIPTOR 0x00001000 #define XCOFF_MULTIPLY_DEFINED 0x00002000 #define XCOFF_RTINIT 0x00004000 - +#define XCOFF_SYSCALL32 0x00008000 +#define XCOFF_SYSCALL64 0x00010000 /* The XCOFF linker hash table. */ |