* remote-udi.c (udi_mourn): Don't pop target.
This commit is contained in:
parent
b9790da889
commit
7fc6a6b52e
2 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Mon Sep 27 10:22:37 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
|
* remote-udi.c (udi_mourn): Don't pop target.
|
||||||
|
|
||||||
Fri Sep 24 17:25:41 1993 Stu Grossman (grossman at cygnus.com)
|
Fri Sep 24 17:25:41 1993 Stu Grossman (grossman at cygnus.com)
|
||||||
|
|
||||||
* corelow.c: Add multi thread/process support for core files with
|
* corelow.c: Add multi thread/process support for core files with
|
||||||
|
|
|
@ -180,8 +180,14 @@ udi_create_inferior (execfile, args, env)
|
||||||
static void
|
static void
|
||||||
udi_mourn()
|
udi_mourn()
|
||||||
{
|
{
|
||||||
pop_target (); /* Pop back to no-child state */
|
#if 0
|
||||||
generic_mourn_inferior ();
|
/* Requiring "target udi" each time you run is a major pain. I suspect
|
||||||
|
this was just blindy copied from remote.c, in which "target" and
|
||||||
|
"run" are combined. Having a udi target without an inferior seems
|
||||||
|
to work between "target udi" and "run", so why not now? */
|
||||||
|
pop_target (); /* Pop back to no-child state */
|
||||||
|
#endif
|
||||||
|
generic_mourn_inferior ();
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************************** UDI_OPEN
|
/******************************************************************** UDI_OPEN
|
||||||
|
|
Loading…
Reference in a new issue