From 85c7a9a6efa9de3b8439f16c10601540af4a0e1e Mon Sep 17 00:00:00 2001 From: ddomingo Date: Wed, 8 Oct 2008 08:12:24 +1000 Subject: corrected tag errors --- doc/SystemTap_Beginners_Guide/en-US/Scripts.xml | 48 +++++++++++++++++++++++-- 1 file changed, 45 insertions(+), 3 deletions(-) (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 8888c7b8..55a9c5de 100644 --- a/doc/SystemTap_Beginners_Guide/en-US/Scripts.xml +++ b/doc/SystemTap_Beginners_Guide/en-US/Scripts.xml @@ -430,7 +430,7 @@ probe syscall.* { When is run with the argument -x process ID, it watches all system calls (as specified by the event syscall.*) and prints out the name of all system calls made by the specified process. - This has the same effect as specifying if (pid() == process ID each time you wish to target a specific process. However, using target() makes it easier for you to re-use the script, giving you the ability to simply pass a process ID as an argument each time you wish to run the script (i.e. stap allsyscalls.stp -x process ID). + This has the same effect as specifying if (pid() == process ID each time you wish to target a specific process. However, using target() makes it easier for you to re-use the script, giving you the ability to simply pass a process ID as an argument each time you wish to run the script (e.g. stap targetexample.stp -x process ID).