Lines Matching refs:stacks
81 walkers. Similar broken stacks will be seen by other profilers and debuggers
93 Now adding the -d option to delimit kernel and user stacks:
179 A "--" is printed between the kernel and user stacks.
290 some Java stacks where user-level has been walked correctly (even includes a
365 Watch what happens if I filter on kernel stacks only (-K) for ip_output():
392 Here is just the user stacks, fetched during the kernel function ip_output():
438 Kernel stacks are absent as this didn't enter kernel code.
770 kernel stacks only (-K) with offsets (-s):
866 -P, --perpid display stacks separately for each process
867 -K, --kernel-stacks-only
869 -U, --user-stacks-only
872 -d, --delimited insert delimiter between kernel/user stacks
882 ./stackcount 'tcp_send*' # count stacks for funcs matching tcp_send*
885 ./stackcount -p 185 ip_output # count ip_output stacks for PID 185 only
886 ./stackcount -p 185 c:malloc # count stacks for malloc in PID 185
887 ./stackcount t:sched:sched_fork # count stacks for sched_fork tracepoint
888 ./stackcount -p 185 u:node:* # count stacks for all USDT probes in node
889 ./stackcount -K t:sched:sched_switch # kernel stacks only
890 ./stackcount -U t:sched:sched_switch # user stacks only