summaryrefslogtreecommitdiff
path: root/win32/win32thread.c
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>1997-11-26 01:33:32 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>1997-11-26 01:33:32 +0000
commit61c8b47908b7351a4a26db1cad96af343512550d (patch)
tree9414c2a61bbba2c65c95b41591243db769edc711 /win32/win32thread.c
parentbe679a9b8e5b022d9dbcf8917ef39627830b4ca2 (diff)
downloadperl-61c8b47908b7351a4a26db1cad96af343512550d.tar.gz
Fixup _55 for Win32:
Missed thread :-> perl_thread changes Two #define THR (not the same) K&R style func in hv.c p4raw-id: //depot/ansiperl@309
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;