1 /* Python interface to inferior exit events.
3 Copyright (C) 2009-2012 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 static PyTypeObject exited_event_object_type;
25 create_exited_event_object (const LONGEST *exit_code, struct inferior *inf)
27 PyObject *exited_event;
28 PyObject *inf_obj = NULL;
30 exited_event = create_event_object (&exited_event_object_type);
37 PyObject *exit_code_obj = PyLong_FromLongLong (*exit_code);
40 if (exit_code_obj == NULL)
43 failed = evpy_add_attribute (exited_event, "exit_code",
45 Py_DECREF (exit_code_obj);
50 inf_obj = inferior_to_inferior_object (inf);
51 if (!inf_obj || evpy_add_attribute (exited_event,
61 Py_XDECREF (exited_event);
65 /* Callback that is used when an exit event occurs. This function
66 will create a new Python exited event object. */
69 emit_exited_event (const LONGEST *exit_code, struct inferior *inf)
73 if (evregpy_no_listeners_p (gdb_py_events.exited))
76 event = create_exited_event_object (exit_code, inf);
79 return evpy_emit_event (event, gdb_py_events.exited);
85 GDBPY_NEW_EVENT_TYPE (exited,
88 "GDB exited event object",