* Rename remote-es1800.c to remote-es.c
[deliverable/binutils-gdb.git] / gdb / serial.h
... / ...
CommitLineData
1/* Remote serial support interface definitions for GDB, the GNU Debugger.
2 Copyright 1992, 1993 Free Software Foundation, Inc.
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20/* Terminal state pointer. This is specific to each type of interface. */
21
22typedef PTR serial_ttystate;
23
24struct _serial_t
25{
26 int fd; /* File descriptor */
27 struct serial_ops *ops; /* Function vector */
28 serial_ttystate ttystate; /* Not used (yet) */
29 int bufcnt; /* Amount of data in receive buffer */
30 unsigned char *bufp; /* Current byte */
31 unsigned char buf[BUFSIZ]; /* Da buffer itself */
32 int current_timeout; /* (termio{s} only), last value of VTIME */
33};
34
35typedef struct _serial_t *serial_t;
36
37struct serial_ops {
38 char *name;
39 struct serial_ops *next;
40 int (*open) PARAMS ((serial_t, const char *name));
41 void (*close) PARAMS ((serial_t));
42 int (*readchar) PARAMS ((serial_t, int timeout));
43 int (*write) PARAMS ((serial_t, const char *str, int len));
44 void (*go_raw) PARAMS ((serial_t));
45 serial_ttystate (*get_tty_state) PARAMS ((serial_t));
46 int (*set_tty_state) PARAMS ((serial_t, serial_ttystate));
47 int (*setbaudrate) PARAMS ((serial_t, int rate));
48};
49
50/* Add a new serial interface to the interface list */
51
52void serial_add_interface PARAMS ((struct serial_ops *optable));
53
54serial_t serial_open PARAMS ((const char *name));
55
56serial_t serial_fdopen PARAMS ((int fd));
57
58/* For most routines, if a failure is indicated, then errno should be
59 examined. */
60
61/* Try to open NAME. Returns a new serial_t on success, NULL on failure.
62 */
63
64#define SERIAL_OPEN(NAME) serial_open(NAME)
65
66/* Open a new serial stream using a file handle. */
67
68#define SERIAL_FDOPEN(FD) serial_fdopen(FD)
69
70/* Turn the port into raw mode. */
71
72#define SERIAL_RAW(SERIAL_T) (SERIAL_T)->ops->go_raw((SERIAL_T))
73
74#define SERIAL_GET_TTY_STATE(SERIAL_T) (SERIAL_T)->ops->get_tty_state((SERIAL_T))
75
76#define SERIAL_SET_TTY_STATE(SERIAL_T, TTYSTATE) (SERIAL_T)->ops->set_tty_state((SERIAL_T), (TTYSTATE))
77
78/* Read one char from the serial device with TIMEOUT seconds timeout.
79 Returns char if ok, else one of the following codes. Note that all
80 error codes are guaranteed to be < 0. */
81
82#define SERIAL_ERROR -1 /* General error, see errno for details */
83#define SERIAL_TIMEOUT -2
84#define SERIAL_EOF -3
85
86#define SERIAL_READCHAR(SERIAL_T, TIMEOUT) ((SERIAL_T)->ops->readchar((SERIAL_T), TIMEOUT))
87
88/* Set the baudrate to the decimal value supplied. Returns 0 for success,
89 -1 for failure. */
90
91#define SERIAL_SETBAUDRATE(SERIAL_T, RATE) ((SERIAL_T)->ops->setbaudrate((SERIAL_T), RATE))
92
93/* Write LEN chars from STRING to the port SERIAL_T. Returns 0 for success,
94 -1 for failure. */
95
96#define SERIAL_WRITE(SERIAL_T, STRING, LEN) ((SERIAL_T)->ops->write((SERIAL_T), STRING, LEN))
97
98/* Push out all buffers, close the device and destroy SERIAL_T. */
99
100void serial_close PARAMS ((serial_t));
101
102#define SERIAL_CLOSE(SERIAL_T) serial_close(SERIAL_T)
103
This page took 0.022449 seconds and 4 git commands to generate.