enhanced get_highest_fd().

fixed an inifite looping bug in pio with posix_spawn() used
This commit is contained in:
2013-09-11 09:14:29 +00:00
parent 04e6df3dd8
commit 822bcf3afb
3 changed files with 58 additions and 21 deletions

View File

@ -372,6 +372,8 @@
#define QSE_OPENDIR(name) opendir(name)
#define QSE_CLOSEDIR(dir) closedir(dir)
#define QSE_REWINDDIR(dir) rewinddir(dir)
#define QSE_DIRFD(dir) dirfd(dir)
#define QSE_DIR DIR
#if defined(HAVE_READDIR64)
typedef struct dirent64 qse_dirent_t;