* Makefile.in (init.c): Add udi2go32.o to list of files that we
authorJim Kingdon <jkingdon@engr.sgi.com>
Wed, 10 Nov 1993 01:34:39 +0000 (01:34 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Wed, 10 Nov 1993 01:34:39 +0000 (01:34 +0000)
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.

gdb/ChangeLog
gdb/Makefile.in
gdb/remote-udi.c

index 8d5c34eea1e6f91c7896d733122ce6c9fd0ca05c..0e3e5450b2b77e0c3a0bdc3e3c33722af6f035b2 100644 (file)
@@ -1,3 +1,13 @@
+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.
index 79fd96eeeeb0da26425edde53f91ba726988c7c7..6a83cfeddea2b2e77a74afacd845517a99f6f24f 100644 (file)
@@ -503,6 +503,7 @@ init.c: $(OBS) $(TSOBS)
            -e '/xdr_rdb.o/d' \
            -e '/udr.o/d' \
            -e '/udip2soc.o/d' \
+           -e '/udi2go32.o/d' \
            -e '/version.o/d' \
            -e '/[a-z0-9A-Z_]*-exp.tab.o/d' \
            -e 's/\.o/.c/'` ; \
index 7f7d0d377733ef9e4ef32cfcb7fff3d7e1d7119b..3afc02f97dd3fe6e4e26b53618441bb302751430 100644 (file)
@@ -416,17 +416,18 @@ udi_wait (pid, status)
 
       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;