xref: /netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/tcl_proccalls_example.txt (revision c29d51755812ace2e87aeefdb06cb2b4dac7087a)
1Following are examples of running tcl_proccalls.d.
2
3The output shows what happens when the code from Code/Tcl/func_abc.tcl is
4traced.
5
6# tcl_proccalls.d
7Tracing... 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
15This simple output shows that PID 16078 was responsible for four procedures
16beginning, one each of func_a, func_b, func_c, and tclInit.
17
18