From: Jim Kingdon Date: Thu, 2 Sep 1993 04:39:59 +0000 (+0000) Subject: * remote-udi.c (udi_wait): Call `warning' not `error'. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=83f00e88d72d7ea9a1267b1c97e55d3273d67d76;p=binutils-gdb.git * remote-udi.c (udi_wait): Call `warning' not `error'. --- diff --git a/gdb/remote-udi.c b/gdb/remote-udi.c index 0c67bbbe9e9..20e8d262c57 100644 --- a/gdb/remote-udi.c +++ b/gdb/remote-udi.c @@ -461,7 +461,10 @@ udi_wait (status) { case UDIStdoutReady: if (UDIGetStdout (sbuf, (UDISizeT)SBUF_MAX, &CountDone)) - error ("UDIGetStdout() failed in udi_wait"); + /* 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 ("UDIGetStdout() failed in udi_wait"); fwrite (sbuf, 1, CountDone, stdout); fflush(stdout); continue;