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.
This commit is contained in:
Tom Tromey
2022-07-19 13:07:32 -06:00
parent 36da255e7c
commit 4a570176b4
15 changed files with 35 additions and 35 deletions

View File

@@ -68,7 +68,7 @@ public:
bool can_async_p () override;
void async (int) override;
void async (bool) override;
thread_control_capabilities get_thread_control_capabilities () override
{ return tc_schedlock; }