diff options
author | Dave Brolley <brolley@redhat.com> | 2009-07-23 12:43:03 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-07-23 12:43:03 -0400 |
commit | c04c525de43003fb00612df635a7c819b5a1d645 (patch) | |
tree | 22cd1e41f84a66d7eaece8e17138bf83427f4bab /dwflpp.h | |
parent | 6c456acd35009630facd95cca91483a92aa50e9f (diff) | |
parent | 4a8636a307a9a532dcc60b5ad8bf809a20dc24c3 (diff) | |
download | systemtap-steved-c04c525de43003fb00612df635a7c819b5a1d645.tar.gz systemtap-steved-c04c525de43003fb00612df635a7c819b5a1d645.tar.xz systemtap-steved-c04c525de43003fb00612df635a7c819b5a1d645.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'dwflpp.h')
-rw-r--r-- | dwflpp.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -167,6 +167,7 @@ struct dwflpp std::string function_name; dwflpp(systemtap_session & session, const std::string& user_module, bool kernel_p); + dwflpp(systemtap_session & session, const std::vector<std::string>& user_modules); ~dwflpp(); void get_module_dwarf(bool required = false, bool report = true); @@ -281,7 +282,7 @@ private: Dwarf_Die * function; void setup_kernel(const std::string& module_name, bool debuginfo_needed = true); - void setup_user(const std::string& module_name, bool debuginfo_needed = true); + void setup_user(const std::vector<std::string>& modules, bool debuginfo_needed = true); typedef std::map<Dwarf*, std::vector<Dwarf_Die>*> module_cu_cache_t; module_cu_cache_t module_cu_cache; |