Protoization.
This commit is contained in:
parent
6588847e4f
commit
832c69cf02
4 changed files with 21 additions and 20 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2000-10-15 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
|
* remote-st.c (st2000_xfer_inferior_memory): Protoize.
|
||||||
|
* remote-utils.c (gr_multi_scan): Protoize.
|
||||||
|
* remote-vx.c (vx_xfer_memory, net_get_symbols): Protoize.
|
||||||
|
|
||||||
2000-10-13 Fernando Nasser <fnasser@cygnus.com>
|
2000-10-13 Fernando Nasser <fnasser@cygnus.com>
|
||||||
|
|
||||||
* remote.c (putpkt_binary): Call read_frame, not getpkt. Log message.
|
* remote.c (putpkt_binary): Call read_frame, not getpkt. Log message.
|
||||||
|
|
|
@ -548,14 +548,15 @@ st2000_read_inferior_memory (CORE_ADDR memaddr, char *myaddr, int len)
|
||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FIXME-someday! Merge these two. */
|
/* Transfer LEN bytes between GDB address MYADDR and target address
|
||||||
|
MEMADDR. If WRITE is non-zero, transfer them to the target,
|
||||||
|
otherwise transfer them from the target. TARGET is unused.
|
||||||
|
|
||||||
|
Returns the number of bytes transferred. */
|
||||||
|
|
||||||
static int
|
static int
|
||||||
st2000_xfer_inferior_memory (memaddr, myaddr, len, write, target)
|
st2000_xfer_inferior_memory (CORE_ADDR memaddr, char *myaddr, int len,
|
||||||
CORE_ADDR memaddr;
|
int write, struct target_ops *target)
|
||||||
char *myaddr;
|
|
||||||
int len;
|
|
||||||
int write;
|
|
||||||
struct target_ops *target; /* ignored */
|
|
||||||
{
|
{
|
||||||
if (write)
|
if (write)
|
||||||
return st2000_write_inferior_memory (memaddr, myaddr, len);
|
return st2000_write_inferior_memory (memaddr, myaddr, len);
|
||||||
|
|
|
@ -502,9 +502,7 @@ gr_create_inferior (char *execfile, char *args, char **env)
|
||||||
pass non-matching data on. */
|
pass non-matching data on. */
|
||||||
|
|
||||||
int
|
int
|
||||||
gr_multi_scan (list, passthrough)
|
gr_multi_scan (char *list[], int passthrough)
|
||||||
char *list[];
|
|
||||||
int passthrough;
|
|
||||||
{
|
{
|
||||||
char *swallowed = NULL; /* holding area */
|
char *swallowed = NULL; /* holding area */
|
||||||
char *swallowed_p = swallowed; /* Current position in swallowed. */
|
char *swallowed_p = swallowed; /* Current position in swallowed. */
|
||||||
|
|
|
@ -468,19 +468,15 @@ vx_prepare_to_store (void)
|
||||||
|
|
||||||
/* Copy LEN bytes to or from remote inferior's memory starting at MEMADDR
|
/* Copy LEN bytes to or from remote inferior's memory starting at MEMADDR
|
||||||
to debugger memory starting at MYADDR. WRITE is true if writing to the
|
to debugger memory starting at MYADDR. WRITE is true if writing to the
|
||||||
inferior.
|
inferior. TARGET is unused.
|
||||||
Result is the number of bytes written or read (zero if error). The
|
Result is the number of bytes written or read (zero if error). The
|
||||||
protocol allows us to return a negative count, indicating that we can't
|
protocol allows us to return a negative count, indicating that we can't
|
||||||
handle the current address but can handle one N bytes further, but
|
handle the current address but can handle one N bytes further, but
|
||||||
vxworks doesn't give us that information. */
|
vxworks doesn't give us that information. */
|
||||||
|
|
||||||
static int
|
static int
|
||||||
vx_xfer_memory (memaddr, myaddr, len, write, target)
|
vx_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
|
||||||
CORE_ADDR memaddr;
|
struct target_ops *target)
|
||||||
char *myaddr;
|
|
||||||
int len;
|
|
||||||
int write;
|
|
||||||
struct target_ops *target; /* ignored */
|
|
||||||
{
|
{
|
||||||
int status;
|
int status;
|
||||||
Rptrace ptrace_in;
|
Rptrace ptrace_in;
|
||||||
|
@ -800,14 +796,14 @@ net_get_boot_file (char **pBootFile)
|
||||||
return (status == RPC_SUCCESS) ? 0 : -1;
|
return (status == RPC_SUCCESS) ? 0 : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Fetch a list of loaded object modules from the VxWorks target.
|
/* Fetch a list of loaded object modules from the VxWorks target
|
||||||
|
and store in PLOADTABLE.
|
||||||
Returns -1 if rpc failed, 0 otherwise
|
Returns -1 if rpc failed, 0 otherwise
|
||||||
There's no way to check if the returned loadTable is correct.
|
There's no way to check if the returned loadTable is correct.
|
||||||
VxWorks doesn't check it. */
|
VxWorks doesn't check it. */
|
||||||
|
|
||||||
static int
|
static int
|
||||||
net_get_symbols (pLoadTable)
|
net_get_symbols (ldtabl *pLoadTable)
|
||||||
ldtabl *pLoadTable; /* return pointer to ldtabl here */
|
|
||||||
{
|
{
|
||||||
enum clnt_stat status;
|
enum clnt_stat status;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue