]> sourceware.org Git - systemtap.git/commitdiff
Fix PR19070 by applying /* pragma:uprobes */ to __ustack_raw().
authorMartin Cermak <mcermak@redhat.com>
Tue, 6 Oct 2015 12:29:33 +0000 (14:29 +0200)
committerMartin Cermak <mcermak@redhat.com>
Tue, 6 Oct 2015 12:31:57 +0000 (14:31 +0200)
tapset/linux/ucontext-symbols.stp

index 1b04ecd3d59366c0a350173534d4774103033724..a5eceb1f55e35a1ee9d010ee72379bb7401864ae 100644 (file)
@@ -13,7 +13,8 @@
 // the function symbol of an address.
 // </tapsetdescription>
 
-function __ustack_raw:long (n:long) %{ /* pragma:unwind */ /* pure */ /* myproc-unprivileged */
+function __ustack_raw:long (n:long) %{ /* pragma:unwind */ /* pure */
+         /* myproc-unprivileged */ /* pragma:uprobes */
          /* basic sanity check for bounds: */
          if (unlikely(STAP_ARG_n < 0 || STAP_ARG_n >= MAXBACKTRACE))
                   STAP_RETVALUE = 0;
This page took 0.030967 seconds and 5 git commands to generate.