summaryrefslogtreecommitdiffstats
path: root/doc/SystemTap_Beginners_Guide/en-US/Scripts.xml
diff options
context:
space:
mode:
authorddomingo <ddomingo@redhat.com>2008-11-28 09:47:00 +1000
committerddomingo <ddomingo@redhat.com>2008-11-28 09:47:00 +1000
commitbe7fd6299b45a46c9dc56bd6bd2ddb5b0afd9362 (patch)
treee8d5dec862ba37f46a1b3ce2fc27ae580b7fed9e /doc/SystemTap_Beginners_Guide/en-US/Scripts.xml
parent021dcea6a8cf44ca4a2e7a3d6f76fc1b8a9c88da (diff)
downloadsystemtap-steved-be7fd6299b45a46c9dc56bd6bd2ddb5b0afd9362.tar.gz
systemtap-steved-be7fd6299b45a46c9dc56bd6bd2ddb5b0afd9362.tar.xz
systemtap-steved-be7fd6299b45a46c9dc56bd6bd2ddb5b0afd9362.zip
more indexes
Diffstat (limited to 'doc/SystemTap_Beginners_Guide/en-US/Scripts.xml')
-rw-r--r--doc/SystemTap_Beginners_Guide/en-US/Scripts.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/SystemTap_Beginners_Guide/en-US/Scripts.xml b/doc/SystemTap_Beginners_Guide/en-US/Scripts.xml
index 233dc069..e6ffc4ef 100644
--- a/doc/SystemTap_Beginners_Guide/en-US/Scripts.xml
+++ b/doc/SystemTap_Beginners_Guide/en-US/Scripts.xml
@@ -957,6 +957,18 @@ probe kernel.function("*@net/socket.c").return
4775 ftp(7223): &lt;- sys_socketcall
</screen>
+<para>This sample output contains the following information:</para>
+
+<itemizedlist>
+ <listitem><para>The time delta (in microseconds) since the previous entry; i.e. the number of microseconds since the last traced function call.</para></listitem>
+
+ <listitem><para>The process name (and its corresponding ID) that made the function call.</para></listitem>
+
+ <listitem><para>An arrow signifying whether the call was an entry (<computeroutput>&lt;-</computeroutput>) or an exit (<computeroutput>-></computeroutput>); the indentations help you match specific function call entries with their corresponding exits.</para></listitem>
+
+ <listitem><para>The name of the function called by the process.</para></listitem>
+</itemizedlist>
+
<remark>remember to add a reference later to "tapsets" from here, to clarify
that thread_indent is defined in tapsets as a special function of sorts</remark>