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 | bea4d32716d950214bfa48bf725540102cf22e2b (patch) | |
tree | 87ae99fdd7a106a913536aac8d579c6495048c0e /sample/drb/darray.rb | |
parent | 43d63e82818a74ec830eecbf16dcbe8e24ba51f3 (diff) | |
download | ruby-bea4d32716d950214bfa48bf725540102cf22e2b.tar.gz ruby-bea4d32716d950214bfa48bf725540102cf22e2b.tar.xz ruby-bea4d32716d950214bfa48bf725540102cf22e2b.zip |
using "DRb.thread.join" instead of "gets"
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6536 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/drb/darray.rb')
-rw-r--r-- | sample/drb/darray.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sample/drb/darray.rb b/sample/drb/darray.rb index bee295d27..95ee01ff0 100644 --- a/sample/drb/darray.rb +++ b/sample/drb/darray.rb @@ -8,6 +8,5 @@ require 'drb/drb' here = ARGV.shift DRb.start_service(here, [1, 2, "III", 4, "five", 6]) puts DRb.uri -puts '[return] to exit' -gets +DRb.thread.join |