1 /* Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
3 This file is part of GDB.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 /* thread events can either be thread specific or process wide. If gdb is
21 running in non-stop mode then the event is thread specific, otherwise
23 This function returns the currently stopped thread in non-stop mode and
27 get_event_thread (void)
29 PyObject *thread = NULL;
32 thread = (PyObject *) find_thread_object (inferior_ptid);
38 PyErr_SetString (PyExc_RuntimeError, "Could not find event thread");
48 create_thread_event_object (PyTypeObject *py_type)
50 PyObject *thread = NULL;
51 PyObject *thread_event_obj = NULL;
53 thread_event_obj = create_event_object (py_type);
54 if (!thread_event_obj)
57 thread = get_event_thread ();
61 if (evpy_add_attribute (thread_event_obj,
66 return thread_event_obj;
69 Py_XDECREF (thread_event_obj);
73 GDBPY_NEW_EVENT_TYPE (thread,
76 "GDB thread event object",