home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / gdb-4.14-src.lha / gdb-4.14 / gdb / nindy-share / ttyflush.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-28  |  1.4 KB  |  49 lines

  1. /* This file is part of GDB.
  2.  
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.  
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.  
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  16.  
  17. /* This started out life as code shared between the nindy monitor and
  18.    GDB.  For various reasons, this is no longer true.  Eventually, it
  19.    probably should be merged into remote-nindy.c.  */
  20.  
  21. #include <stdio.h>
  22. #include "defs.h"
  23. #include "serial.h"
  24.  
  25. /* Flush all pending input and output for SERIAL, wait for a second, and
  26.    then if there is a character pending, discard it and flush again.  */
  27.  
  28. int
  29. tty_flush (serial)
  30.      serial_t serial;
  31. {
  32.   while (1)
  33.     {
  34.       SERIAL_FLUSH_INPUT (serial);
  35.       SERIAL_FLUSH_OUTPUT (serial);
  36.       sleep(1);
  37.       switch (SERIAL_READCHAR (serial, 0))
  38.     {
  39.     case SERIAL_TIMEOUT:
  40.     case SERIAL_ERROR:
  41.     case SERIAL_EOF:
  42.       return 0;
  43.     default:
  44.       /* We read something.  Eeek.  Try again.  */
  45.       break;
  46.     }
  47.     }
  48. }
  49.