/
usr
/
share
/
systemtap
/
examples
/
profiling
/
File Upload :
llllll
Current File: //usr/share/systemtap/examples/profiling/functioncallcount.stp
#!/usr/bin/stap # The following line command will probe all the functions # in kernel's memory management code: # # stap functioncallcount.stp "*@mm/*.c" probe kernel.function(@1).call { # probe functions listed on commandline called[ppfunc()] <<< 1 # add a count efficiently } global called probe end { foreach (fn in called-) # Sort by call count (in decreasing order) # (fn+ in called) # Sort by function name printf("%s %d\n", fn, @count(called[fn])) exit() }
Copyright ©2k19 -
Hexid
|
Tex7ure