2011-10-04 Kevin Pouget <kevin.pouget@st.com>

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-10-04  Kevin Pouget  <kevin.pouget@st.com>

       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-10-04  Kevin Pouget  <kevin.pouget@st.com>

       PR python/12691: Add the inferior to Python exited event
       * gdb.texinfo (Events In Python): Describe exited inferior attribute.
This commit is contained in:
Kevin Pouget 2011-10-04 08:04:13 +00:00
parent 54d2bafcf2
commit cb6be26b8b
10 changed files with 53 additions and 10 deletions

View file

@ -17,6 +17,7 @@
*/
int second(){
fork() ;
return 12;
}