This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tapsets/12470] New: Fix _wait4_opt_str


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

           Summary: Fix _wait4_opt_str
           Product: systemtap
           Version: unspecified
            Status: NEW
          Severity: minor
          Priority: P2
         Component: tapsets
        AssignedTo: systemtap@sources.redhat.com
        ReportedBy: jan.kratochvil@redhat.com
              Host: x86_64-fedora14-linux-gnu
            Target: x86_64-fedora14-linux-gnu


Created attachment 5230
  --> http://sourceware.org/bugzilla/attachment.cgi?id=5230
Fix.

_wait4_opt_str hides any unknown wait4 `options' values from the user.

default systemtap when using gdb:
wait:WNOHANG
wait:WNOHANG

fixed systemtap _wait4_opt_str when using gdb:
wait:WNOHANG
wait:WNOHANG|__WCLONE|0xffffffff00000000

fixed systemtap with the full patch to strip `options' to 32bit:
wait:WNOHANG
wait:WNOHANG|__WCLONE

The patch applies to both HEAD and systemtap-1.3-3.fc14.x86_64.

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]