mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 ec2e12ee2c
			
		
	
	
		ec2e12ee2c
		
	
	
	
	
		
			
			git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6536 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'drb/drb'
 | |
| require 'drb/unix'
 | |
| require 'drb/gw'
 | |
| 
 | |
| DRb.install_id_conv(DRb::GWIdConv.new)
 | |
| gw = DRb::GW.new
 | |
| s1 = DRb::DRbServer.new(ARGV.shift, gw)
 | |
| s2 = DRb::DRbServer.new(ARGV.shift, gw)
 | |
| s1.thread.join
 | |
| s2.thread.join
 |