aboutsummaryrefslogtreecommitdiffstats
path: root/thread_win32.c
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-20 15:20:17 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-20 15:20:17 +0000
commit1ff6a1953cafbec8ec93fe07112599f59c7cb873 (patch)
tree804f735fd5dc34718936f8f2500d3b6888bfeb3b /thread_win32.c
parent49fbf28b4579e15676e7371e4734f32d6392a0f4 (diff)
downloadruby-1ff6a1953cafbec8ec93fe07112599f59c7cb873.tar.gz
* thread.c (thread_cleanup_func): Moved interrupted_lock
destroying code from native_thread_destroy() to thread_cleanup_func() because it's platform independent logic. * thread_win32.c (native_thread_destroy): ditto. * thread_pthread.c (native_thread_destroy): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_win32.c')
-rw-r--r--thread_win32.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/thread_win32.c b/thread_win32.c
index 26516e4cf3..62ba5bbab5 100644
--- a/thread_win32.c
+++ b/thread_win32.c
@@ -511,7 +511,6 @@ static void
native_thread_destroy(rb_thread_t *th)
{
HANDLE intr = InterlockedExchangePointer(&th->native_thread_data.interrupt_event, 0);
- native_mutex_destroy(&th->interrupt_lock);
thread_debug("close handle - intr: %p, thid: %p\n", intr, th->thread_id);
w32_close_handle(intr);
}