diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2008-02-23 20:04:20 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2008-02-23 20:04:20 +0000 |
commit | 05ce04a4238ed7716316d221ff2b58bed336ca79 (patch) | |
tree | 5cb754a60318f525c985bb20dce9712300d11c51 /gdb | |
parent | 849830bdfb30c93fda1fd4098b7070e8159d3663 (diff) | |
download | gdb-05ce04a4238ed7716316d221ff2b58bed336ca79.zip gdb-05ce04a4238ed7716316d221ff2b58bed336ca79.tar.gz gdb-05ce04a4238ed7716316d221ff2b58bed336ca79.tar.bz2 |
Unbreak 'target async'.
* serial.c (serial_async): Set the
handler function before enabling async
mode.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/serial.c | 8 |
2 files changed, 11 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 05896be..1af5761 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2008-02-23 Vladimir Prus <vladimir@codesourcery.com> + + Unbreak 'target async'. + * serial.c (serial_async): Set the + handler function before enabling async + mode. + 2008-02-22 Daniel Jacobowitz <dan@codesourcery.com> * solib-svr4.c (enable_break): Convert r_brk to a code address. diff --git a/gdb/serial.c b/gdb/serial.c index 7bdf170..1fb7f31 100644 --- a/gdb/serial.c +++ b/gdb/serial.c @@ -515,12 +515,12 @@ serial_async (struct serial *scb, serial_event_ftype *handler, void *context) { - /* Only change mode if there is a need. */ - if ((scb->async_handler == NULL) - != (handler == NULL)) - scb->ops->async (scb, handler != NULL); + int changed = ((scb->async_handler == NULL) != (handler == NULL)); scb->async_handler = handler; scb->async_context = context; + /* Only change mode if there is a need. */ + if (changed) + scb->ops->async (scb, handler != NULL); } int |