Actions
Bug #13846
closedOpenbsd possible memory leak when using Thread
Bug #13846:
Openbsd possible memory leak when using Thread
Description
On openBSD 5.9/6.1 running this code causes RSS memory to increase without limit. This does not happen in ubuntu or other linux.
loop do
thr = Thread.new { puts "thread test" }
thr.join
GC.start
end
This is related to other things too, like when calling Open3.* , virtually everything that is using threads...
I have attached a screenshot with RSS memory plot I did.
Files
Actions