]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/python/py-threadevent.c
[PATCH] [MIPS] LD/testsuite: Skip 32bit test if ld not support.
[thirdparty/binutils-gdb.git] / gdb / python / py-threadevent.c
CommitLineData
e2882c85 1/* Copyright (C) 2009-2018 Free Software Foundation, Inc.
c17a9e46
HZ
2
3 This file is part of GDB.
4
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.
9
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.
14
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/>. */
17
d071a26b 18#include "defs.h"
c17a9e46 19#include "py-event.h"
45741a9c 20#include "infrun.h"
00431a78 21#include "gdbthread.h"
c17a9e46
HZ
22
23/* thread events can either be thread specific or process wide. If gdb is
24 running in non-stop mode then the event is thread specific, otherwise
25 it is process wide.
26 This function returns the currently stopped thread in non-stop mode and
db6573d6 27 Py_None otherwise. In each case it returns a borrowed reference. */
c17a9e46 28
634c58be
TT
29static PyObject *get_event_thread (void)
30 CPYCHECKER_RETURNS_BORROWED_REF;
31
c17a9e46
HZ
32static PyObject *
33get_event_thread (void)
34{
00431a78 35 PyObject *thread;
c17a9e46
HZ
36
37 if (non_stop)
00431a78 38 thread = (PyObject *) thread_to_thread_object (inferior_thread ());
c17a9e46
HZ
39 else
40 thread = Py_None;
41
42 if (!thread)
43 {
44 PyErr_SetString (PyExc_RuntimeError, "Could not find event thread");
45 return NULL;
46 }
47
c17a9e46
HZ
48 return thread;
49}
50
35c61a1d 51gdbpy_ref<>
7c96f8c1 52create_thread_event_object (PyTypeObject *py_type, PyObject *thread)
c17a9e46 53{
7780f186 54 gdbpy_ref<> thread_event_obj (create_event_object (py_type));
abf5651e
TT
55 if (thread_event_obj == NULL)
56 return NULL;
c17a9e46 57
7c96f8c1
TT
58 if (thread == NULL)
59 {
60 thread = get_event_thread ();
61 if (!thread)
62 return NULL;
63 }
c17a9e46 64
abf5651e 65 if (evpy_add_attribute (thread_event_obj.get (),
c17a9e46
HZ
66 "inferior_thread",
67 thread) < 0)
abf5651e 68 return NULL;
c17a9e46 69
35c61a1d 70 return thread_event_obj;
c17a9e46 71}