mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
gdb/
* remote.c (remote_check_symbols): Remove unused parameter 'objfile'. Declaration update. (remote_start_remote, remote_new_objfile): Caller update.
This commit is contained in:
parent
62a813ccaf
commit
36d25514de
@ -1,3 +1,10 @@
|
||||
2013-05-30 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* remote.c (remote_check_symbols): Remove unused parameter
|
||||
'objfile'.
|
||||
Declaration update.
|
||||
(remote_start_remote, remote_new_objfile): Caller update.
|
||||
|
||||
2013-05-30 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* mi/mi-cmds.c (mi_cmds): Define MI command
|
||||
|
@ -219,7 +219,7 @@ static int remote_upload_trace_state_variables (struct uploaded_tsv **utsvp);
|
||||
|
||||
static void remote_query_supported (void);
|
||||
|
||||
static void remote_check_symbols (struct objfile *objfile);
|
||||
static void remote_check_symbols (void);
|
||||
|
||||
void _initialize_remote (void);
|
||||
|
||||
@ -3577,7 +3577,7 @@ remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
|
||||
if (target_has_execution)
|
||||
{
|
||||
if (exec_bfd) /* No use without an exec file. */
|
||||
remote_check_symbols (symfile_objfile);
|
||||
remote_check_symbols ();
|
||||
}
|
||||
|
||||
/* Possibly the target has been engaged in a trace run started
|
||||
@ -3646,7 +3646,7 @@ init_all_packet_configs (void)
|
||||
/* Symbol look-up. */
|
||||
|
||||
static void
|
||||
remote_check_symbols (struct objfile *objfile)
|
||||
remote_check_symbols (void)
|
||||
{
|
||||
struct remote_state *rs = get_remote_state ();
|
||||
char *msg, *reply, *tmp;
|
||||
@ -11694,7 +11694,7 @@ static void
|
||||
remote_new_objfile (struct objfile *objfile)
|
||||
{
|
||||
if (remote_desc != 0) /* Have a remote connection. */
|
||||
remote_check_symbols (objfile);
|
||||
remote_check_symbols ();
|
||||
}
|
||||
|
||||
/* Pull all the tracepoints defined on the target and create local
|
||||
|
Loading…
Reference in New Issue
Block a user