Add entry for change in solib-osf.c (osf_in_dynsym_resolve_code).
[deliverable/binutils-gdb.git] / gdb / nindy-share / ttyflush.c
CommitLineData
c906108c
SS
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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
c906108c
SS
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
28int
29tty_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}
This page took 0.106121 seconds and 4 git commands to generate.