* bfdlink.h (struct bfd_link_hash_entry): Add init_function and

fini_function.
This commit is contained in:
Mark Mitchell 1999-06-23 11:03:45 +00:00
parent 30b962fd67
commit 71bc641897
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,8 @@
1999-06-22 Mark Mitchell <mark@codesourcery.com>
* bfdlink.h (struct bfd_link_hash_entry): Add init_function and
fini_function.
1999-06-20 Mark Mitchell <mark@codesourcery.com> 1999-06-20 Mark Mitchell <mark@codesourcery.com>
* mips.h (Elf32_Internal_Msym): New structure. * mips.h (Elf32_Internal_Msym): New structure.

View File

@ -237,6 +237,13 @@ struct bfd_link_info
MPC860 C0 (or earlier) should be checked for and modified. It gives the MPC860 C0 (or earlier) should be checked for and modified. It gives the
number of bytes that should be checked at the end of each text page. */ number of bytes that should be checked at the end of each text page. */
int mpc860c0; int mpc860c0;
/* The function to call when the executable or shared object is
loaded. */
const char *init_function;
/* The function to call when the executable or shared object is
unloaded. */
const char *fini_function;
}; };
/* This structures holds a set of callback functions. These are /* This structures holds a set of callback functions. These are