diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-06-30 17:14:59 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-06-30 17:14:59 +0000 |
commit | 47e1ce27f4c242d3312b84658a4d0cc8829224f9 (patch) | |
tree | 2b43c9f20ae0a0472a553ae6f3e1179caeed5001 | |
parent | e82839d425857fb5c30ec01faab12263baddfd99 (diff) | |
download | gdb-47e1ce27f4c242d3312b84658a4d0cc8829224f9.zip gdb-47e1ce27f4c242d3312b84658a4d0cc8829224f9.tar.gz gdb-47e1ce27f4c242d3312b84658a4d0cc8829224f9.tar.bz2 |
gdb/
Code cleanup.
* remote.c (async_remote_interrupt_twice): Make it static.
* remote.h (async_remote_interrupt_twice): Remove the declaration.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/remote.c | 4 | ||||
-rw-r--r-- | gdb/remote.h | 2 |
3 files changed, 8 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fa1da5a..72a6258 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com> + + Code cleanup. + * remote.c (async_remote_interrupt_twice): Make it static. + * remote.h (async_remote_interrupt_twice): Remove the declaration. + 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com> * ia64-linux-tdep.c: Include <ctype.h>. diff --git a/gdb/remote.c b/gdb/remote.c index a29fe23..1d6ac90 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -97,7 +97,7 @@ static int getpkt_or_notif_sane (char **buf, long *sizeof_buf, static void handle_remote_sigint (int); static void handle_remote_sigint_twice (int); static void async_remote_interrupt (gdb_client_data); -void async_remote_interrupt_twice (gdb_client_data); +static void async_remote_interrupt_twice (gdb_client_data); static void remote_files_info (struct target_ops *ignore); @@ -5022,7 +5022,7 @@ async_remote_interrupt (gdb_client_data arg) /* Perform interrupt, if the first attempt did not succeed. Just give up on the target alltogether. */ -void +static void async_remote_interrupt_twice (gdb_client_data arg) { if (remote_debug) diff --git a/gdb/remote.h b/gdb/remote.h index b95370c..c036db7 100644 --- a/gdb/remote.h +++ b/gdb/remote.h @@ -45,8 +45,6 @@ extern int bin2hex (const gdb_byte *bin, char *hex, int count); extern char *unpack_varlen_hex (char *buff, ULONGEST *result); -extern void async_remote_interrupt_twice (void *arg); - void register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes, const struct target_desc *tdesc); void register_remote_support_xml (const char *); |