This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug translator/2422] module("*") probes fail with debug-info-less modules


------- Additional Comments From guanglei at cn dot ibm dot com  2006-07-24 03:37 -------
(In reply to comment #0)
> [..]

Here is a patch. Please take a review. This patch will cause stap to skip a
module without debuginfo only when the probe looks like "probe module("*").xx" 

RCS file: /cvs/systemtap/src/tapsets.cxx,v
retrieving revision 1.137
diff -r1.137 tapsets.cxx
585c585,588
<     get_module_dwarf(true);
---
>     if(module_name != "" && pattern == "*")
>           get_module_dwarf(false);
>     else
>           get_module_dwarf(true);

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=2422

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]