public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug python/13374] New: bad GIL uses
@ 2011-11-02 15:12 tromey at redhat dot com
  2011-11-11 17:41 ` [Bug python/13374] " pmuldoon at redhat dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: tromey at redhat dot com @ 2011-11-02 15:12 UTC (permalink / raw)
  To: gdb-prs

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

             Bug #: 13374
           Summary: bad GIL uses
           Product: gdb
           Version: unknown
            Status: NEW
          Severity: normal
          Priority: P2
         Component: python
        AssignedTo: unassigned@sourceware.org
        ReportedBy: tromey@redhat.com
    Classification: Unclassified


While reading the code I found a couple of spots where
the GIL is treated weirdly.

I don't see why gdbpy_decode_line should acquire the GIL.
This function will only be called in a Python context.

Acquiring the GIL in inferior_to_inferior object seems weird.
It isn't necessarily incorrect but it seems like it would be
preferable to acquire this in whichever callers need it;
usually these X_to_X_object calls are expected to be used in
a Python context.

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


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

* [Bug python/13374] bad GIL uses
  2011-11-02 15:12 [Bug python/13374] New: bad GIL uses tromey at redhat dot com
@ 2011-11-11 17:41 ` pmuldoon at redhat dot com
  2011-11-28 15:51 ` cvs-commit at gcc dot gnu.org
  2011-11-28 17:07 ` pmuldoon at redhat dot com
  2 siblings, 0 replies; 4+ messages in thread
From: pmuldoon at redhat dot com @ 2011-11-11 17:41 UTC (permalink / raw)
  To: gdb-prs

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

Phil Muldoon <pmuldoon at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pmuldoon at redhat dot com
         AssignedTo|unassigned at sourceware    |pmuldoon at redhat dot com
                   |dot org                     |

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


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

* [Bug python/13374] bad GIL uses
  2011-11-02 15:12 [Bug python/13374] New: bad GIL uses tromey at redhat dot com
  2011-11-11 17:41 ` [Bug python/13374] " pmuldoon at redhat dot com
@ 2011-11-28 15:51 ` cvs-commit at gcc dot gnu.org
  2011-11-28 17:07 ` pmuldoon at redhat dot com
  2 siblings, 0 replies; 4+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2011-11-28 15:51 UTC (permalink / raw)
  To: gdb-prs

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

--- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> 2011-11-28 15:49:50 UTC ---
CVSROOT:    /cvs/src
Module name:    src
Changes by:    pmuldoon@sourceware.org    2011-11-28 15:49:43

Modified files:
    gdb            : ChangeLog 
    gdb/python     : py-block.c py-breakpoint.c py-inferior.c 
                     py-type.c py-value.c python.c 

Log message:
    2011-11-28  Phil Muldoon  <pmuldoon@redhat.com>

    PR python/13369
    PR python/13374

    * python/python.c (gdbpy_decode_line): Do not acquire GIL.
    * python/py-inferior.c (inferior_to_inferior_object): Ditto.
    * python/py-value.c (valpy_nonzero): Use TRY_CATCH to catch GDB
    exceptions.
    * python/py-type.c (typy_strip_typedefs): Ditto.
    (typy_legacy_template_argument): Ditto.
    * python/py-inferior.c (inferior_to_inferior_object): Ditto.
    * python/py-breakpoint.c (bppy_set_ignore_count): Ditto.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.13554&r2=1.13555
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/python/py-block.c.diff?cvsroot=src&r1=1.9&r2=1.10
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/python/py-breakpoint.c.diff?cvsroot=src&r1=1.28&r2=1.29
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/python/py-inferior.c.diff?cvsroot=src&r1=1.16&r2=1.17
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/python/py-type.c.diff?cvsroot=src&r1=1.30&r2=1.31
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/python/py-value.c.diff?cvsroot=src&r1=1.29&r2=1.30
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/python/python.c.diff?cvsroot=src&r1=1.77&r2=1.78

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


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

* [Bug python/13374] bad GIL uses
  2011-11-02 15:12 [Bug python/13374] New: bad GIL uses tromey at redhat dot com
  2011-11-11 17:41 ` [Bug python/13374] " pmuldoon at redhat dot com
  2011-11-28 15:51 ` cvs-commit at gcc dot gnu.org
@ 2011-11-28 17:07 ` pmuldoon at redhat dot com
  2 siblings, 0 replies; 4+ messages in thread
From: pmuldoon at redhat dot com @ 2011-11-28 17:07 UTC (permalink / raw)
  To: gdb-prs

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

Phil Muldoon <pmuldoon at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |7.4

--- Comment #2 from Phil Muldoon <pmuldoon at redhat dot com> 2011-11-28 17:07:29 UTC ---
Closed with commit details in comment #1.  Thanks.

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


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

end of thread, other threads:[~2011-11-28 17:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-02 15:12 [Bug python/13374] New: bad GIL uses tromey at redhat dot com
2011-11-11 17:41 ` [Bug python/13374] " pmuldoon at redhat dot com
2011-11-28 15:51 ` cvs-commit at gcc dot gnu.org
2011-11-28 17:07 ` pmuldoon 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).