summaryrefslogtreecommitdiff
path: root/win32/win32thread.c
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-11-27 16:12:15 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-11-27 16:12:15 +0000
commitf0bea234ec0a451a052c1e57903238c612bb1c20 (patch)
tree7f259259819b7b7326cd3521978446ae4bf2bfa2 /win32/win32thread.c
parent888d0fe0188fdde6c44d0523c70df0dfcccc5bea (diff)
parenteef1cf2a23a873e7d505bb26346d56dd1fe0c960 (diff)
downloadperl-f0bea234ec0a451a052c1e57903238c612bb1c20.tar.gz
Integrate win32 branch back into mainline.
p4raw-id: //depot/perl@322
Diffstat (limited to 'win32/win32thread.c')
-rw-r--r--win32/win32thread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/win32/win32thread.c b/win32/win32thread.c
index 3e63327638..039f8b4b6f 100644
--- a/win32/win32thread.c
+++ b/win32/win32thread.c
@@ -1,15 +1,15 @@
#include "EXTERN.h"
#include "perl.h"
-__declspec(thread) struct thread *Perl_current_thread = NULL;
+__declspec(thread) struct perl_thread *Perl_current_thread = NULL;
void
-Perl_setTHR(struct thread *t)
+Perl_setTHR(struct perl_thread *t)
{
Perl_current_thread = t;
}
-struct thread *
+struct perl_thread *
Perl_getTHR(void)
{
return Perl_current_thread;