1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2022-08-29 18:18:20 +02:00
parent d694f320e4
commit b5358a98e6

View file

@ -173,7 +173,8 @@ class LeakChecker
def find_threads
Thread.list.find_all {|t|
t != Thread.current && t.alive?
t != Thread.current && t.alive? &&
!(t.thread_variable?(:"\0__detached_thread__") && t.thread_variable_get(:"\0__detached_thread__"))
}
end