Skip to content
Snippets Groups Projects
Commit 6d73752d authored by jdavidberger's avatar jdavidberger
Browse files

Allow KWSYSPE_USE_SELECT macro to be overriden at compile time.

Some systems / tools don't play nicely with how select is used here.
parent bdbedcf1
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,8 @@ static inline void kwsysProcess_usleep(unsigned int msec)
* pipes' file handles to be non-blocking and just poll them directly
* without select().
*/
#if !defined(__BEOS__) && !defined(__VMS) && !defined(__MINT__)
#if !defined(__BEOS__) && !defined(__VMS) && !defined(__MINT__) && \
!defined(KWSYSPE_USE_SELECT)
#define KWSYSPE_USE_SELECT 1
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment