summaryrefslogtreecommitdiffstats
path: root/dwflpp.h
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2009-05-15 12:29:19 -0700
committerJosh Stone <jistone@redhat.com>2009-05-15 12:29:19 -0700
commitaa214f4bf19e711e01998a07b390934c1b027f74 (patch)
tree3e01e5ab631dadbc769fca27f02435d5a9fd6930 /dwflpp.h
parent440f755a3b886c6cfdca9f523302f1f0938f7fec (diff)
downloadsystemtap-steved-aa214f4bf19e711e01998a07b390934c1b027f74.tar.gz
systemtap-steved-aa214f4bf19e711e01998a07b390934c1b027f74.tar.xz
systemtap-steved-aa214f4bf19e711e01998a07b390934c1b027f74.zip
Remove unused dwflpp methods
These three methods had no callers, and are thus obsolete: dwflpp::focus_on_module_containing_global_address(Dwarf_Addr a) dwflpp::global_address_to_module(Dwarf_Addr a) dwflpp::cu_name_matches(string pattern)
Diffstat (limited to 'dwflpp.h')
-rw-r--r--dwflpp.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/dwflpp.h b/dwflpp.h
index 23015fdc..85817391 100644
--- a/dwflpp.h
+++ b/dwflpp.h
@@ -196,13 +196,11 @@ struct dwflpp
void focus_on_module(Dwfl_Module * m, module_info * mi);
void focus_on_cu(Dwarf_Die * c);
void focus_on_function(Dwarf_Die * f);
- void focus_on_module_containing_global_address(Dwarf_Addr a);
void query_cu_containing_global_address(Dwarf_Addr a, void *arg);
void query_cu_containing_module_address(Dwarf_Addr a, void *arg);
Dwarf_Addr module_address_to_global(Dwarf_Addr a);
- Dwarf_Addr global_address_to_module(Dwarf_Addr a);
bool module_name_matches(std::string pattern);
bool name_has_wildcard(std::string pattern);
@@ -212,8 +210,6 @@ struct dwflpp
bool function_name_matches(std::string pattern);
bool function_name_final_match(std::string pattern);
- bool cu_name_matches(std::string pattern);
-
void setup_kernel(bool debuginfo_needed = true);
void setup_user(const std::string& module_name, bool debuginfo_needed = true);