ActionsLike0
Bug #17742
closedRandom.rand gets wrong after using Ractor and requiring benchmark
Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x86_64-linux]
Description
Dear All,
I use Ruby v3.0.0 on Ubuntu 18.04 x64 compiled from source the recommended way and when I run the following code:
require "benchmark"; r = []; 3.times.map{ r << Ractor.new{ p receive } }; r.map{|x| x.send(rand) }; rand
Then the "rand" method gets messed up. Running simply "rand" give weird values like 0.00000 or 1.0 or 0.3.
The same issue happens when running from pry or the installed irb shell or even when running from command line with the -e option.
Updated by wanabe (_ wanabe) about 4 years ago
- Related to Bug #17612: ractor crash with some simple codes added
ActionsLike0