Skip to content
Snippets Groups Projects
Commit dea68fed authored by deuce's avatar deuce
Browse files

We can no longer depend on _THREAD_SAFE being set to decide that xpdev is

being build thread-safe.  Other libs (ie: SDL) may define it.

Create new XPDEV_THREAD_SAFE to know that xpdev is suposed to be thread-safe
parent 12ef2f53
No related branches found
No related tags found
No related merge requests found
XPDEV-MT_CFLAGS += -DXPDEV_THREAD_SAFE
XPDEV_LIBS += -lm
XPDEV-MT_LIBS += -lm
ifeq ($(os),netbsd) # NetBSD
......
......@@ -49,7 +49,7 @@
#include <strings.h> /* strcasecmp() */
#include <unistd.h> /* usleep */
#ifdef _THREAD_SAFE
#ifdef XPDEV_THREAD_SAFE
#include <pthread.h>/* Check for GNU PTH libs */
#ifdef _PTH_PTHREAD_H_
#include <pth.h>
......@@ -235,7 +235,7 @@ DLLEXPORT int DLLCALL get_errno(void);
#define YIELD() SLEEP(1)
#if defined(_THREAD_SAFE)
#if defined(XPDEV_THREAD_SAFE)
#if defined(__FreeBSD__)
#define MAYBE_YIELD() pthread_yield()
#elif defined(_PTH_PTHREAD_H_)
......
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