* breakpoint.c, breakpoint.h (breakpoint_init_inferior): New function
[deliverable/binutils-gdb.git] / gdb / serial.h
CommitLineData
b52373a2 1/* Remote serial support interface definitions for GDB, the GNU Debugger.
f24c159f 2 Copyright 1992, 1993 Free Software Foundation, Inc.
ae0ea72e
SC
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
b70b042d
RP
20#ifndef SERIAL_H
21#define SERIAL_H
22
4e772f44 23/* Terminal state pointer. This is specific to each type of interface. */
5fe93239 24
38dc5e12 25typedef PTR serial_ttystate;
5fe93239 26
4e772f44
SG
27struct _serial_t
28{
372d09c3
JK
29 int fd; /* File descriptor */
30 struct serial_ops *ops; /* Function vector */
38dc5e12 31 serial_ttystate ttystate; /* Not used (yet) */
372d09c3
JK
32 int bufcnt; /* Amount of data in receive buffer */
33 unsigned char *bufp; /* Current byte */
34 unsigned char buf[BUFSIZ]; /* Da buffer itself */
35 int current_timeout; /* (termio{s} only), last value of VTIME */
f24c159f
JG
36};
37
4e772f44
SG
38typedef struct _serial_t *serial_t;
39
40struct serial_ops {
41 char *name;
42 struct serial_ops *next;
43 int (*open) PARAMS ((serial_t, const char *name));
44 void (*close) PARAMS ((serial_t));
45 int (*readchar) PARAMS ((serial_t, int timeout));
46 int (*write) PARAMS ((serial_t, const char *str, int len));
c2e247c4 47 int (*flush_output) PARAMS ((serial_t));
704deef2
JK
48 int (*flush_input) PARAMS ((serial_t));
49 int (*send_break) PARAMS ((serial_t));
4e772f44 50 void (*go_raw) PARAMS ((serial_t));
38dc5e12
SG
51 serial_ttystate (*get_tty_state) PARAMS ((serial_t));
52 int (*set_tty_state) PARAMS ((serial_t, serial_ttystate));
c2e247c4
JK
53 void (*print_tty_state) PARAMS ((serial_t, serial_ttystate));
54 int (*noflush_set_tty_state)
55 PARAMS ((serial_t, serial_ttystate, serial_ttystate));
4e772f44 56 int (*setbaudrate) PARAMS ((serial_t, int rate));
c2e247c4 57 int (*set_process_group) PARAMS ((serial_t, serial_ttystate, int));
ed3f6049
SG
58};
59
4e772f44 60/* Add a new serial interface to the interface list */
ed3f6049 61
4e772f44 62void serial_add_interface PARAMS ((struct serial_ops *optable));
ed3f6049 63
4e772f44 64serial_t serial_open PARAMS ((const char *name));
ae0ea72e 65
38dc5e12
SG
66serial_t serial_fdopen PARAMS ((int fd));
67
4febd102
SG
68/* For most routines, if a failure is indicated, then errno should be
69 examined. */
70
71/* Try to open NAME. Returns a new serial_t on success, NULL on failure.
72 */
ae0ea72e 73
4febd102 74#define SERIAL_OPEN(NAME) serial_open(NAME)
ae0ea72e 75
38dc5e12
SG
76/* Open a new serial stream using a file handle. */
77
78#define SERIAL_FDOPEN(FD) serial_fdopen(FD)
79
704deef2
JK
80/* Flush pending output. Might also flush input (if this system can't flush
81 only output). */
c2e247c4
JK
82
83#define SERIAL_FLUSH_OUTPUT(SERIAL_T) \
84 ((SERIAL_T)->ops->flush_output((SERIAL_T)))
85
704deef2
JK
86/* Flush pending input. Might also flush output (if this system can't flush
87 only input). */
88
89#define SERIAL_FLUSH_INPUT(SERIAL_T)\
90 ((*(SERIAL_T)->ops->flush_input) ((SERIAL_T)))
91
92/* Send a break between 0.25 and 0.5 seconds long. */
93
94#define SERIAL_SEND_BREAK(SERIAL_T) \
95 ((*(SERIAL_T)->ops->send_break) (SERIAL_T))
96
4febd102 97/* Turn the port into raw mode. */
ae0ea72e 98
4e772f44 99#define SERIAL_RAW(SERIAL_T) (SERIAL_T)->ops->go_raw((SERIAL_T))
ae0ea72e 100
c2e247c4
JK
101/* Return a pointer to a newly malloc'd ttystate containing the state
102 of the tty. */
38dc5e12
SG
103#define SERIAL_GET_TTY_STATE(SERIAL_T) (SERIAL_T)->ops->get_tty_state((SERIAL_T))
104
c2e247c4
JK
105/* Set the state of the tty to TTYSTATE. The change is immediate.
106 When changing to or from raw mode, input might be discarded. */
38dc5e12
SG
107#define SERIAL_SET_TTY_STATE(SERIAL_T, TTYSTATE) (SERIAL_T)->ops->set_tty_state((SERIAL_T), (TTYSTATE))
108
c2e247c4
JK
109/* printf_filtered a user-comprehensible description of ttystate. */
110#define SERIAL_PRINT_TTY_STATE(SERIAL_T, TTYSTATE) \
111 ((*((SERIAL_T)->ops->print_tty_state)) ((SERIAL_T), (TTYSTATE)))
112
113/* Set the tty state to NEW_TTYSTATE, where OLD_TTYSTATE is the
114 current state (generally obtained from a recent call to
115 SERIAL_GET_TTY_STATE), but be careful not to discard any input.
116 This means that we never switch in or out of raw mode, even
117 if NEW_TTYSTATE specifies a switch. */
118#define SERIAL_NOFLUSH_SET_TTY_STATE(SERIAL_T, NEW_TTYSTATE, OLD_TTYSTATE) \
119 ((*((SERIAL_T)->ops->noflush_set_tty_state)) \
120 ((SERIAL_T), (NEW_TTYSTATE), (OLD_TTYSTATE)))
121
0e5f1b37
RP
122/* Read one char from the serial device with TIMEOUT seconds to wait
123 or -1 to wait forever. Use timeout of 0 to effect a poll. Returns
124 char if ok, else one of the following codes. Note that all error
125 codes are guaranteed to be < 0. */
4febd102
SG
126
127#define SERIAL_ERROR -1 /* General error, see errno for details */
128#define SERIAL_TIMEOUT -2
129#define SERIAL_EOF -3
ae0ea72e 130
4e772f44 131#define SERIAL_READCHAR(SERIAL_T, TIMEOUT) ((SERIAL_T)->ops->readchar((SERIAL_T), TIMEOUT))
ae0ea72e 132
4febd102
SG
133/* Set the baudrate to the decimal value supplied. Returns 0 for success,
134 -1 for failure. */
ae0ea72e 135
4e772f44 136#define SERIAL_SETBAUDRATE(SERIAL_T, RATE) ((SERIAL_T)->ops->setbaudrate((SERIAL_T), RATE))
ae0ea72e 137
0ac0a9f6
RP
138/* Write LEN chars from STRING to the port SERIAL_T. Returns 0 for
139 success, non-zero for failure. */
ae0ea72e 140
4e772f44 141#define SERIAL_WRITE(SERIAL_T, STRING, LEN) ((SERIAL_T)->ops->write((SERIAL_T), STRING, LEN))
ae0ea72e 142
4febd102
SG
143/* Push out all buffers, close the device and destroy SERIAL_T. */
144
145void serial_close PARAMS ((serial_t));
ae0ea72e 146
4febd102 147#define SERIAL_CLOSE(SERIAL_T) serial_close(SERIAL_T)
740b7efa 148
c2e247c4
JK
149/* Destroy SERIAL_T without doing the rest of the stuff that SERIAL_CLOSE
150 does. */
151
152#define SERIAL_UN_FDOPEN(SERIAL_T) (free (SERIAL_T))
153
154/* Set the process group saved in TTYSTATE to GROUP. This just modifies
155 the ttystate setting; need to call SERIAL_SET_TTY_STATE for this to
156 actually have any effect. If no job control, then don't do anything. */
157#define SERIAL_SET_PROCESS_GROUP(SERIAL_T, TTYSTATE, GROUP) \
158 ((*((SERIAL_T)->ops->set_process_group)) (SERIAL_T, TTYSTATE, GROUP))
159
160/* Do we have job control? Can be assumed to always be the same within
161 a given run of GDB. In ser-unix.c, ser-go32.c, etc. */
162extern int job_control;
163
164/* Set the process group of the caller to its own pid, or do nothing if
165 we lack job control. */
166extern int gdb_setpgid PARAMS ((void));
b70b042d
RP
167
168#endif /* SERIAL_H */
This page took 0.115609 seconds and 4 git commands to generate.