summaryrefslogtreecommitdiffstats
path: root/tapset
diff options
context:
space:
mode:
Diffstat (limited to 'tapset')
-rw-r--r--tapset/logging.stp8
-rw-r--r--tapset/timestamp.stp2
2 files changed, 5 insertions, 5 deletions
diff --git a/tapset/logging.stp b/tapset/logging.stp
index d2cca612..91f9672b 100644
--- a/tapset/logging.stp
+++ b/tapset/logging.stp
@@ -8,21 +8,21 @@
// send a string out with a newline
// Deprecated. print* functions are much more efficient.
-function log (msg:string) %{
+function log (msg:string) %{ /* unprivileged */
_stp_printf ("%s\n", THIS->msg);
%}
-function warn (msg:string) %{
+function warn (msg:string) %{ /* unprivileged */
_stp_warn ("%s", THIS->msg);
%}
// NB: exit() does *not* cause immediate return from current function/probe
-function exit () %{
+function exit () %{ /* unprivileged */
atomic_set (&session_state, STAP_SESSION_STOPPING);
_stp_exit ();
%}
-function error (msg:string) %{
+function error (msg:string) %{ /* unprivileged */
/* This is an assignment of a local char[] to a global char*.
It would normally be just as unsafe as returning a pointer to
a local variable from a function. However, the translated
diff --git a/tapset/timestamp.stp b/tapset/timestamp.stp
index 0b9d350a..1980932a 100644
--- a/tapset/timestamp.stp
+++ b/tapset/timestamp.stp
@@ -16,7 +16,7 @@
*
* Return the processor cycle counter value, or 0 if unavailable.
*/
-function get_cycles:long () %{ /* pure */
+function get_cycles:long () %{ /* pure */ /* unprivileged */
cycles_t c = get_cycles();
THIS->__retvalue = (int64_t) c;
%}