diff options
Diffstat (limited to 'tapset-utrace.cxx')
-rw-r--r-- | tapset-utrace.cxx | 4 |
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); } } |