summaryrefslogtreecommitdiffstats
path: root/tapset-utrace.cxx
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-09-14 11:58:22 -0400
committerDave Brolley <brolley@redhat.com>2009-09-14 11:58:22 -0400
commitd2c9ec9b6933fbe36834d7ad52be0994e96eb12c (patch)
treeb643f2c742d1fc1ea5e16ad9a6bc77481d88449c /tapset-utrace.cxx
parent6db2f61f39669ad1f0fa23595b94ff22c8fc50d6 (diff)
downloadsystemtap-steved-d2c9ec9b6933fbe36834d7ad52be0994e96eb12c.tar.gz
systemtap-steved-d2c9ec9b6933fbe36834d7ad52be0994e96eb12c.tar.xz
systemtap-steved-d2c9ec9b6933fbe36834d7ad52be0994e96eb12c.zip
Allow remaining process.* probes for unprivileged users.
Diffstat (limited to 'tapset-utrace.cxx')
-rw-r--r--tapset-utrace.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/tapset-utrace.cxx b/tapset-utrace.cxx
index 490af20f..22682776 100644
--- a/tapset-utrace.cxx
+++ b/tapset-utrace.cxx
@@ -1040,12 +1040,16 @@ register_tapset_utrace(systemtap_session& s)
->allow_unprivileged()
->bind(builder);
roots[i]->bind(TOK_THREAD)->bind(TOK_BEGIN)
+ ->allow_unprivileged()
->bind(builder);
roots[i]->bind(TOK_THREAD)->bind(TOK_END)
+ ->allow_unprivileged()
->bind(builder);
roots[i]->bind(TOK_SYSCALL)
+ ->allow_unprivileged()
->bind(builder);
roots[i]->bind(TOK_SYSCALL)->bind(TOK_RETURN)
+ ->allow_unprivileged()
->bind(builder);
}
}