From be7fd6299b45a46c9dc56bd6bd2ddb5b0afd9362 Mon Sep 17 00:00:00 2001 From: ddomingo Date: Fri, 28 Nov 2008 09:47:00 +1000 Subject: more indexes --- doc/SystemTap_Beginners_Guide/en-US/Scripts.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'doc/SystemTap_Beginners_Guide/en-US/Scripts.xml') 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): <- sys_socketcall +This sample output contains the following information: + + + The time delta (in microseconds) since the previous entry; i.e. the number of microseconds since the last traced function call. + + The process name (and its corresponding ID) that made the function call. + + An arrow signifying whether the call was an entry (<-) or an exit (->); the indentations help you match specific function call entries with their corresponding exits. + + The name of the function called by the process. + + 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 -- cgit