diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-11-18 11:56:09 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-11-18 11:56:09 +0000 |
commit | 3c4f770c93854ee7c6f0c96a5913404f60061eb2 (patch) | |
tree | 18ffd9ce5deb26e9046655f0078f1049826cd9d1 /win32/win32thread.c | |
parent | 3d57aefb538705242f5ab4c3d9d854139b302aba (diff) | |
parent | 55d256264fa5ff79990a3e74153691aa2e477d37 (diff) | |
download | perl-3c4f770c93854ee7c6f0c96a5913404f60061eb2.tar.gz |
Integrate win32 branch back into mainline.
p4raw-id: //depot/perl@262
Diffstat (limited to 'win32/win32thread.c')
-rw-r--r-- | win32/win32thread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win32/win32thread.c b/win32/win32thread.c index dfa9a0c733..4dbc750b05 100644 --- a/win32/win32thread.c +++ b/win32/win32thread.c @@ -15,11 +15,11 @@ Perl_alloc_thread_key(void) } void -init_thread_intern(struct thread *thr) +Perl_set_thread_self(struct thread *thr) { #ifdef USE_THREADS - /* GetCurrentThread() retrurns a pseudo handle, need - this to convert it into a handle another thread can use + /* Set thr->self. GetCurrentThread() retrurns a pseudo handle, need + this to convert it into a handle another thread can use. */ DuplicateHandle(GetCurrentProcess(), GetCurrentThread(), |