diff options
author | Tom Tromey <tromey@adacore.com> | 2022-07-19 13:07:32 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-07-22 11:06:51 -0600 |
commit | 4a570176b4031de847c2b6067798d67006c1e8f5 (patch) | |
tree | 3f1009c5c1767ccced9adb134a16308e15c4c044 /gdb/fbsd-nat.c | |
parent | 36da255e7c6a37b17492361d91001e23263c05c6 (diff) | |
download | gdb-4a570176b4031de847c2b6067798d67006c1e8f5.zip gdb-4a570176b4031de847c2b6067798d67006c1e8f5.tar.gz 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/fbsd-nat.c')
-rw-r--r-- | gdb/fbsd-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/fbsd-nat.c b/gdb/fbsd-nat.c index 32b289f..398f1c1 100644 --- a/gdb/fbsd-nat.c +++ b/gdb/fbsd-nat.c @@ -971,9 +971,9 @@ handle_target_event (int error, gdb_client_data client_data) /* Implement the "async" target method. */ void -fbsd_nat_target::async (int enable) +fbsd_nat_target::async (bool enable) { - if ((enable != 0) == is_async_p ()) + if (enable == is_async_p ()) return; /* Block SIGCHILD while we create/destroy the pipe, as the handler |