public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
From: Wenhua Zhang <shiziwen@gmail.com>
To: systemtap@sourceware.org
Subject: Fwd:
Date: Sat, 20 Oct 2012 03:39:00 -0000	[thread overview]
Message-ID: <CAMfW_3Kv11w7hSYsgYEfNeZzF4b6T4-PRcUbKy4fwsvD=bUcQg@mail.gmail.com> (raw)

Hi ,
When I run the stap command as below,

 /opt/systemtap/bin/stap --ldd -d /usr/local/nginx/sbin/nginx
 --all-modules -D MAXMAPENTRIES=5120  -D MAXACTION=20000  -D
 MAXTRACE=50 -D MAXSTRINGLEN=1024 -D MAXBACKTRACE=100 -x 25017 a.stp
 --vp 00001 > a.out

There is an error:
 WARNING: missing unwind/symbol data for module
 'stap_97bdcbebec34bca89d728c7b361aa64_24788'
 WARNING: missing unwind/symbol data for module 'uprobes'
 Pass 5: starting run.
 ERROR: probe timer.profile registration error (rc -16)

 The stap file as:
global s;
    global quit = 0;

    probe timer.profile {
        if (pid() == target()) {
            if (quit) {
                foreach (i in s-) {
                    print_ustack(i);
                    printf("\t%d\n", @count(s[i]));
                }
                exit()
            } else {
                s[ubacktrace()] <<< 1;
            }
        }
    }

    probe timer.s(20) {
        quit = 1
    }

Can you help me find what happened and what should I do to resolve it?
Thanks very much.

Best Wishes,
Wenhua

             reply	other threads:[~2012-10-20  3:39 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-20  3:39 Wenhua Zhang [this message]
2019-06-19 11:57 fwd: Yair G. Rajwan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAMfW_3Kv11w7hSYsgYEfNeZzF4b6T4-PRcUbKy4fwsvD=bUcQg@mail.gmail.com' \
    --to=shiziwen@gmail.com \
    --cc=systemtap@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).