diff options
Diffstat (limited to 'gdb/python/lib/gdb/dap/state.py')
-rw-r--r-- | gdb/python/lib/gdb/dap/state.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gdb/python/lib/gdb/dap/state.py b/gdb/python/lib/gdb/dap/state.py new file mode 100644 index 0000000..fb2e543 --- /dev/null +++ b/gdb/python/lib/gdb/dap/state.py @@ -0,0 +1,25 @@ +# Copyright 2022 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +from .startup import in_gdb_thread, exec_and_log, log + + +@in_gdb_thread +def set_thread(thread_id): + """Set the current thread to THREAD_ID.""" + if thread_id == 0: + log("+++ Thread == 0 +++") + else: + exec_and_log(f"thread {thread_id}") |