summaryrefslogtreecommitdiffstats
path: root/gss/gss_match.stp
diff options
context:
space:
mode:
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") }