From: "zzak (Zachary Scott)" Date: 2012-11-19T08:35:51+09:00 Subject: [ruby-core:49543] [ruby-trunk - Feature #7390][Open] Funny Falcon Threads Issue #7390 has been reported by zzak (Zachary Scott). ---------------------------------------- Feature #7390: Funny Falcon Threads https://bugs.ruby-lang.org/issues/7390 Author: zzak (Zachary Scott) Status: Open Priority: Normal Assignee: mame (Yusuke Endoh) Category: core Target version: =begin From github: https://github.com/ruby/ruby/pull/104 (1) Currently, when Thread wakes on timeout, it could not remove itself from ConditionVariable waiters until it acquires lock. So that, when ConditionVariable#signal is called, it will try to wakeup such thread, instead of some one else. Simple way to avoid it, is to allow Mutex#sleep to recieve a block, which will be called right after Thread will awake, but before Mutex will be tried to lock (2) Since MatzRuby use GVL for thread isolation, and native method could not be interrupted (unless it wish), we could remove couple of calles to Mutex#synchronize (3) Usage of hash with compare_by_identity allows remove call to Array#include? in a Queue. Also it allows to remove other call Mutex#synchronize from ConditionVariable#wait in case when we rely on GVL. (4) And cosmetic changes to SizedQueue =end -- http://bugs.ruby-lang.org/