+Tue Nov 9 19:20:17 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
+
+ * Makefile.in (init.c): Add udi2go32.o to list of files that we
+ should not try to search for _initialize_* functions.
+
+ * remote-udi.c (udi_wait): Change UDIGdb_StdoutReady back to
+ UDIStdoutReady. It accidentally got changed on 24 Oct 93 when
+ stdout was changed to gdb_stdout. Likewise for UDIGetStdout,
+ UDIStderrReady, and UDIGetStderr.
+
Tue Nov 9 12:48:06 1993 Tom Lord (lord@cygnus.com)
* remote-hms.c (hms_wait): fixed too many arguments to putc_unfiltered.
switch (StopReason & UDIGrossState)
{
- case UDIGdb_StdoutReady:
- if (UDIGetGdb_Stdout (sbuf, (UDISizeT)SBUF_MAX, &CountDone))
+ case UDIStdoutReady:
+ if (UDIGetStdout (sbuf, (UDISizeT)SBUF_MAX, &CountDone))
/* This is said to happen if the program tries to output
a whole bunch of output (more than SBUF_MAX, I would
guess). It doesn't seem to happen with the simulator. */
- warning ("UDIGetGdb_Stdout() failed in udi_wait");
+ warning ("UDIGetStdout() failed in udi_wait");
fwrite (sbuf, 1, CountDone, gdb_stdout);
gdb_flush(gdb_stdout);
continue;
- case UDIGdb_StderrReady:
- UDIGetGdb_Stderr (sbuf, (UDISizeT)SBUF_MAX, &CountDone);
+
+ case UDIStderrReady:
+ UDIGetStderr (sbuf, (UDISizeT)SBUF_MAX, &CountDone);
fwrite (sbuf, 1, CountDone, gdb_stderr);
gdb_flush(gdb_stderr);
continue;