diff options
author | ddomingo <ddomingo@redhat.com> | 2008-10-09 23:31:08 +1000 |
---|---|---|
committer | ddomingo <ddomingo@redhat.com> | 2008-10-09 23:31:08 +1000 |
commit | e2607b19ce56830d64affed6a8ab169697bf2ccf (patch) | |
tree | c4cf418d5cf296b7c29fa6ccba3cbe4968451857 | |
parent | 137cb502e6e557bc7130f67ebf5c9068fa080627 (diff) | |
download | systemtap-steved-e2607b19ce56830d64affed6a8ab169697bf2ccf.tar.gz systemtap-steved-e2607b19ce56830d64affed6a8ab169697bf2ccf.tar.xz systemtap-steved-e2607b19ce56830d64affed6a8ab169697bf2ccf.zip |
latest edits
3 files changed, 3 insertions, 3 deletions
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) { <para><xref linkend="countcalls"/> 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.</para> -<para>You can increase the sample time by editing the timer in the second probe (<command>timer.ms()</command>). The output of <xref linkend="countcalls"/> contains the name of the function called and how many times it was called during the sample time (in alphabetical order). <xref linkend="countcallsoutput"/> contains an excerpt from the output of <command>stap countcalls.stp "*@mm/*.c"</command>: +<para>You can increase the sample time by editing the timer in the second probe (<command>timer.ms()</command>). The output of <xref linkend="countcalls"/> contains the name of the function called and how many times it was called during the sample time (in alphabetical order). <xref linkend="countcallsoutput"/> contains an excerpt from the output of <command>stap countcalls.stp "*@mm/*.c"</command>:</para> <example id="countcallsoutput"> 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 <para>Simply put, a <command>futex</command> 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.</para> - <para>To do this, <xref linkend="futexcontention"/> probes the <command>futex</command> system call.</section> + <para>To do this, <xref linkend="futexcontention"/> probes the <command>futex</command> system call.</para> <formalpara id="futexcontention"> <title>futexcontention.stp</title> 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"), </para> </formalpara> -<para condition="fedora">For some kernel versions (e.g. <filename>2.6.21-1.3194.fc7</filename>, you may need to revise <xref linkend="traceio2"/> accordingly. SystemTap will output the following error if you need to do so:</para> +<para condition="fedora">For some kernel versions (e.g. <filename>2.6.21-1.3194.fc7</filename>), you may need to revise <xref linkend="traceio2"/> accordingly. SystemTap will output the following error if you need to do so:</para> <screen condition="fedora"> semantic error: field 'f_dentry' not found |