mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* thread.c (thread_cleanup_func): ignore errors from destroying mutex
of dead thread. [ruby-core:15069] * thread_pthread.c, thread_win32.c (native_thread_destroy): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15111 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b66eb53650
commit
3a4bfbad09
4 changed files with 9 additions and 2 deletions
|
@ -418,6 +418,7 @@ static void
|
|||
native_thread_destroy(rb_thread_t *th)
|
||||
{
|
||||
HANDLE intr = th->native_thread_data.interrupt_event;
|
||||
native_mutex_destroy(&th->interrupt_lock);
|
||||
thread_debug("close handle - intr: %p, thid: %p\n", intr, th->thread_id);
|
||||
th->native_thread_data.interrupt_event = 0;
|
||||
w32_close_handle(intr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue