Skip to content

Instantly share code, notes, and snippets.

@TikiTDO
Last active April 9, 2016 13:50
Show Gist options
  • Save TikiTDO/cbb94b554b5b94c35f99d904b8a66124 to your computer and use it in GitHub Desktop.
Save TikiTDO/cbb94b554b5b94c35f99d904b8a66124 to your computer and use it in GitHub Desktop.
class Thread
class << self
alias_method :old_new, :new
def new(*args, &block)
new_thread = old_new(*args, &block)
new_thread.thread_variable_set(:parent, Thread.current)
return new_thread
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment