[#144] Another implementation of Bignum — "Dmitry Antipov" <dmitry.antipov@...>
Hello Ruby hackers,
15 messages
2002/06/06
[#151] Re: Another implementation of Bignum [tarball attached]
— "Dmitry Antipov" <dmitry.antipov@...>
2002/06/07
Hello again,
[#152] Re: Another implementation of Bignum [tarball attached]
— matz@... (Yukihiro Matsumoto)
2002/06/07
Hi,
[#174] Improving Ruby's garbage collector for interactive apps — Matthew Bloch <mattbee@...>
re: this problem I had a few weeks back:
8 messages
2002/06/19
[#177] Re: Improving Ruby's garbage collector for interactive apps
— matz@... (Yukihiro Matsumoto)
2002/06/20
Hi,
[#178] Re: Improving Ruby's garbage collector for interactive apps
— Matthew Bloch <mattbee@...>
2002/06/21
On Thursday 20 June 2002 18:54, you wrote:
[#186] Steps to get multiple interpreters per process... — Sean Chittenden <sean@...>
Can someone chart out what would need to happen to get multiple ruby
10 messages
2002/06/24
[#187] Re: Steps to get multiple interpreters per process...
— matz@... (Yukihiro Matsumoto)
2002/06/25
Hi,
[#188] Re: Steps to get multiple interpreters per process...
— Sean Chittenden <sean@...>
2002/06/25
> |Can someone chart out what would need to happen to get multiple
[#191] Re: Steps to get multiple interpreters per process...
— Chris Ross <chris@...>
2002/06/25
Re: possible bug: stack dump with <<-String, #{...} and large loops
From:
nobu.nokada@...
Date:
2002-06-05 07:44:51 UTC
List:
ruby-core #139
Hi,
At Wed, 5 Jun 2002 15:45:30 +0900,
ts wrote:
> t> and with this ?
>
> and the same for FLIP3 :-(
Making flip variables static causes a problem with threads.
$ cat t.rb
#! /usr/bin/ruby
def flip2(n)
Thread.pass
sub = proc {|x| "#{x if (x==1)..(x==3)}"}
proc {|x| "#{x if (x==1)..(x==2)}"}.call(1) if n == 1
[sub.call(0), sub.call(1), sub.call(2), sub.call(3), sub.call(4)]
end
t1 = Thread.new {flip2(0)}
t2 = Thread.new {flip2(1)}
p t1.value
p t2.value
$ ./i686-linux/miniruby t.rb
["", "1", "2", "3", ""]
["0", "1", "2", "3", ""]
--
Nobu Nakada