* infrun.c (set_exec_direction_func): Error out if target does not
support reverse execution.
+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.
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