aboutsummaryrefslogtreecommitdiff
path: root/gdb/top.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2022-07-19 13:07:32 -0600
committerTom Tromey <tromey@adacore.com>2022-07-22 11:06:51 -0600
commit4a570176b4031de847c2b6067798d67006c1e8f5 (patch)
tree3f1009c5c1767ccced9adb134a16308e15c4c044 /gdb/top.c
parent36da255e7c6a37b17492361d91001e23263c05c6 (diff)
downloadfsf-binutils-gdb-4a570176b4031de847c2b6067798d67006c1e8f5.zip
fsf-binutils-gdb-4a570176b4031de847c2b6067798d67006c1e8f5.tar.gz
fsf-binutils-gdb-4a570176b4031de847c2b6067798d67006c1e8f5.tar.bz2
Change target_ops::async to accept bool
This changes the parameter of target_ops::async from int to bool. Regression tested on x86-64 Fedora 34.
Diffstat (limited to 'gdb/top.c')
-rw-r--r--gdb/top.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/top.c b/gdb/top.c
index 60835ac..453fa23 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -1109,7 +1109,7 @@ public:
current_ui->secondary_prompt_depth++;
if (m_target_is_async_orig)
- target_async (0);
+ target_async (false);
}
~gdb_readline_wrapper_cleanup ()
@@ -1138,7 +1138,7 @@ public:
saved_after_char_processing_hook = NULL;
if (m_target_is_async_orig)
- target_async (1);
+ target_async (true);
}
DISABLE_COPY_AND_ASSIGN (gdb_readline_wrapper_cleanup);