From aa15b9f0167dfc87c3bd78e956005b0eacefbc98 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Fri, 15 Aug 2008 14:43:03 -0400 Subject: extend callgraph example to use $$parms / $$return --- testsuite/systemtap.examples/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testsuite/systemtap.examples/index.html') diff --git a/testsuite/systemtap.examples/index.html b/testsuite/systemtap.examples/index.html index 327e9ef9..d6b1c99b 100644 --- a/testsuite/systemtap.examples/index.html +++ b/testsuite/systemtap.examples/index.html @@ -47,9 +47,9 @@ subsystems: disk cpu, keywords: disk cpu use graph
  • general/helloworld.stp - SystemTap "Hello World" Program
    subsystems: none, keywords: simple

    A basic "Hello World" program implemented in SystemTap script. It prints out "hello world" message and then immediately exits.

  • -
  • general/para-callgraph.stp - Tracing Calls for Sections of Code
    -subsystems: kernel, keywords: trace callgraph
    -

    The script takes two arguments: the first argument is the function to starts/stops the per thread call graph traces and the second argument is the list of functions to generate trace information on. The script prints out a timestap for the thread, the function name and pid, followed by entry or exit symboly and function name.

  • +
  • general/para-callgraph.stp - Callgraph tracing with arguments
    +subsystems: general, keywords: trace callgraph
    +

    Print a timed per-thread callgraph, complete with function parameters and return values. The first parameter names the function probe points to trace. The optional second parameter names the probe points for trigger functions, which acts to enable tracing for only those functions that occur while the current thread is nested within the trigger.

  • io/disktop.stp - Summarize Disk Read/Write Traffic
    subsystems: disk, keywords: disk

    Get the status of reading/writing disk every 5 seconds, output top ten entries during that period.

  • -- cgit