This is the mail archive of the gdb-prs@sourceware.org mailing list for the GDB 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 python/19399] add a way to get inferior's architecture


https://sourceware.org/bugzilla/show_bug.cgi?id=19399

--- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Tom Tromey <tromey@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=add5ded5e476918ef8b05823801531de2f51fa9c

commit add5ded5e476918ef8b05823801531de2f51fa9c
Author: Tom Tromey <tom@tromey.com>
Date:   Sat Oct 6 22:57:19 2018 -0600

    Add Inferior.architecture method

    I've written a couple of gdb unwinders in Python, and while doing so,
    I wanted to find the architecture of the inferior.  (In an unwinder in
    particular, one can't use the frame's architecture, because there is
    no frame.)

    This patch adds Inferior.architecture to allow this.  Normally I think
    I would have chosen an attribute and not a method here, but seeing
    that Frame.architecture is a method, I chose a method as well, for
    consistency.

    gdb/ChangeLog
    2018-10-06  Tom Tromey  <tom@tromey.com>

        PR python/19399:
        * python/py-inferior.c: Add "architecture" entry.
        (infpy_architecture): New function.

    gdb/doc/ChangeLog
    2018-10-06  Tom Tromey  <tom@tromey.com>

        PR python/19399:
        * python.texi (Inferiors In Python): Document
        Inferior.Architecture.

    gdb/testsuite/ChangeLog
    2018-10-06  Tom Tromey  <tom@tromey.com>

        PR python/19399:
        * gdb.python/py-inferior.exp: Add architecture test.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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