]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - cddl/contrib/dtracetoolkit/Examples/tcl_proccalls_example.txt
MFC r368207,368607:
[FreeBSD/stable/10.git] / cddl / contrib / dtracetoolkit / Examples / tcl_proccalls_example.txt
1 Following are examples of running tcl_proccalls.d.
2
3 The output shows what happens when the code from Code/Tcl/func_abc.tcl is
4 traced.
5
6 # tcl_proccalls.d
7 Tracing... Hit Ctrl-C to end.
8 ^C
9     PID    COUNT PROCEDURE
10   16078        1 func_a
11   16078        1 func_b
12   16078        1 func_c
13   16078        1 tclInit
14
15 This simple output shows that PID 16078 was responsible for four procedures
16 beginning, one each of func_a, func_b, func_c, and tclInit.
17