This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Regen stuff.
[perl5.git] / wince / win32thread.h
index c930bfa..33e11a5 100644 (file)
@@ -1,4 +1,4 @@
-// Time-stamp: <01/08/01 21:00:36 keuchel@w2k>
+/* Time-stamp: <01/08/01 21:00:36 keuchel@w2k> */
 
 #ifndef _WIN32THREAD_H
 #define _WIN32THREAD_H
@@ -156,7 +156,7 @@ extern __declspec(thread) void *PL_current_context;
 #define PERL_SET_CONTEXT(t)            Perl_set_context(t)
 #endif
 
-#if defined(USE_THREADS)
+#if defined(USE_5005THREADS)
 struct perl_thread;
 int Perl_thread_create (struct perl_thread *thr, thread_func_t *fn);
 void Perl_set_thread_self (struct perl_thread *thr);
@@ -164,7 +164,7 @@ void Perl_init_thread_intern (struct perl_thread *t);
 
 #define SET_THREAD_SELF(thr) Perl_set_thread_self(thr)
 
-#endif /* USE_THREADS */
+#endif /* USE_5005THREADS */
 
 END_EXTERN_C