diff options
author | Stu Grossman <grossman@cygnus> | 1996-08-08 02:50:22 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1996-08-08 02:50:22 +0000 |
commit | 9e77e83d300a8ecb97bcb9abc1bb78a7441cf519 (patch) | |
tree | e3562a3716323e133ccf5b6c4642ba42f98c2573 /gdb/remote-array.c | |
parent | 7b25dea587a6757e0ac84f522a6567e001e22a17 (diff) | |
download | gdb-9e77e83d300a8ecb97bcb9abc1bb78a7441cf519.zip gdb-9e77e83d300a8ecb97bcb9abc1bb78a7441cf519.tar.gz gdb-9e77e83d300a8ecb97bcb9abc1bb78a7441cf519.tar.bz2 |
* dwarf2read.c dwarfread.c exec.c infcmd.c infrun.c main.c
mdebugread.c os9kread.c source.c top.c utils.c: Don't
include param.h or sys/file.h (or unistd.h in some cases).
* defs.h exec.c inflow.c remote-array.c remote-e7000.c
sparcl-tdep.c terminal.h utils.c: Replace all occurances of
__WIN32__, WINGDB, WIN32, etc... with _WIN32.
* main.c: Remove #ifndef WINGDB around option processing. Fix
bug with passing argc==0 and argv==NULL to getopt.
* (main) Remove calls to access() before source_command. Let
soure_command handle access errors.
* maint.c (maintenance_dump_me): #ifdef out for _WIN32.
* symtab.c (operator_chars): Make this global for wingdb.
* top.c (disconnect): #ifdef out for _WIN32.
* (source_command): If got an error and from_tty, then call print
error, else just return quietly.
* utils.c (fatal_dump_core): Can't kill ourselves under windows.
Just exit.
* (pollquit notice_quit): #ifdef out stuff that doesn't exist
under windows.
Diffstat (limited to 'gdb/remote-array.c')
-rw-r--r-- | gdb/remote-array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-array.c b/gdb/remote-array.c index 0ed84ca..42aa2da 100644 --- a/gdb/remote-array.c +++ b/gdb/remote-array.c @@ -727,7 +727,7 @@ array_wait (pid, status) timeout = 0; /* Don't time out -- user program is running. */ -#if !defined(__GO32__) && !defined(__MSDOS__) && !defined(__WIN32__) +#if !defined(__GO32__) && !defined(__MSDOS__) && !defined(_WIN32) tty_desc = SERIAL_FDOPEN (0); ttystate = SERIAL_GET_TTY_STATE (tty_desc); SERIAL_RAW (tty_desc); |