diff options
Diffstat (limited to 'NetWare/nw5thread.c')
-rw-r--r-- | NetWare/nw5thread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/NetWare/nw5thread.c b/NetWare/nw5thread.c index 5cfa1801fc..e99512afbf 100644 --- a/NetWare/nw5thread.c +++ b/NetWare/nw5thread.c @@ -38,7 +38,7 @@ __declspec(thread) void *PL_current_context = NULL; void Perl_set_context(void *t) { -#if defined(USE_THREADS) || defined(USE_ITHREADS) +#if defined(USE_5005THREADS) || defined(USE_ITHREADS) # ifdef USE_DECLSPEC_THREAD Perl_current_context = t; # else @@ -51,7 +51,7 @@ Perl_set_context(void *t) void * Perl_get_context(void) { -#if defined(USE_THREADS) || defined(USE_ITHREADS) +#if defined(USE_5005THREADS) || defined(USE_ITHREADS) # ifdef USE_DECLSPEC_THREAD return Perl_current_context; # else @@ -67,7 +67,7 @@ Perl_get_context(void) BOOL Remove_Thread_Ctx(void) { -#if defined(USE_THREADS) || defined(USE_ITHREADS) +#if defined(USE_5005THREADS) || defined(USE_ITHREADS) # ifdef USE_DECLSPEC_THREAD return TRUE; # else |