
argument. (remote_fileio_func_open, remote_fileio_func_rename) (remote_fileio_func_unlink, remote_fileio_func_stat) (remote_fileio_func_fstat, remote_fileio_func_gettimeofday) (remote_fileio_func_system): Cast the arguments to remote_read_bytes and remote_write_bytes. (remote_fileio_func_read, remote_fileio_func_write): Use a gdb_byte buffer. * remote.h (remote_read_bytes, remote_write_bytes): Update prototypes. * remote.c (hex2bin, bin2hex): Use gdb_byte for the BIN argument. (threadref_to_int): Replace bogus char * cast. (remote_unpack_thread_info_response): Use int for tag. (remote_threads_extra_info, remote_check_symbols): Cast string arguments to hex2bin. (remote_wait): Use a char buffer for packets and a gdb_byte buffer for registers. (remote_async_wait): Likewise. (remote_prepare_to_store, store_register_using_P) (remote_store_registers): Use gdb_byte buffers. (remote_write_bytes, remote_read_bytes): Use a gdb_byte pointer for MYADDR and char buffers for strings. (remote_xfer_partial): Add casts for string operations on READBUF. (remote_rcmd): Cast strings passed to bin2hex.
64 lines
2.4 KiB
C
64 lines
2.4 KiB
C
/* Remote target communications for serial-line targets in custom GDB protocol
|
|
Copyright (C) 1999 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 2 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, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA. */
|
|
|
|
#ifndef REMOTE_H
|
|
#define REMOTE_H
|
|
|
|
/* FIXME?: move this interface down to tgt vector) */
|
|
|
|
/* Read a packet from the remote machine, with error checking, and
|
|
store it in BUF. BUF is expected to be of size PBUFSIZ. If
|
|
FOREVER, wait forever rather than timing out; this is used while
|
|
the target is executing user code. */
|
|
|
|
extern void getpkt (char *buf, long sizeof_buf, int forever);
|
|
|
|
/* Send a packet to the remote machine, with error checking. The data
|
|
of the packet is in BUF. The string in BUF can be at most PBUFSIZ
|
|
- 5 to account for the $, # and checksum, and for a possible /0 if
|
|
we are debugging (remote_debug) and want to print the sent packet
|
|
as a string */
|
|
|
|
extern int putpkt (char *buf);
|
|
|
|
/* Send HEX encoded string to the target console. (gdb_stdtarg) */
|
|
|
|
extern void remote_console_output (char *);
|
|
|
|
|
|
/* FIXME: cagney/1999-09-20: The remote cisco stuff in remote.c needs
|
|
to be broken out into a separate file (remote-cisco.[hc]?). Before
|
|
that can happen, a remote protocol stack framework needs to be
|
|
implemented. */
|
|
|
|
extern void remote_cisco_objfile_relocate (bfd_signed_vma text_off,
|
|
bfd_signed_vma data_off,
|
|
bfd_signed_vma bss_off);
|
|
|
|
extern void async_remote_interrupt_twice (void *arg);
|
|
|
|
extern int remote_write_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len);
|
|
|
|
extern int remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len);
|
|
|
|
extern void (*deprecated_target_resume_hook) (void);
|
|
extern void (*deprecated_target_wait_loop_hook) (void);
|
|
|
|
#endif
|