diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1997-11-12 04:36:29 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1997-11-12 04:36:29 +0000 |
commit | 235db74f0c7445cd9b5ee77346db17e180d32b93 (patch) | |
tree | 082b66089d1697e6b52065542ee7d07df5b988e4 /win32/win32thread.h | |
parent | 3a25acb49073f2e27090ba463a25de8bf4748c3f (diff) | |
download | perl-235db74f0c7445cd9b5ee77346db17e180d32b93.tar.gz |
Carry over changes in ansiperl branch. Win32 branch is now
the leading edge.
p4raw-id: //depot/win32/perl@240
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 { \ |