diff options
author | Tom Tromey <tromey@redhat.com> | 2012-12-18 19:31:17 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-12-18 19:31:17 +0000 |
commit | 1dd5fedcf578f75b6f8153c43e990f9306d0e9de (patch) | |
tree | 7a02a0ee6e3d2b29716ddd38439018365b776aba /gdb/infcmd.c | |
parent | c419cfba93792b559b7ced8649236bca6a8e03db (diff) | |
download | gdb-1dd5fedcf578f75b6f8153c43e990f9306d0e9de.zip gdb-1dd5fedcf578f75b6f8153c43e990f9306d0e9de.tar.gz gdb-1dd5fedcf578f75b6f8153c43e990f9306d0e9de.tar.bz2 |
* infcmd.c (all_registers_info, nexti_command, stepi_command)
(continue_command, interrupt_target_command): Now static.
(registers_info): Remove declaration.
* inferior.h (all_registers_info, nexti_command, stepi_command)
(continue_command, interrupt_target_command): Don't declare.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 24 |
1 files changed, 5 insertions, 19 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 4e38725..af89a0f 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -57,20 +57,6 @@ #include "continuations.h" #include "linespec.h" -/* Functions exported for general use, in inferior.h: */ - -void all_registers_info (char *, int); - -void registers_info (char *, int); - -void nexti_command (char *, int); - -void stepi_command (char *, int); - -void continue_command (char *, int); - -void interrupt_target_command (char *args, int from_tty); - /* Local functions: */ static void nofp_registers_info (char *, int); @@ -756,7 +742,7 @@ continue_1 (int all_threads) } /* continue [-a] [proceed-count] [&] */ -void +static void continue_command (char *args, int from_tty) { int async_exec = 0; @@ -875,13 +861,13 @@ next_command (char *count_string, int from_tty) /* Likewise, but step only one instruction. */ -void +static void stepi_command (char *count_string, int from_tty) { step_1 (0, 1, count_string); } -void +static void nexti_command (char *count_string, int from_tty) { step_1 (1, 1, count_string); @@ -2294,7 +2280,7 @@ registers_info (char *addr_exp, int fpregs) } } -void +static void all_registers_info (char *addr_exp, int from_tty) { registers_info (addr_exp, 1); @@ -2809,7 +2795,7 @@ interrupt_target_1 (int all_threads) if the `-a' switch is used. */ /* interrupt [-a] */ -void +static void interrupt_target_command (char *args, int from_tty) { if (target_can_async_p ()) |