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.c | |
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.c')
-rw-r--r-- | win32/win32thread.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/win32/win32thread.c b/win32/win32thread.c index a9ca8e849d..4dbc750b05 100644 --- a/win32/win32thread.c +++ b/win32/win32thread.c @@ -15,7 +15,7 @@ Perl_alloc_thread_key(void) } void -init_thread_intern(struct thread *thr) +Perl_set_thread_self(struct thread *thr) { #ifdef USE_THREADS /* Set thr->self. GetCurrentThread() retrurns a pseudo handle, need @@ -28,7 +28,6 @@ init_thread_intern(struct thread *thr) 0, FALSE, DUPLICATE_SAME_ACCESS); - /* XXX init thr->i here */ #endif } |