diff options
author | seki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-06-27 15:36:32 +0000 |
---|---|---|
committer | seki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-06-27 15:36:32 +0000 |
commit | a1162d2bf8fda567f67006ea063c033daca0860a (patch) | |
tree | 87ae99fdd7a106a913536aac8d579c6495048c0e /sample/drb/holders.rb | |
parent | 0131ff249ae19e1decc7817a53ca7c523293e72a (diff) |
using "DRb.thread.join" instead of "gets"
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6536 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/drb/holders.rb')
-rw-r--r-- | sample/drb/holders.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sample/drb/holders.rb b/sample/drb/holders.rb index 20939034cd..2d9974f3fc 100644 --- a/sample/drb/holders.rb +++ b/sample/drb/holders.rb @@ -59,6 +59,5 @@ if __FILE__ == $0 DRb.start_service(nil, DRbEx4.new) puts DRb.uri - puts '[return] to exit' - gets + DRb.thread.join end |