diff options
author | Richard Henderson <rth@redhat.com> | 1999-06-03 03:26:17 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 1999-06-03 03:26:17 +0000 |
commit | c6e94b27674e2a1ae0feebc78f5e0a7741bd05cf (patch) | |
tree | 950f0c0a5e8a68d7f1e7a340226166a7a6243e75 | |
parent | ac50fedaa46e3b926002341c7af36b8c154ae474 (diff) | |
download | gdb-c6e94b27674e2a1ae0feebc78f5e0a7741bd05cf.zip gdb-c6e94b27674e2a1ae0feebc78f5e0a7741bd05cf.tar.gz gdb-c6e94b27674e2a1ae0feebc78f5e0a7741bd05cf.tar.bz2 |
* internal.h (BEOS_EXE_IMAGE_BASE, BEOS_DLL_IMAGE_BASE): New.
-rw-r--r-- | include/coff/ChangeLog | 4 | ||||
-rw-r--r-- | include/coff/internal.h | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/include/coff/ChangeLog b/include/coff/ChangeLog index b6c35ab..d7c9942 100644 --- a/include/coff/ChangeLog +++ b/include/coff/ChangeLog @@ -1,3 +1,7 @@ +Wed Jun 2 18:08:18 1999 Richard Henderson <rth@cygnus.com> + + * internal.h (BEOS_EXE_IMAGE_BASE, BEOS_DLL_IMAGE_BASE): New. + Mon May 17 13:35:35 1999 Stan Cox <scox@cygnus.com> * coff/arm.h (F_PIC, F_ARM_2, F_ARM_2a, F_ARM_3, F_ARM_3M, diff --git a/include/coff/internal.h b/include/coff/internal.h index d5ea951..b01730e 100644 --- a/include/coff/internal.h +++ b/include/coff/internal.h @@ -89,10 +89,14 @@ typedef struct _IMAGE_DATA_DIRECTORY } IMAGE_DATA_DIRECTORY; #define IMAGE_NUMBEROF_DIRECTORY_ENTRIES 16 -/* default image base for NT */ +/* Default image base for NT. */ #define NT_EXE_IMAGE_BASE 0x400000 #define NT_DLL_IMAGE_BASE 0x10000000 +/* Default image base for BeOS. */ +#define BEOS_EXE_IMAGE_BASE 0x80000000 +#define BEOS_DLL_IMAGE_BASE 0x10000000 + /* Extra stuff in a PE aouthdr */ #define PE_DEF_SECTION_ALIGNMENT 0x1000 |