[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Threading / sockets bug

kingsley

7/7/2003 7:04:00 AM

Where do I report this bug?

Only happens on windows platform:

causes some error ot lock that doesnt occur on Unices

require \'socket\'
require \'thread\'

sock = TCPSocket.new(\'ancient.anguish.org\',2222) # login name is :
guest (no password needed)

t1 = Thread.new do
if line = gets
sock.write line
end
end

t2 = Thread.new do
loop do
ch = sock.recv(1)
putc ch
end
end

t1.join
t2.join

Thanks

Kingsley

1 Answer

Shashank Date

7/7/2003 11:59:00 PM

0


<kingsley@icecode.org> wrote in message
> Where do I report this bug?
>
> Only happens on windows platform:

I don''t think it is a bug ... just a limitation of light-weight threading
on windows.

Try this (it worked for me using ruby 1.8.0 (2003-06-23) [i386-mswin32]
on Win XP Pro):

# ------------------------------------------------------
require ''socket''
require ''thread''

sock = TCPSocket.new(''ancient.anguish.org'',2222)
# login name is : guest (no password needed)

t1 = Thread.new {
if line = gets
sock.write line
end
}

sleep(0.01) #<------- added this line

t2 = Thread.new {
loop do
ch = sock.recv(1)
putc ch
end
}

t1.join
t2.join
# ------------------------------------------------------

HTH,
-- shanko