diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-08-07 16:47:18 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-08-07 16:47:18 -0400 |
commit | 384c5fe974abe35ab11dce4446dc5eed86585a3b (patch) | |
tree | 9bbdc8206d4a9c08866dc2251e40f4f7249696d4 /testsuite/systemtap.examples/process/sleepingBeauties.stp | |
parent | 9b3f22a9b83c4fd5e66874d78f4d35ad742ff802 (diff) | |
download | systemtap-steved-384c5fe974abe35ab11dce4446dc5eed86585a3b.tar.gz systemtap-steved-384c5fe974abe35ab11dce4446dc5eed86585a3b.tar.xz systemtap-steved-384c5fe974abe35ab11dce4446dc5eed86585a3b.zip |
samples: separate into subdirectories by subsystem
Diffstat (limited to 'testsuite/systemtap.examples/process/sleepingBeauties.stp')
-rw-r--r-- | testsuite/systemtap.examples/process/sleepingBeauties.stp | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/testsuite/systemtap.examples/process/sleepingBeauties.stp b/testsuite/systemtap.examples/process/sleepingBeauties.stp new file mode 100644 index 00000000..64c563a3 --- /dev/null +++ b/testsuite/systemtap.examples/process/sleepingBeauties.stp @@ -0,0 +1,58 @@ +#! /usr/bin/stap + +function time () { return gettimeofday_ms() } +global time_name = "ms" +global boredom = 10 # in time units +global name, back, backtime, bored + +/* Note: the order that the probes are listed should not matter. + However, the following order for + probe kernel.function("wait_for_completion").return and + probe kernel.function("wait_for_completion").call + avoids have the kretprobe stuff in the backtrace. + for more information see: + http://sources.redhat.com/bugzilla/show_bug.cgi?id=6436 +*/ + + +probe kernel.function("wait_for_completion").return +{ + t=tid() + + if ([t] in bored) { + patience = time() - backtime[t] + printf ("thread %d (%s) bored for %d %s\n", + t, name[t], patience, time_name) + } + + delete bored[t] + delete back[t] + delete name[t] + delete backtime[t] +} + + +probe kernel.function("wait_for_completion").call +{ + t=tid() + back[t]=backtrace() + name[t]=execname() + backtime[t]=time() + delete bored[t] +} + + +probe timer.profile { + foreach (tid+ in back) { + if ([tid] in bored) continue + + patience = time() - backtime[tid] + if (patience >= boredom) { + printf ("thread %d (%s) impatient after %d %s\n", + tid, name[tid], patience, time_name) + print_stack (back[tid]) + printf ("\n") + bored[tid] = 1 # defer further reports to wakeup + } + } +} |