Skip to content

Instantly share code, notes, and snippets.

@zanker
Created June 8, 2017 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zanker/447cc9420a26a8432381edc3228f6b0c to your computer and use it in GitHub Desktop.
Save zanker/447cc9420a26a8432381edc3228f6b0c to your computer and use it in GitHub Desktop.
def <<(work)
@mutex.synchronize do
if @shutdown
raise "Unable to add work while shutting down"
end
@todo << work
if @waiting < @todo.size and @spawned < @max
spawn_thread
end
@not_empty.signal
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment