Temporary fix until Haiku implements the optional POSIX functions

This commit is contained in:
Benjamin FRANCOIS 2018-11-12 21:52:01 +00:00
parent e9afbe8651
commit d8483a9dc9

View File

@ -166,7 +166,7 @@ sthread_t *sthread_create(void (*thread_func)(void*), void *userdata)
}
/* TODO/FIXME - this needs to be implemented for Switch/3DS */
#if !defined(SWITCH) && !defined(USE_WIN32_THREADS) && !defined(_3DS) && !defined(GEKKO)
#if !defined(SWITCH) && !defined(USE_WIN32_THREADS) && !defined(_3DS) && !defined(GEKKO) && !defined(__HAIKU__)
#define HAVE_THREAD_ATTR
#endif