aboutsummaryrefslogtreecommitdiff
path: root/gdb/nat
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2020-04-08 14:33:35 -0600
committerTom Tromey <tromey@adacore.com>2020-04-08 14:47:57 -0600
commit62fe396b1cba6b0c3d06b758d9f8254c6d538ad8 (patch)
treeafd1d84fb940cab90ad9dc2affc968e82762b35d /gdb/nat
parente9534bd257ac9ea2f7921e8000d27c5dc4477b4e (diff)
downloadgdb-62fe396b1cba6b0c3d06b758d9f8254c6d538ad8.zip
gdb-62fe396b1cba6b0c3d06b758d9f8254c6d538ad8.tar.gz
gdb-62fe396b1cba6b0c3d06b758d9f8254c6d538ad8.tar.bz2
Change two windows_thread_info members to "bool"
This changes a couple of fields of windows_thread_info to have type "bool". It also updates the comment of another field, to clarify the possible values it can hold. gdb/ChangeLog 2020-04-08 Tom Tromey <tromey@adacore.com> * windows-nat.c (thread_rec) (windows_nat_target::fetch_registers): Update. * nat/windows-nat.h (struct windows_thread_info) <suspended>: Update comment. <debug_registers_changed, reload_context>: Now bool. gdbserver/ChangeLog 2020-04-08 Tom Tromey <tromey@adacore.com> * win32-i386-low.c (update_debug_registers) (i386_prepare_to_resume, i386_thread_added): Update.
Diffstat (limited to 'gdb/nat')
-rw-r--r--gdb/nat/windows-nat.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/gdb/nat/windows-nat.h b/gdb/nat/windows-nat.h
index a3da268..27fd7ed 100644
--- a/gdb/nat/windows-nat.h
+++ b/gdb/nat/windows-nat.h
@@ -48,7 +48,10 @@ struct windows_thread_info
/* Thread Information Block address. */
CORE_ADDR thread_local_base;
- /* Non zero if SuspendThread was called on this thread. */
+ /* This keeps track of whether SuspendThread was called on this
+ thread. -1 means there was a failure or that the thread was
+ explicitly not suspended, 1 means it was called, and 0 means it
+ was not. */
int suspended = 0;
#ifdef _WIN32_WCE
@@ -67,11 +70,11 @@ struct windows_thread_info
/* Whether debug registers changed since we last set CONTEXT back to
the thread. */
- int debug_registers_changed = 0;
+ bool debug_registers_changed = false;
/* Nonzero if CONTEXT is invalidated and must be re-read from the
inferior thread. */
- int reload_context = 0;
+ bool reload_context = false;
/* The name of the thread, allocated by xmalloc. */
char *name = nullptr;