mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 09:58:19 +08:00
* internal.h (struct nlm_internal_cygnus_section_header): Define.
* external.h (struct nlmNAME(external_cygnus_section_header): Define.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
Thu Apr 21 11:57:09 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||||
|
|
||||||
|
* internal.h (struct nlm_internal_cygnus_section_header): Define.
|
||||||
|
* external.h (struct nlmNAME(external_cygnus_section_header):
|
||||||
|
Define.
|
||||||
|
|
||||||
Wed Apr 20 14:27:43 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
Wed Apr 20 14:27:43 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||||
|
|
||||||
* internal.h (struct nlm_internal_custom_header): Remove
|
* internal.h (struct nlm_internal_custom_header): Remove
|
||||||
|
@ -162,3 +162,15 @@ typedef struct nlmNAME(external_custom_header)
|
|||||||
unsigned char dataLength[NLM_TARGET_LONG_SIZE];
|
unsigned char dataLength[NLM_TARGET_LONG_SIZE];
|
||||||
|
|
||||||
} NlmNAME(External_Custom_Header);
|
} NlmNAME(External_Custom_Header);
|
||||||
|
|
||||||
|
typedef struct nlmNAME(external_cygnus_section_header)
|
||||||
|
{
|
||||||
|
|
||||||
|
/* The header is recognized by "CyGnUsSeCs" in the stamp field. */
|
||||||
|
char stamp[10];
|
||||||
|
|
||||||
|
unsigned char offset[NLM_TARGET_LONG_SIZE];
|
||||||
|
|
||||||
|
unsigned char length[NLM_TARGET_LONG_SIZE];
|
||||||
|
|
||||||
|
} NlmNAME(External_Cygnus_Section_Header);
|
||||||
|
@ -282,3 +282,18 @@ typedef struct nlm_internal_custom_header
|
|||||||
#define Nlm32_Internal_Custom_Header Nlm_Internal_Custom_Header
|
#define Nlm32_Internal_Custom_Header Nlm_Internal_Custom_Header
|
||||||
#define nlm64_internal_custom_header nlm_internal_custom_header
|
#define nlm64_internal_custom_header nlm_internal_custom_header
|
||||||
#define Nlm64_Internal_Custom_Header Nlm_Internal_Custom_Header
|
#define Nlm64_Internal_Custom_Header Nlm_Internal_Custom_Header
|
||||||
|
|
||||||
|
typedef struct nlm_internal_cygnus_section_header
|
||||||
|
{
|
||||||
|
/* The header is recognized by "CyGnUsSeCs" in the stamp field. */
|
||||||
|
char stamp[10];
|
||||||
|
/* File location of debugging information. */
|
||||||
|
file_ptr offset;
|
||||||
|
/* Length of debugging information. */
|
||||||
|
bfd_size_type length;
|
||||||
|
} Nlm_Internal_Cygnus_Section_Header;
|
||||||
|
|
||||||
|
#define nlm32_internal_cygnus_section_header nlm_internal_cygnus_section_header
|
||||||
|
#define Nlm32_Internal_Cygnus_Section_Header Nlm_Internal_Cygnus_Section_Header
|
||||||
|
#define nlm64_internal_cygnus_section_header nlm_internal_cygnus_section_header
|
||||||
|
#define Nlm64_Internal_Cygnus_Section_Header Nlm_Internal_Cygnus_Section_Header
|
||||||
|
Reference in New Issue
Block a user