summaryrefslogtreecommitdiffstats
path: root/gss/gss_match.stp
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2010-07-25 14:30:43 -0400
committerSteve Dickson <steved@redhat.com>2010-07-25 14:30:43 -0400
commit9135439c59faaff1018e486beb3b03ee48127b92 (patch)
treecb74539d0d7e5d4327e6344c8e6c4f42cae76206 /gss/gss_match.stp
parent7c2fe2a9d4b9f3f91f3ec24e78bc5471ab2a78d1 (diff)
downloadsystemtap-9135439c59faaff1018e486beb3b03ee48127b92.tar.gz
systemtap-9135439c59faaff1018e486beb3b03ee48127b92.tar.xz
systemtap-9135439c59faaff1018e486beb3b03ee48127b92.zip
a number of updates an new files
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'gss/gss_match.stp')
-rw-r--r--gss/gss_match.stp8
1 files changed, 8 insertions, 0 deletions
diff --git a/gss/gss_match.stp b/gss/gss_match.stp
new file mode 100644
index 0000000..3d1f14e
--- /dev/null
+++ b/gss/gss_match.stp
@@ -0,0 +1,8 @@
+probe module("auth_rpcgss").function("gss_match") {
+ printf("gss_match(%s): uid %d \n", execname(), $acred->uid);
+}
+probe module("auth_rpcgss").function("gss_match").return {
+ printf("gss_match(%s): return %d \n", execname(), $return);
+}
+probe begin { log("starting gss probe") }
+probe end { log("ending gss probe") }