summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn B. Brandenburg <bbb@cs.unc.edu>2010-11-09 00:15:28 -0500
committerBjörn B. Brandenburg <bbb@cs.unc.edu>2010-11-09 00:15:28 -0500
commit7f2d5d4088f732704aec976071a7c1192afb27eb (patch)
tree984fae63b17f0ef720e204ea9cc5d34bf7b3497f
parent670ae348b73cb154ee76df4f6150d9d03b31ff03 (diff)
two minor word tweaks to the tracing doc
-rw-r--r--doc/tracing.html4
-rw-r--r--doc/tracing.txt4
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/tracing.html b/doc/tracing.html
index fae0bd2..8640d3f 100644
--- a/doc/tracing.html
+++ b/doc/tracing.html
@@ -88,7 +88,7 @@ done
88<pre><code>sort -n my_debug_log &gt; my_sorted_debug_log 88<pre><code>sort -n my_debug_log &gt; my_sorted_debug_log
89</code></pre> 89</code></pre>
90 90
91<p><strong>Hint</strong>: One can use <code>netcat(1)</code> to send the debug messages to another machine via UDP to avoid filesystem activity.</p> 91<p><strong>Hint</strong>: One can use <code>netcat(1)</code> to send the debug messages to another host to avoid filesystem activity.</p>
92 92
93<h2>Recording Overhead Traces</h2> 93<h2>Recording Overhead Traces</h2>
94 94
@@ -117,7 +117,7 @@ Used to measure the overhead incurred at the beginning of a scheduling quantum.<
117<li><code>PLUGIN_TICK_START</code>, <code>PLUGIN_TICK_END</code>: <br /> 117<li><code>PLUGIN_TICK_START</code>, <code>PLUGIN_TICK_END</code>: <br />
118Like [<code>TICK_START</code>, <code>TICK_END</code>], but only measures the time spent by the active scheduling plugin.</li> 118Like [<code>TICK_START</code>, <code>TICK_END</code>], but only measures the time spent by the active scheduling plugin.</li>
119<li><code>PLUGIN_SCHED_START</code>, <code>PLUGIN_SCHED_END</code>: <br /> 119<li><code>PLUGIN_SCHED_START</code>, <code>PLUGIN_SCHED_END</code>: <br />
120Like [<code>SCHED_START</code>, <code>SCHED_END</code>], but only measures the time spent by the active scheduling plugin. There is no equivalent <code>SCHED2</code> counterpart because the scheduling plugins do not directly compute to the <code>SCHED2</code> overhead.</li> 120Like [<code>SCHED_START</code>, <code>SCHED_END</code>], but only measures the time spent by the active scheduling plugin. There is no equivalent <code>SCHED2</code> counterpart because the scheduling plugins do not directly contribute to the <code>SCHED2</code> overhead.</li>
121<li><code>RELEASE_START</code>, <code>RELEASE_END</code>: <br /> 121<li><code>RELEASE_START</code>, <code>RELEASE_END</code>: <br />
122Used to measure the time spent to enqueue a newly-released job in a ready queue.</li> 122Used to measure the time spent to enqueue a newly-released job in a ready queue.</li>
123</ul> 123</ul>
diff --git a/doc/tracing.txt b/doc/tracing.txt
index 2e44e10..7efcffd 100644
--- a/doc/tracing.txt
+++ b/doc/tracing.txt
@@ -78,7 +78,7 @@ Example:
78 78
79 sort -n my_debug_log > my_sorted_debug_log 79 sort -n my_debug_log > my_sorted_debug_log
80 80
81**Hint**: One can use `netcat(1)` to send the debug messages to another machine via UDP to avoid filesystem activity. 81**Hint**: One can use `netcat(1)` to send the debug messages to another host to avoid filesystem activity.
82 82
83Recording Overhead Traces 83Recording Overhead Traces
84-------------------------- 84--------------------------
@@ -106,7 +106,7 @@ Used to measure the overhead incurred at the beginning of a scheduling quantum.
106- `PLUGIN_TICK_START`, `PLUGIN_TICK_END`: 106- `PLUGIN_TICK_START`, `PLUGIN_TICK_END`:
107Like [`TICK_START`, `TICK_END`], but only measures the time spent by the active scheduling plugin. 107Like [`TICK_START`, `TICK_END`], but only measures the time spent by the active scheduling plugin.
108- `PLUGIN_SCHED_START`, `PLUGIN_SCHED_END`: 108- `PLUGIN_SCHED_START`, `PLUGIN_SCHED_END`:
109Like [`SCHED_START`, `SCHED_END`], but only measures the time spent by the active scheduling plugin. There is no equivalent `SCHED2` counterpart because the scheduling plugins do not directly compute to the `SCHED2` overhead. 109Like [`SCHED_START`, `SCHED_END`], but only measures the time spent by the active scheduling plugin. There is no equivalent `SCHED2` counterpart because the scheduling plugins do not directly contribute to the `SCHED2` overhead.
110- `RELEASE_START`, `RELEASE_END`: 110- `RELEASE_START`, `RELEASE_END`:
111Used to measure the time spent to enqueue a newly-released job in a ready queue. 111Used to measure the time spent to enqueue a newly-released job in a ready queue.
112 112