mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 21:19:54 +00:00
* configure.in: removed target_dependent line.
* remote-mm.c (mm_attach): change printf to error to prevent fallthrough bug. * remote-udi.c (udi_attach): change printf to error to prevent fallthrough bug.
This commit is contained in:
parent
45413b27d2
commit
f7fe7196c2
@ -1,6 +1,12 @@
|
|||||||
Wed Sep 16 22:31:55 1992 K. Richard Pixley (rich@sendai.cygnus.com)
|
Wed Sep 16 22:31:55 1992 K. Richard Pixley (rich@sendai.cygnus.com)
|
||||||
|
|
||||||
* breakpoint.c, sparc-tdep.c: comment changes.
|
* breakpoint.c, sparc-tdep.c: comment changes.
|
||||||
|
* configure.in: removed target_dependent line.
|
||||||
|
|
||||||
|
* remote-mm.c (mm_attach): change printf to error to prevent
|
||||||
|
fallthrough bug.
|
||||||
|
* remote-udi.c (udi_attach): change printf to error to prevent
|
||||||
|
fallthrough bug.
|
||||||
|
|
||||||
Sat Sep 19 04:23:54 1992 John Gilmore (gnu@cygnus.com)
|
Sat Sep 19 04:23:54 1992 John Gilmore (gnu@cygnus.com)
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
configdirs="doc"
|
configdirs="doc"
|
||||||
srcname="GDB"
|
srcname="GDB"
|
||||||
srctrigger=main.c
|
srctrigger=main.c
|
||||||
target_dependent=true
|
|
||||||
|
|
||||||
# per-host:
|
# per-host:
|
||||||
|
|
||||||
|
@ -488,7 +488,7 @@ mm_attach (args, from_tty)
|
|||||||
DENTER("mm_attach()");
|
DENTER("mm_attach()");
|
||||||
|
|
||||||
if (!mm_stream)
|
if (!mm_stream)
|
||||||
printf ("MiniMon not opened yet, use the 'target minimon' command.\n");
|
error ("MiniMon not opened yet, use the 'target minimon' command.\n");
|
||||||
|
|
||||||
dont_repeat();
|
dont_repeat();
|
||||||
|
|
||||||
|
@ -424,7 +424,7 @@ udi_attach (args, from_tty)
|
|||||||
DENTER("udi_attach()");
|
DENTER("udi_attach()");
|
||||||
|
|
||||||
if (udi_session_id < 0)
|
if (udi_session_id < 0)
|
||||||
printf ("UDI connection not opened yet, use the 'target udi' command.\n");
|
error ("UDI connection not opened yet, use the 'target udi' command.\n");
|
||||||
|
|
||||||
if (from_tty)
|
if (from_tty)
|
||||||
printf ("Attaching to remote program %s...\n", prog_name);
|
printf ("Attaching to remote program %s...\n", prog_name);
|
||||||
|
Loading…
Reference in New Issue
Block a user