From 8a7b4b397f986d6d6290c49af91d58072749a66f Mon Sep 17 00:00:00 2001 From: normal Date: Thu, 13 Sep 2018 01:43:03 +0000 Subject: [PATCH] thread.c (rb_thread_atfork): reinitialize current th->interrupt_lock Another thread may be holding th->interrupt_lock while our current thread calls fork. Therefore we must reinitialize our own th->interrupt_lock in the child process because the owner of the lock is only in the parent. The original parent process is unaffected. We cannot destroy the lock while it has an unknown state, either, so some implementations can leak a small amount of memory, here (NPTL won't). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64707 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/thread.c b/thread.c index 3f5dcb4827..ccb1346487 100644 --- a/thread.c +++ b/thread.c @@ -4363,6 +4363,10 @@ rb_thread_atfork_internal(rb_thread_t *th, void (*atfork)(rb_thread_t *, const r /* may be held by MJIT threads in parent */ rb_native_mutex_initialize(&vm->waitpid_lock); + + /* may be held by any thread in parent */ + rb_native_mutex_initialize(&th->interrupt_lock); + vm->fork_gen++; vm->sleeper = 0;