Tue Apr 28 17:41:20 1998 Philippe De Muyter <phdm@macqel.be>
* symfile.c (overlay_auto_command): Add forgotten parameter definitions. (overlay_manual_command, overlay_off_command): Likewise. (overlay_load_command): Likewise. * tracepoint.c (memrange_cmp): Parameters have type void *, not struct memrange *.
This commit is contained in:
parent
f9c3840555
commit
59813131fd
2 changed files with 30 additions and 16 deletions
|
@ -1,6 +1,14 @@
|
||||||
|
Tue Apr 28 17:41:20 1998 Philippe De Muyter <phdm@macqel.be>
|
||||||
|
|
||||||
|
* symfile.c (overlay_auto_command): Add forgotten parameter definitions.
|
||||||
|
(overlay_manual_command, overlay_off_command): Likewise.
|
||||||
|
(overlay_load_command): Likewise.
|
||||||
|
* tracepoint.c (memrange_cmp): Parameters have type void *, not
|
||||||
|
struct memrange *.
|
||||||
|
|
||||||
Tue Apr 28 11:08:25 1998 John Metzler <jmetzler@cygnus.com>
|
Tue Apr 28 11:08:25 1998 John Metzler <jmetzler@cygnus.com>
|
||||||
|
|
||||||
* rom68k-rom.c (_initialize_rom68k): Fix unresolved init_rom_68kcmds
|
* rom68k-rom.c (_initialize_rom68k): Fix unresolved init_rom_68kcmds.
|
||||||
|
|
||||||
Mon Apr 27 14:32:21 1998 Mark Alexander <marka@cygnus.com>
|
Mon Apr 27 14:32:21 1998 Mark Alexander <marka@cygnus.com>
|
||||||
|
|
||||||
|
@ -15,19 +23,20 @@ Mon Apr 27 14:32:21 1998 Mark Alexander <marka@cygnus.com>
|
||||||
|
|
||||||
Mon Apr 27 13:46:40 1998 John Metzler <jmetzler@cygnus.com>
|
Mon Apr 27 13:46:40 1998 John Metzler <jmetzler@cygnus.com>
|
||||||
|
|
||||||
* rom68k-rom.c (_initialize_rom68k init_rom68k_cmds):
|
* rom68k-rom.c (_initialize_rom68k, init_rom68k_cmds):
|
||||||
* abug-rom.c (_initialize_abug_rom init_abug-cmds):
|
Convert all static initializations of monitor ops structures to
|
||||||
* cpu32bug-rom.c (_initialize_cpu32bug_rom init_cpu32bug_cmds):
|
executable initializations in order that additions to the data
|
||||||
* mon960-rom.c (initialize_mon960 init_mon960_cmds):
|
structure definition can me made without repeating this editing
|
||||||
* op50-rom.c (initialize_op50n init_op50n_cmds) :
|
exercise.
|
||||||
* ppcbug-rom.c (_initialize_ppcbug_rom init_ppc_cmds) :
|
* abug-rom.c (_initialize_abug_rom, init_abug-cmds): Ditto.
|
||||||
* sh3-rom.c (_initialize_sh3_rom init_sh3_cmds) :
|
* cpu32bug-rom.c (_initialize_cpu32bug_rom, init_cpu32bug_cmds): Ditto.
|
||||||
* sparclet-rom.c (_initialize_sparcletinit_sparclet_cmds ) :
|
* mon960-rom.c (initialize_mon960, init_mon960_cmds): Ditto.
|
||||||
* remote-est.c ( _initialize_est init_est_cmds) :
|
* op50-rom.c (initialize_op50n, init_op50n_cmds): Ditto.
|
||||||
* remote-hms.c ( _initialize_remote_hms init_hms_cmds) :
|
* ppcbug-rom.c (_initialize_ppcbug_rom, init_ppc_cmds): Ditto.
|
||||||
Convert all static initializations of monitor ops structures to
|
* sh3-rom.c (_initialize_sh3_rom, init_sh3_cmds): Ditto.
|
||||||
executable initializations in order that additions to the data structure
|
* sparclet-rom.c (_initialize_sparclet, init_sparclet_cmds): Ditto.
|
||||||
definition can be made without repeating this editing exercise.
|
* remote-est.c (_initialize_est, init_est_cmds): Ditto.
|
||||||
|
* remote-hms.c ( _initialize_remote_hms, init_hms_cmds): Ditto.
|
||||||
|
|
||||||
Mon Apr 27 10:43:04 1998 Jason Molenda (crash@bugshack.cygnus.com)
|
Mon Apr 27 10:43:04 1998 Jason Molenda (crash@bugshack.cygnus.com)
|
||||||
|
|
||||||
|
|
|
@ -1086,9 +1086,14 @@ parse_and_eval_memrange (arg, addr, typecode, offset, size)
|
||||||
|
|
||||||
/* compare memranges for qsort */
|
/* compare memranges for qsort */
|
||||||
static int
|
static int
|
||||||
memrange_cmp (a, b)
|
memrange_cmp (voidpa, voidpbb)
|
||||||
struct memrange *a, *b;
|
void *voidpa, *voidpb;
|
||||||
{
|
{
|
||||||
|
struct memrange *a, *b;
|
||||||
|
|
||||||
|
a = (struct memrange *) voidpa;
|
||||||
|
b = (struct memrbnge *) voidpb;
|
||||||
|
|
||||||
if (a->type < b->type) return -1;
|
if (a->type < b->type) return -1;
|
||||||
if (a->type > b->type) return 1;
|
if (a->type > b->type) return 1;
|
||||||
if (a->type == 0)
|
if (a->type == 0)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue