From: Mark Mitchell Date: Wed, 23 Jun 1999 11:03:45 +0000 (+0000) Subject: * bfdlink.h (struct bfd_link_hash_entry): Add init_function and X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=94883c63a8425e74a6d080763ed59e9ff9f748a0;p=binutils-gdb.git * bfdlink.h (struct bfd_link_hash_entry): Add init_function and fini_function. --- diff --git a/include/ChangeLog b/include/ChangeLog index aa7bdb04b88..ea0bb3c6aac 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +1999-06-22 Mark Mitchell + + * bfdlink.h (struct bfd_link_hash_entry): Add init_function and + fini_function. + 1999-06-20 Mark Mitchell * mips.h (Elf32_Internal_Msym): New structure. diff --git a/include/bfdlink.h b/include/bfdlink.h index a055fa082da..f7f113c37e3 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -237,6 +237,13 @@ struct bfd_link_info 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. */ 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