Move catch_command_errors and catch_command_errors_const to main.c
authorPedro Alves <palves@redhat.com>
Mon, 14 Jul 2014 18:55:31 +0000 (19:55 +0100)
committerPedro Alves <palves@redhat.com>
Mon, 14 Jul 2014 19:30:12 +0000 (20:30 +0100)
commit9d1e69a21488cb5b8b7553c8df18ee5c3f4d82e3
tree378ce24c987af0711b9357a933a34d4091ef9de8
parentfeefc97b5942325a8b7793e7ae089d87ecdee11c
Move catch_command_errors and catch_command_errors_const to main.c

We'll need to add error handling code to commands run before the event
loop starts (commands in .gdbinit, -ex commands, etc.).  Turns out
those are run through catch_command_errors, and, catch_command_errors
is used nowhere else.  Move it (and the _const variant) to main.c, so
that we can further specialize it freely.

gdb/
2014-07-14  Pedro Alves  <palves@redhat.com>

* exceptions.c (catch_command_errors, catch_command_errors_const):
Moved to main.c.
* exceptions.h (catch_command_errors_ftype)
(catch_command_errors_const_ftype): Moved to main.c.
(catch_command_errors, catch_command_errors_const): Delete
declarations.
* main.c (catch_command_errors_ftype)
(catch_command_errors_const_ftype): Moved here from exceptions.h.
(catch_command_errors, catch_command_errors_const)): Moved here
from exceptions.c and make static.
gdb/ChangeLog
gdb/exceptions.c
gdb/exceptions.h
gdb/main.c
This page took 0.02573 seconds and 4 git commands to generate.