diff options
| author | Steve Dickson <steved@redhat.com> | 2009-06-13 06:32:19 -0400 |
|---|---|---|
| committer | Steve Dickson <steved@redhat.com> | 2009-06-13 06:32:19 -0400 |
| commit | f3ff2ff055a175d88f364693e3cb9cfc857a784e (patch) | |
| tree | aef4811ebf8ea32b5c41d910afb50f936b80d194 | |
| parent | 82467982439f83074e8810bd13ce5a2a83f1e7bc (diff) | |
| download | systemtap-f3ff2ff055a175d88f364693e3cb9cfc857a784e.tar.gz systemtap-f3ff2ff055a175d88f364693e3cb9cfc857a784e.tar.xz systemtap-f3ff2ff055a175d88f364693e3cb9cfc857a784e.zip | |
added rpciod/rpciod.stp
Signed-off-by: Steve Dickson <steved@redhat.com>
| -rw-r--r-- | rpciod/rpciod.stp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/rpciod/rpciod.stp b/rpciod/rpciod.stp new file mode 100644 index 0000000..37e5aec --- /dev/null +++ b/rpciod/rpciod.stp @@ -0,0 +1,11 @@ +/* + * stap -g -I../tapset rpciod.stp + */ +probe module("sunrpc").function("rpc_execute") +{ + if (task_status($task)) + printf("rpc_execute: task %p\n", $task); +} +probe begin { log("starting rpciod probe") } +probe end { log("ending rpciod probe") } + |
