diff options
author | Mark Mitchell <mark@codesourcery.com> | 1999-06-23 11:03:45 +0000 |
---|---|---|
committer | Mark Mitchell <mark@codesourcery.com> | 1999-06-23 11:03:45 +0000 |
commit | 71bc641897fac19c44cc4f559cf72c60f6f7740b (patch) | |
tree | c64f5468881a219f520b6ca06abeff0fcba8ed83 | |
parent | 30b962fd67214e87419b4cf00b6b356ebb2ddb2b (diff) | |
download | cygnal-71bc641897fac19c44cc4f559cf72c60f6f7740b.tar.gz cygnal-71bc641897fac19c44cc4f559cf72c60f6f7740b.tar.bz2 cygnal-71bc641897fac19c44cc4f559cf72c60f6f7740b.zip |
* bfdlink.h (struct bfd_link_hash_entry): Add init_function and
fini_function.
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/bfdlink.h | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index aa7bdb04b..ea0bb3c6a 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -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> * mips.h (Elf32_Internal_Msym): New structure. diff --git a/include/bfdlink.h b/include/bfdlink.h index a055fa082..f7f113c37 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 |