diff options
author | Gary Benson <gbenson@redhat.com> | 2014-08-06 11:50:24 +0100 |
---|---|---|
committer | Gary Benson <gbenson@redhat.com> | 2014-08-06 11:50:24 +0100 |
commit | 7089dca47b1738d9b65b8c3795e14aa92ac30f43 (patch) | |
tree | 76e72cececfa26c8a01c975e5a7b37816e25a38c /gdb/gdbserver/linux-low.c | |
parent | 97964ab320d2fd9557ad84e6c8b7b500c518a686 (diff) | |
download | gdb-7089dca47b1738d9b65b8c3795e14aa92ac30f43.zip gdb-7089dca47b1738d9b65b8c3795e14aa92ac30f43.tar.gz gdb-7089dca47b1738d9b65b8c3795e14aa92ac30f43.tar.bz2 |
Replace hardwired target-is-async check
This commit replaces a hardwired target-is-async check.
gdb/gdbserver/
2014-08-06 Gary Benson <gbenson@redhat.com>
* linux-low.c (linux_supports_non_stop): Use target_is_async_p.
Diffstat (limited to 'gdb/gdbserver/linux-low.c')
-rw-r--r-- | gdb/gdbserver/linux-low.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c index 521d9a2..e65e276 100644 --- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -5087,7 +5087,7 @@ linux_supports_non_stop (void) static int linux_async (int enable) { - int previous = (linux_event_pipe[0] != -1); + int previous = target_is_async_p (); if (debug_threads) debug_printf ("linux_async (%d), previous=%d\n", |