This is the mail archive of the
systemtap@sourceware.org
mailing list for the systemtap project.
Re: which function is instrumentable?
On 03/23/2011 04:23 AM, Zhiwei Ying wrote:
> I see. What I am looking for is to exclude those bad-function
> automatically. I can write a script to test the function one by one,
> but it's ugly.
>
> Can stap provides some hint about the probability, which could be used
> to estimate the correctness of instrumentation?
>
> Can stap exclude those inlined function with some option?
>
The following will exclude the inlined functions:
stap -l 'module("foo").function("*").call'
-Will