class Concurrent::FixedThreadPool::Worker

def dead?

def dead?
  return @mutex.synchronize do
    @thread.nil? ? false : ! @thread.alive?
  end
end