Skip to content

Instantly share code, notes, and snippets.

@user454322
Last active August 29, 2015 13:55
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 user454322/8785580 to your computer and use it in GitHub Desktop.
Save user454322/8785580 to your computer and use it in GitHub Desktop.
Simple Ruby program to test threads
def sub1
i=0
while
i = rand(10) + i
#puts "In thread"
end
end
th = Thread.new{sub1}
th1 = Thread.new{sub1}
th2 = Thread.new{sub1}
p Thread.list
th.join
#ps -M Mac
#ps -LM Linux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment