summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.examples/process/futexes.stp
diff options
context:
space:
mode:
authorWilliam Cohen <wcohen@redhat.com>2008-12-10 15:05:00 -0500
committerWilliam Cohen <wcohen@redhat.com>2008-12-10 15:05:00 -0500
commit04844b33aa61f84c90b14be204f3a3d70a914e0c (patch)
tree449033a342496a20bfa48bdd3eb63afed633fc44 /testsuite/systemtap.examples/process/futexes.stp
parenteb19d281a41981c6c91ebf416b7c9714de4d35e9 (diff)
downloadsystemtap-steved-04844b33aa61f84c90b14be204f3a3d70a914e0c.tar.gz
systemtap-steved-04844b33aa61f84c90b14be204f3a3d70a914e0c.tar.xz
systemtap-steved-04844b33aa61f84c90b14be204f3a3d70a914e0c.zip
Format tweaks.
Diffstat (limited to 'testsuite/systemtap.examples/process/futexes.stp')
-rwxr-xr-xtestsuite/systemtap.examples/process/futexes.stp2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.examples/process/futexes.stp b/testsuite/systemtap.examples/process/futexes.stp
index 0bd63262..d10a6a0b 100755
--- a/testsuite/systemtap.examples/process/futexes.stp
+++ b/testsuite/systemtap.examples/process/futexes.stp
@@ -11,7 +11,7 @@ global lock_waits # long-lived stats on (tid,lock) blockage elapsed time
global process_names # long-lived pid-to-execname mapping
probe syscall.futex {
- if (op != FUTEX_WAIT) next # we don't care about originators of WAKE events
+ if (op != FUTEX_WAIT) next # don't care about WAKE event originator
t = tid ()
process_names[pid()] = execname()
thread_thislock[t] = $uaddr