[#4346] Segmentation fault — Andrew Walrond <andrew@...>
FYI, just got this random unexpected crash
On 01 Feb 2005, at 07:33, Andrew Walrond wrote:
[#4360] Adding lastlog info to etc — "Berger, Daniel" <Daniel.Berger@...>
Hi all,
[#4368] 'when (cond):' causes SyntaxError — "NAKAMURA, Hiroshi" <nakahiro@...>
Hi,
[#4385] add color_set support to curses.c — Paul Duncan <pabs@...>
I'm not sure why this is missing from the Curses binding, but the
[#4392] HTTP Basic authentication for open_uri — Kent Sibilev <ksibilev@...>
Can somebody apply the following patch for open_uri in order to enable
[#4402] BUG: Struct.new(:a?).instance_methods — "Cs. Henk" <csaba-ml@...>
Hi, getting an ArgumentError with "NULL pointer given" doesn't seem to
[#4403] Re: Unknown OS X 10.2 Socket constants (+script to generate) — Sam Roberts <sroberts@...>
Quoteing matz@ruby-lang.org, on Tue, Feb 08, 2005 at 01:21:18PM +0900:
[#4427] Re: windows socket connection freeze — ville.mattila@...
[#4432] curses + threads = non-blocking getch — William Morgan <wmorgan-ruby-core@...>
Hello experts,
In article <20050214231544.GE26414@masanjin.net>,
[#4439] Thread-safe Ruby Status? — Vincent Isambart <vincent.isambart@...>
Hello,
[#4448] add persistent history to irb — "David A. Black" <dblack@...>
Hi --
[#4453] bug in IRB with $_ matching a range of regexps — Ryan Davis <ryand-ruby@...>
> % ruby -v
[#4468] Re: Strange argc check in stable snapshot — "Berger, Daniel" <Daniel.Berger@...>
> -----Original Message-----
[#4475] Re: Strange argc check in stable snapshot — "Berger, Daniel" <Daniel.Berger@...>
> -----Original Message-----
[#4479] Requesting addition to IRB (configurable standard output) — Sascha Ebach <se@...>
Hello,
Quoting se@digitale-wertschoepfung.de, on Fri, Feb 25, 2005 at 01:22:34AM +0900:
On 24 Feb 2005, at 19:51, Sam Roberts wrote:
Quoting drbrain@segment7.net, on Sat, Feb 26, 2005 at 02:43:31AM +0900:
On 25 Feb 2005, at 16:03, Sam Roberts wrote:
Quoting drbrain@segment7.net, on Sat, Feb 26, 2005 at 10:24:52AM +0900:
On 25 Feb 2005, at 18:55, Sam Roberts wrote:
Quoting drbrain@segment7.net, on Sat, Feb 26, 2005 at 03:49:49PM +0900:
Re: windows socket connection freeze
Hi,
My patch resolves this issue. That patch was never integrated in the CVS
tree and I don't know why.
I'm using that patch in my software (Lektora, http://www.lektora.com, great
RSS aggregator that integrates in Firefox/IE) and it works great.
I would be glad if that patch would be integrated because I have to manually
apply it for each Ruby release. ;-(
Also, while I was porting Lektora to MacOSX, I realized that dns lookups
were blocking all threads too. That slows down a lot my software.
I made a patch that resolves this issue too. It uses pthreads to make dns
lookups and it works great. With that patch applied, the ruby process can go
100% CPU without any blocking.
I'll prepare and send this new patch soon. I need to do the equivalent on
Win32 using native Win32 threads.
Regards,
Jean-Francois Nadeau
PS: I want to write a nice Ruby success story, i.e. the benefits of Ruby in
the Lektora project.
> -----Original Message-----
> From: William Morgan [mailto:wmorgan@masanjin.net] On Behalf Of William
> Morgan
> Sent: Saturday, February 05, 2005 9:05 AM
> To: ruby-core@ruby-lang.org
> Subject: windows socket connection freeze
>
> Dear experts,
>
> Was the issue described in [ruby-core:3154] ever resolved? I'm
> experiencing the same behavior with Ruby 1.8.2 2004-12-25
> [i386-mswin32]: when I open a TCP socket to a bogus IP address, *all*
> threads freeze until the TCP timeout is reached. This doesn't happen on
> Linux.
>
> Sample code:
>
> require 'socket'
>
> t = Thread.new do
> while true
> puts "in thread"
> sleep 1
> end
> end
>
> sleep 2
>
> puts "connecting..."
> h = TCPSocket.new('192.168.0.80', 80) # bogus ip
> puts "connected!"
>
> t.join
>
> Thanks,
>
> --
> William <wmorgan-ruby-core@masanjin.net>