On Wed, Aug 31, 2011 at 5:50 PM, Tom Tromey wrote: >>>>>> "Kevin" == Kevin Pouget writes: > > Kevin> this patch was not explicitly accepted, could you please review this > Kevin> version updated against the last trunk? > > Code bits are ok.  Thanks. > > Tom Hello, There was a discrepancy between the version of the patch you approved (http://sourceware.org/ml/gdb-patches/2011-08/msg00659/0001-PR-12691-Add-the-inferior-to-Python-exited-event) and the one I originally submitted (I certainly missed a step during the April->August update in the git tree): gdb/doc/gdb.texinfo | 10 ++++++---- gdb/python/py-exitedevent.c | 6 ++++++ gdb/testsuite/gdb.python/py-events.c | 1 + gdb/testsuite/gdb.python/py-events.exp | 11 ++++++++++- gdb/testsuite/gdb.python/py-events.py | 1 + 5 files changed, 24 insertions(+), 5 deletions(-) and > gdb/doc/gdb.texinfo | 12 ++++++++---- > gdb/python/py-event.h | 2 +- > gdb/python/py-exitedevent.c | 13 ++++++++++--- > gdb/python/py-inferior.c | 2 +- gdb/testsuite/gdb.python/py-events.c | 1 + gdb/testsuite/gdb.python/py-events.exp | 11 ++++++++++- gdb/testsuite/gdb.python/py-events.py | 1 + so I think it has to be re-approved. There is no regression on x86_64 against the up-to-date GIT tree and the generated PDF looks as expected. Thanks, Kevin (I can't build the CVS tree because of missing ".deps/*.Po" files from GDB/binutils, don't know where the problem comes from) 2011-09-20 Kevin Pouget PR python/12691: Add the inferior to Python exited event * python/py-exitedevent.c (create_exited_event_object): Add inferior to exited_event. * python/py-event.h (emit_exited_event): Likewise * python/-inferior.c (python_inferior_exit): Likewise 2011-09-01 Kevin Pouget PR python/12691: Add the inferior to Python exited event * gdb.python/py-events.exp: Test the inferior attribute of exited event with a fork. * gdb.python/py-events.py: Print inferior number on exit. * gdb.python/py-events.c: Fork the inferior. 2011-09-01 Kevin Pouget PR python/12691: Add the inferior to Python exited event * gdb.texinfo (Events In Python): Describe exited inferior attribute.