old-cross-binutils/gdb/mi/mi-cmd-target.c
Michael Snyder a1b7d1984a 2010-05-05 Michael Snyder <msnyder@vmware.com>
* mi/mi-out.c (mi_table_begin): Delete unused variable.
	* mi/mi-cmd-var.c (print_varobj): Delete unused variable.
	(mi_cmd_var_list_children): Delete unused variable.
	(varobj_update_one): Delete unused variable.
	* mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
	* mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
	Delete unused variable.
	(mi_cmd_stack_list_variables): Delete unused variable.
	(list_args_or_locals): Delete unused variable.
	* mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
	Delete unused variables.
	(mi_cmd_file_list_exec_source_files): Delete unused variable.
	* mi/mi-cmd-target.c (mi_cmd_target_file_delete):
	Delete unused variable.
	* mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
	(mi_cmd_interpreter_exec): Delete unused variable.
	(mi_on_normal_stop): Delete unused variable.
	* mi/mi-main.c (run_one_inferior): Delete unused variable.
	(print_one_inferior): Delete unused variables.
	(mi_execute_command): Delete unused variable.
	(mi_cmd_execute): Delete unused variable.
	(timestamp): Delete unused variable.
2010-05-06 00:32:38 +00:00

94 lines
2.5 KiB
C

/* MI Command Set - target commands.
Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
This file is part of GDB.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "defs.h"
#include "mi-cmds.h"
#include "mi-getopt.h"
#include "remote.h"
/* Get a file from the target. */
void
mi_cmd_target_file_get (char *command, char **argv, int argc)
{
int optind = 0;
char *optarg;
const char *remote_file, *local_file;
static struct mi_opt opts[] =
{
{ 0, 0, 0 }
};
static const char *prefix = "mi_cmd_target_file_get";
if (mi_getopt (prefix, argc, argv, opts, &optind, &optarg) != -1
|| optind != argc - 2)
error (_("mi_cmd_target_file_get: Usage: REMOTE_FILE LOCAL_FILE"));
remote_file = argv[optind];
local_file = argv[optind + 1];
remote_file_get (remote_file, local_file, 0);
}
/* Send a file to the target. */
void
mi_cmd_target_file_put (char *command, char **argv, int argc)
{
int optind = 0;
char *optarg;
const char *remote_file, *local_file;
static struct mi_opt opts[] =
{
{ 0, 0, 0 }
};
static const char *prefix = "mi_cmd_target_file_put";
if (mi_getopt (prefix, argc, argv, opts, &optind, &optarg) != -1
|| optind != argc - 2)
error (_("mi_cmd_target_file_put: Usage: LOCAL_FILE REMOTE_FILE"));
local_file = argv[optind];
remote_file = argv[optind + 1];
remote_file_put (local_file, remote_file, 0);
}
/* Delete a file on the target. */
void
mi_cmd_target_file_delete (char *command, char **argv, int argc)
{
int optind = 0;
char *optarg;
const char *remote_file;
static struct mi_opt opts[] =
{
{ 0, 0, 0 }
};
static const char *prefix = "mi_cmd_target_file_delete";
if (mi_getopt (prefix, argc, argv, opts, &optind, &optarg) != -1
|| optind != argc - 1)
error (_("mi_cmd_target_file_delete: Usage: REMOTE_FILE"));
remote_file = argv[optind];
remote_file_delete (remote_file, 0);
}