OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gdb-6.8/] [pre-binutils-2.20.1-sync/] [gdb/] [mi/] [mi-cmd-target.c] - Diff between revs 157 and 223

Only display areas with differences | Details | Blame | View Log

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

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.