From 8d6958765e6252c0dd8157f837b0005f83aa80cb Mon Sep 17 00:00:00 2001 From: guanglei Date: Tue, 1 Aug 2006 02:20:47 +0000 Subject: Bugzilla Bug 2422: module("*") probes fail with debug-info-less modules --- tapsets.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tapsets.cxx') diff --git a/tapsets.cxx b/tapsets.cxx index 6d9c8c00..6d843d5b 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -555,7 +555,7 @@ dwflpp } - void get_module_dwarf(bool required = true) + void get_module_dwarf(bool required = false) { if (!module_dwarf) module_dwarf = dwfl_module_getdwarf(module, &module_bias); @@ -582,7 +582,7 @@ dwflpp void limit_search_to_function_pattern(string const & pattern) { - get_module_dwarf(true); + get_module_dwarf(false); cache.select_die_subsets(module_dwarf, pattern, pattern_limited_cus, pattern_limited_funcs); -- cgit