summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordsmith <dsmith>2006-09-26 21:36:35 +0000
committerdsmith <dsmith>2006-09-26 21:36:35 +0000
commit0eb02aeb72119cb189dd72dcf64b5b5949b38bbd (patch)
tree8d9509cab11fbeaa48e7013b65048315854869b5
parent33c95e70b40bd9b6f3e3d2a6b7c0458bc7ae1e6a (diff)
downloadsystemtap-steved-0eb02aeb72119cb189dd72dcf64b5b5949b38bbd.tar.gz
systemtap-steved-0eb02aeb72119cb189dd72dcf64b5b5949b38bbd.tar.xz
systemtap-steved-0eb02aeb72119cb189dd72dcf64b5b5949b38bbd.zip
2006-09-26 David Smith <dsmith@redhat.com>
* tskdispatch.stp: Changed 'stpd' reference to 'staprun'.
-rw-r--r--tapset/LKET/Changelog4
-rwxr-xr-xtapset/LKET/tskdispatch.stp2
2 files changed, 5 insertions, 1 deletions
diff --git a/tapset/LKET/Changelog b/tapset/LKET/Changelog
index 09d11a7a..4e45b6ca 100644
--- a/tapset/LKET/Changelog
+++ b/tapset/LKET/Changelog
@@ -1,3 +1,7 @@
+2006-09-26 David Smith <dsmith@redhat.com>
+
+ * tskdispatch.stp: Changed 'stpd' reference to 'staprun'.
+
2006-09-23 Li Guanglei <guanglei@cn.ibm.com>
* register_event.stp, process.stp, lket_trace.stp: Change to
diff --git a/tapset/LKET/tskdispatch.stp b/tapset/LKET/tskdispatch.stp
index d56e69e7..eeca9f06 100755
--- a/tapset/LKET/tskdispatch.stp
+++ b/tapset/LKET/tskdispatch.stp
@@ -48,7 +48,7 @@ probe _addevent.tskdispatch.ctxswitch
{
target_pid = target()
cur_pid = pid()
- if( stp_pid() != cur_pid ) { /* skip stpd itself */
+ if( stp_pid() != cur_pid ) { /* skip staprun itself */
if(target_pid == 0 || (target_pid !=0 && (prev_pid == target_pid
|| next_pid == target_pid))) {
log_ctxswitch_tracedata(HOOKID_TASK_CTXSWITCH, prev_task, next_task)