From c614567b4940f31a7ce98ceb9eb48b1241b4727a Mon Sep 17 00:00:00 2001 From: rpj Date: Thu, 4 Nov 1999 14:56:51 +0000 Subject: Add WinCE patches to snap-1999-05-30-wince-patches branch. --- tsd.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tsd.c') diff --git a/tsd.c b/tsd.c index 0766744..f8656ce 100644 --- a/tsd.c +++ b/tsd.c @@ -25,6 +25,11 @@ #include "pthread.h" #include "implement.h" + +/* TLS_OUT_OF_INDEXES not defined on WinCE */ +#ifndef TLS_OUT_OF_INDEXES +#define TLS_OUT_OF_INDEXES 0xffffffff +#endif int pthread_key_create (pthread_key_t * key, void (*destructor) (void *)) -- cgit v1.2.3