Merge pull request #488 from Ni2c2k/master

Build for Qnx
This commit is contained in:
PKEuS 2014-12-16 21:48:21 +01:00
commit 8728b23c6f
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@
#endif #endif
#endif #endif
#if !defined(NO_UNIX_BACKTRACE_SUPPORT) && defined(USE_UNIX_SIGNAL_HANDLING) && defined(__GNUC__) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__NetBSD__) && !defined(__SVR4) #if !defined(NO_UNIX_BACKTRACE_SUPPORT) && defined(USE_UNIX_SIGNAL_HANDLING) && defined(__GNUC__) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__NetBSD__) && !defined(__SVR4) && !defined(__QNX__)
#define USE_UNIX_BACKTRACE_SUPPORT #define USE_UNIX_BACKTRACE_SUPPORT
#include <cxxabi.h> #include <cxxabi.h>
#include <execinfo.h> #include <execinfo.h>

View File

@ -143,7 +143,7 @@ int ThreadExecutor::handleRead(int rpipe, unsigned int &result)
bool ThreadExecutor::checkLoadAverage(size_t nchildren) bool ThreadExecutor::checkLoadAverage(size_t nchildren)
{ {
#ifdef __CYGWIN__ // getloadavg() is unsupported on Cygwin. #if defined(__CYGWIN__) || defined(__QNX__) // getloadavg() is unsupported on Cygwin, Qnx.
return true; return true;
#else #else
if (!nchildren || !_settings._loadAverage) { if (!nchildren || !_settings._loadAverage) {