From e2607b19ce56830d64affed6a8ab169697bf2ccf Mon Sep 17 00:00:00 2001 From: ddomingo Date: Thu, 9 Oct 2008 23:31:08 +1000 Subject: latest edits --- doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-functioncalls.xml | 2 +- doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-futexes.xml | 2 +- doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-traceio2.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/SystemTap_Beginners_Guide/en-US') diff --git a/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-functioncalls.xml b/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-functioncalls.xml index 73c1a0ee..76a2fad9 100644 --- a/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-functioncalls.xml +++ b/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-functioncalls.xml @@ -38,7 +38,7 @@ probe end,timer.ms(30000) { takes the targeted kernel function as an argument. The argument supports wildcards, which enables you to target multiple kernel functions up to a certain extent. -You can increase the sample time by editing the timer in the second probe (timer.ms()). The output of contains the name of the function called and how many times it was called during the sample time (in alphabetical order). contains an excerpt from the output of stap countcalls.stp "*@mm/*.c": +You can increase the sample time by editing the timer in the second probe (timer.ms()). The output of contains the name of the function called and how many times it was called during the sample time (in alphabetical order). contains an excerpt from the output of stap countcalls.stp "*@mm/*.c": diff --git a/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-futexes.xml b/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-futexes.xml index adb3e5c4..64a3f1c1 100644 --- a/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-futexes.xml +++ b/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-futexes.xml @@ -20,7 +20,7 @@ no script in examples Simply put, a futex contention occurs when multiple processes are trying to access the same region of memory. In some cases, this can result in a deadlock between the processes in contention, thereby appearing as an application hang. - To do this, probes the futex system call. + To do this, probes the futex system call. futexcontention.stp diff --git a/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-traceio2.xml b/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-traceio2.xml index 68b337f1..342f163b 100644 --- a/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-traceio2.xml +++ b/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-traceio2.xml @@ -37,7 +37,7 @@ probe kernel.function ("vfs_write"), -For some kernel versions (e.g. 2.6.21-1.3194.fc7, you may need to revise accordingly. SystemTap will output the following error if you need to do so: +For some kernel versions (e.g. 2.6.21-1.3194.fc7), you may need to revise accordingly. SystemTap will output the following error if you need to do so: semantic error: field 'f_dentry' not found -- cgit