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/sig_by_proc.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/sig_by_proc.stp')
-rwxr-xr-x | testsuite/systemtap.examples/process/sig_by_proc.stp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/testsuite/systemtap.examples/process/sig_by_proc.stp b/testsuite/systemtap.examples/process/sig_by_proc.stp new file mode 100755 index 00000000..ce845aed --- /dev/null +++ b/testsuite/systemtap.examples/process/sig_by_proc.stp @@ -0,0 +1,36 @@ +#! /usr/bin/env stap + +# Copyright (C) 2006 IBM Corp. +# +# This file is part of systemtap, and is free software. You can +# redistribute it and/or modify it under the terms of the GNU General +# Public License (GPL); either version 2, or (at your option) any +# later version. + +# +# Print signal counts by process name in descending order. +# + +global sigcnt, sig2name + +probe begin { + print("Collecting data... Type Ctrl-C to exit and display results\n") +} + +probe signal.send +{ + sigcnt[execname(), pid_name, sig]++ + + if (!(sig in sig2name)) sig2name[sig] = sig_name +} + +probe end +{ + printf("%-16s %-16s %-16s %s\n", + "SENDER", "RECEIVER", "SIGNAL", "COUNT") + + foreach ([snd_name, rcv_name, sig_num] in sigcnt-) + printf("%-16s %-16s %-16s %d\n", + snd_name, rcv_name, sig2name[sig_num], + sigcnt[snd_name, rcv_name, sig_num]) +} |