diff options
author | Steve Chamberlain <sac@cygnus> | 1993-01-04 15:39:00 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1993-01-04 15:39:00 +0000 |
commit | 5fe932391d34c4369afa1ff42a386a708149be74 (patch) | |
tree | 46d62a3a098f40236b447373665c88f6286508d1 /gdb/serial.h | |
parent | 27de82c60361e1017504ded324b24ec979ae97b6 (diff) | |
download | binutils-5fe932391d34c4369afa1ff42a386a708149be74.tar.gz binutils-5fe932391d34c4369afa1ff42a386a708149be74.tar.bz2 binutils-5fe932391d34c4369afa1ff42a386a708149be74.zip |
* command.c (shell_escape, make_command, _initialze_command):
don't create or use fork if CANT_FORK is defined.
* serial.h, ser-go32.c: now compiles, but "the obvious problems of
code written for the IBM PC" remain.
* xm-go32.h: define CANT_FORK
Diffstat (limited to 'gdb/serial.h')
-rw-r--r-- | gdb/serial.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/serial.h b/gdb/serial.h index 1295d185266..6ac5c0827b6 100644 --- a/gdb/serial.h +++ b/gdb/serial.h @@ -17,6 +17,11 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifdef __GO32__ + +/* Then you use the asynctsr */ + +#else #ifdef HAVE_TERMIO #include <termios.h> @@ -38,6 +43,7 @@ struct ttystate { }; #endif /* not HAVE_TERMIO */ +#endif /* Return a sensible default name for a serial device, something which can be used as an argument to serial_open. */ |