summaryrefslogtreecommitdiff
path: root/lib/drb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/drb')
-rw-r--r--lib/drb/drb.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/drb/drb.rb b/lib/drb/drb.rb
index b4ccc11306..20f00e8ca9 100644
--- a/lib/drb/drb.rb
+++ b/lib/drb/drb.rb
@@ -1412,20 +1412,6 @@ module DRb
end
private
- def kill_sub_thread
- Thread.new do
- grp = ThreadGroup.new
- grp.add(Thread.current)
- list = @grp.list
- while list.size > 0
- list.each do |th|
- th.kill if th.alive?
- end
- list = @grp.list
- end
- end
- end
-
def run
Thread.start do
begin
@@ -1434,7 +1420,6 @@ module DRb
end
ensure
@protocol.close if @protocol
- kill_sub_thread
end
end
end