diff options
Diffstat (limited to 'win32/win32thread.h')
-rw-r--r-- | win32/win32thread.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/win32/win32thread.h b/win32/win32thread.h index 5bb6e6de59..0c6bb55b69 100644 --- a/win32/win32thread.h +++ b/win32/win32thread.h @@ -108,16 +108,12 @@ typedef THREAD_RET_TYPE thread_func_t(void *); START_EXTERN_C void Perl_alloc_thread_key _((void)); int Perl_thread_create _((struct thread *thr, thread_func_t *fn)); -void Perl_init_thread_intern _((struct thread *thr)); +void Perl_set_thread_self _((struct thread *thr)); END_EXTERN_C #define INIT_THREADS NOOP #define ALLOC_THREAD_KEY Perl_alloc_thread_key() -#define HAVE_THREAD_INTERN - -struct thread_intern { - int dummy; /* XXX for now */ -}; +#define SET_THREAD_SELF(thr) Perl_set_thread_self(thr) #define JOIN(t, avp) \ STMT_START { \ |