diff options
author | Tom Rix <trix@redhat.com> | 2001-12-18 00:32:32 +0000 |
---|---|---|
committer | Tom Rix <trix@redhat.com> | 2001-12-18 00:32:32 +0000 |
commit | 67fdeebeb2246ec95449f9b1428ae000f7744e92 (patch) | |
tree | f90f1ca2cfaf396023e8d983caf1aa24ddd9f8ff /include/coff/xcoff.h | |
parent | 84b229ef245c6c5700d16fca9788a3613d3e6977 (diff) | |
download | gdb-67fdeebeb2246ec95449f9b1428ae000f7744e92.zip gdb-67fdeebeb2246ec95449f9b1428ae000f7744e92.tar.gz gdb-67fdeebeb2246ec95449f9b1428ae000f7744e92.tar.bz2 |
Minimal handle .typchk and .except section.
Diffstat (limited to 'include/coff/xcoff.h')
-rw-r--r-- | include/coff/xcoff.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/coff/xcoff.h b/include/coff/xcoff.h index b8fc378..e9dbaf2 100644 --- a/include/coff/xcoff.h +++ b/include/coff/xcoff.h @@ -44,6 +44,15 @@ another section header with STYP_OVRFLO set. */ #define STYP_OVRFLO 0x8000 +/* Specifies an exception section. A section of this type provides + information to identify the reason that a trap or ececptin occured within + and executable object program */ +#define STYP_EXCEPT 0x0100 + +/* Specifies a type check section. A section of this type contains parameter + argument type check strings used by the AIX binder. */ +#define STYP_TYPCHK 0x4000 + #define RS6K_AOUTHDR_OMAGIC 0x0107 /* old: text & data writeable */ #define RS6K_AOUTHDR_NMAGIC 0x0108 /* new: text r/o, data r/w */ #define RS6K_AOUTHDR_ZMAGIC 0x010B /* paged: text r/o, both page-aligned */ |