diff options
author | Rafael Ávila de Espíndola <respindola@mozilla.com> | 2010-06-01 19:32:27 +0000 |
---|---|---|
committer | Rafael Ávila de Espíndola <respindola@mozilla.com> | 2010-06-01 19:32:27 +0000 |
commit | 3537c84bf45bc24ceb87f64316de75940b744a90 (patch) | |
tree | b5781dc4a1853ef13e60d68a1f98bb366bdc17de /include | |
parent | 105b6afd921f7db737d25b712a439a3d388dbad1 (diff) | |
download | gdb-3537c84bf45bc24ceb87f64316de75940b744a90.zip gdb-3537c84bf45bc24ceb87f64316de75940b744a90.tar.gz gdb-3537c84bf45bc24ceb87f64316de75940b744a90.tar.bz2 |
2010-06-01 Rafael Espindola <espindola@google.com>
* plugin-api.h (ld_plugin_tag): Add LDPT_OUTPUT_NAME.
2010-06-01 Rafael Espindola <espindola@google.com>
* plugin.cc (Plugin::load): Pass the output name to the plugin.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/plugin-api.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 95a7f00..f6d896f 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2010-06-01 Rafael Espindola <espindola@google.com> + + * plugin-api.h (ld_plugin_tag): Add LDPT_OUTPUT_NAME. + 2010-04-26 Pedro Alves <pedro@codesourcery.com> * filenames.h (PATH_SEPARATOR): Delete. diff --git a/include/plugin-api.h b/include/plugin-api.h index 572621f..5821785 100644 --- a/include/plugin-api.h +++ b/include/plugin-api.h @@ -260,7 +260,8 @@ enum ld_plugin_tag LDPT_MESSAGE, LDPT_GET_INPUT_FILE, LDPT_RELEASE_INPUT_FILE, - LDPT_ADD_INPUT_LIBRARY + LDPT_ADD_INPUT_LIBRARY, + LDPT_OUTPUT_NAME }; /* The plugin transfer vector. */ |