public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* [Bug dyninst/14745] New: probe timer.profile registration error
@ 2012-10-20  3:58 shiziwen at gmail dot com
  2012-10-21  1:52 ` [Bug dyninst/14745] " fche at redhat dot com
  0 siblings, 1 reply; 2+ messages in thread
From: shiziwen at gmail dot com @ 2012-10-20  3:58 UTC (permalink / raw)
  To: systemtap

http://sourceware.org/bugzilla/show_bug.cgi?id=14745

             Bug #: 14745
           Summary: probe timer.profile registration error
           Product: systemtap
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: dyninst
        AssignedTo: systemtap@sourceware.org
        ReportedBy: shiziwen@gmail.com
    Classification: Unclassified


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.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Bug dyninst/14745] probe timer.profile registration error
  2012-10-20  3:58 [Bug dyninst/14745] New: probe timer.profile registration error shiziwen at gmail dot com
@ 2012-10-21  1:52 ` fche at redhat dot com
  0 siblings, 0 replies; 2+ messages in thread
From: fche at redhat dot com @ 2012-10-21  1:52 UTC (permalink / raw)
  To: systemtap

http://sourceware.org/bugzilla/show_bug.cgi?id=14745

Frank Ch. Eigler <fche at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |fche at redhat dot com
         Resolution|                            |WORKSFORME

--- Comment #1 from Frank Ch. Eigler <fche at redhat dot com> 2012-10-21 01:51:59 UTC ---
errno -16 (EBUSY) is normal for concurrently used timer.profile event sources.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-10-21  1:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-20  3:58 [Bug dyninst/14745] New: probe timer.profile registration error shiziwen at gmail dot com
2012-10-21  1:52 ` [Bug dyninst/14745] " fche at redhat dot com

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).