diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-03-10 16:12:48 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-03-10 16:12:48 +0100 |
commit | 581f6dc94d8177ff1d826d4414ed15288d9fd800 (patch) | |
tree | cb539154da6e4c2f8f4e01f0bd31e9a9ba6c2f71 /src/os_unixx.h | |
parent | 37d619f896bb425a0e82199977ab9069434c9b1d (diff) | |
download | vim-git-581f6dc94d8177ff1d826d4414ed15288d9fd800.tar.gz |
updated for version 7.2.392v7.2.392
Problem: Netbeans hangs reading from a socket at the maximum block size.
Solution: Use select() or poll(). (Xavier de Gaye)
Diffstat (limited to 'src/os_unixx.h')
-rw-r--r-- | src/os_unixx.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/os_unixx.h b/src/os_unixx.h index 3dd254e9a..e46edcf59 100644 --- a/src/os_unixx.h +++ b/src/os_unixx.h @@ -28,11 +28,6 @@ # include <sys/wait.h> # endif -# if defined(HAVE_SYS_SELECT_H) && \ - (!defined(HAVE_SYS_TIME_H) || defined(SYS_SELECT_WITH_SYS_TIME)) -# include <sys/select.h> -# endif - # ifndef WEXITSTATUS # ifdef HAVE_UNION_WAIT # define WEXITSTATUS(stat_val) ((stat_val).w_T.w_Retcode) @@ -65,16 +60,6 @@ # include <string.h> #endif -#ifndef HAVE_SELECT -# ifdef HAVE_SYS_POLL_H -# include <sys/poll.h> -# else -# ifdef HAVE_POLL_H -# include <poll.h> -# endif -# endif -#endif - #ifdef HAVE_SYS_STREAM_H # include <sys/stream.h> #endif |