diff options
author | Pedro Alves <palves@redhat.com> | 2011-05-26 16:11:45 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2011-05-26 16:11:45 +0000 |
commit | c13bd2b52eedbea982bb19b37dc52626001a11b0 (patch) | |
tree | 88fd3c88857e8f8e7d2078ef0cf9f190b2a7c082 /gdb | |
parent | 6938fd346aa1288a347422e96a6bc50f2673a51f (diff) | |
download | gdb-c13bd2b52eedbea982bb19b37dc52626001a11b0.zip gdb-c13bd2b52eedbea982bb19b37dc52626001a11b0.tar.gz gdb-c13bd2b52eedbea982bb19b37dc52626001a11b0.tar.bz2 |
2011-05-26 Pedro Alves <pedro@codesourcery.com>
gdb/
* infcmd.c (finish_command): Allow async finish in reverse.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/infcmd.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ad46da1..ebbf3f5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2011-05-26 Pedro Alves <pedro@codesourcery.com> + + * infcmd.c (finish_command): Allow async finish in reverse. + 2011-05-26 Yao Qi <yao@codesourcery.com> * gdb_thread_db.h: Delete. Move to ... diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 4baeeba..e95f753 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1639,10 +1639,6 @@ finish_command (char *arg, int from_tty) if (async_exec && !target_can_async_p ()) error (_("Asynchronous execution not supported on this target.")); - /* Don't try to async in reverse. */ - if (async_exec && execution_direction == EXEC_REVERSE) - error (_("Asynchronous 'finish' not supported in reverse.")); - /* If we are not asked to run in the bg, then prepare to run in the foreground, synchronously. */ if (!async_exec && target_can_async_p ()) |