diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-03-20 19:59:38 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-03-20 19:59:38 +0000 |
commit | 58a2c44a26e76806acee962f48bdc4863e97ac75 (patch) | |
tree | e6491af77f286bea09559ed51fb76b447f9bbd28 /gdb/config | |
parent | cbb1a37c340567d5ab5afcf846036a269dce5755 (diff) | |
download | gdb-58a2c44a26e76806acee962f48bdc4863e97ac75.zip gdb-58a2c44a26e76806acee962f48bdc4863e97ac75.tar.gz gdb-58a2c44a26e76806acee962f48bdc4863e97ac75.tar.bz2 |
2000-03-04 Eli Zaretskii <eliz@is.elta.co.il>
* event-loop.c (top-level) [NO_FD_SET]: Deprecate this branch.
Print an error at compile time if we are to use select, but FD_SET
is not available.
(SELECT_MASK, NBBY, FD_SETSIZE, NFDBITS, MASK_SIZE): Define only
if HAVE_POLL is not defined and NO_FD_SET *is* defined.
(create_file_handler) [!HAVE_POLL]: Use FD_SET and FD_CLR.
(delete_file_handler) [!HAVE_POLL]: Use FD_CLR and FD_ISSET.
(gdb_wait_for_event) [!HAVE_POLL]: Copy fd_set sets directly
instead of using memcpy and memset. Use FD_ISSET.
* config/i386/xm-go32.h (fd_mask): Remove typedef.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/i386/xm-go32.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/config/i386/xm-go32.h b/gdb/config/i386/xm-go32.h index 871b121..868074d 100644 --- a/gdb/config/i386/xm-go32.h +++ b/gdb/config/i386/xm-go32.h @@ -36,4 +36,3 @@ #define DIRNAME_SEPARATOR ';' #define HOST_I386 -typedef unsigned char fd_mask; |