2010-08-31 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
* infrun.c (set_exec_direction_func): Error out if target does not support reverse execution.
This commit is contained in:
parent
0f254bb76b
commit
8bbed40521
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-08-31 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
|
||||
|
||||
* infrun.c (set_exec_direction_func): Error out if target does not
|
||||
support reverse execution.
|
||||
|
||||
2010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
Make linux_get_siginfo_type `type *' unique.
|
||||
|
|
|
@ -6437,6 +6437,11 @@ set_exec_direction_func (char *args, int from_tty,
|
|||
else if (!strcmp (exec_direction, exec_reverse))
|
||||
execution_direction = EXEC_REVERSE;
|
||||
}
|
||||
else
|
||||
{
|
||||
exec_direction = exec_forward;
|
||||
error (_("Target does not support this operation."));
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue