mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 12:39:59 +00:00
Protoization.
This commit is contained in:
parent
959ee54136
commit
0e7e8d51a4
@ -1,3 +1,8 @@
|
||||
2000-09-23 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* mdebugread.c (mdebug_next_symbol_text): Protoize.
|
||||
* monitor.c (monitor_xfer_memory): Protoize.
|
||||
|
||||
2000-09-22 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
|
||||
|
||||
* i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
|
||||
|
@ -3182,9 +3182,10 @@ handle_psymbol_enumerators (struct objfile *objfile, FDR *fh, int stype,
|
||||
}
|
||||
}
|
||||
|
||||
/* Get the next symbol. OBJFILE is unused. */
|
||||
|
||||
static char *
|
||||
mdebug_next_symbol_text (objfile)
|
||||
struct objfile *objfile; /* argument objfile is currently unused */
|
||||
mdebug_next_symbol_text (struct objfile *objfile)
|
||||
{
|
||||
SYMR sh;
|
||||
|
||||
|
@ -2000,13 +2000,13 @@ monitor_read_memory (CORE_ADDR memaddr, char *myaddr, int len)
|
||||
return len;
|
||||
}
|
||||
|
||||
/* Transfer LEN bytes between target address MEMADDR and GDB address
|
||||
MYADDR. Returns 0 for success, errno code for failure. TARGET is
|
||||
unused. */
|
||||
|
||||
static int
|
||||
monitor_xfer_memory (memaddr, myaddr, len, write, target)
|
||||
CORE_ADDR memaddr;
|
||||
char *myaddr;
|
||||
int len;
|
||||
int write;
|
||||
struct target_ops *target; /* ignored */
|
||||
monitor_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
|
||||
struct target_ops *target)
|
||||
{
|
||||
return dcache_xfer_memory (remote_dcache, memaddr, myaddr, len, write);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user