[#41918] [Feature #3647] Array#sample(n, replace=false) — Kenta Murata <redmine@...>

Feature #3647: Array#sample(n, replace=false)

11 messages 2010/08/03

[#41966] [Bug #3673] PTY.getpty with IO.pipe doesn't finish on FreeBSD — Yui NARUSE <redmine@...>

Bug #3673: PTY.getpty with IO.pipe doesn't finish on FreeBSD

9 messages 2010/08/10

[#41969] [Feature #3675] String#prepend, String#>> — Sora Harakami <redmine@...>

Feature #3675: String#prepend, String#>>

15 messages 2010/08/10
[#41976] Re: [Feature #3675] String#prepend, String#>> — Yukihiro Matsumoto <matz@...> 2010/08/10

まつもと ゆきひろです

[#41974] Re: [ruby-cvs:36157] Ruby:r28955 (trunk): * complex.c (nucomp_to_[ifr]): don't allow complex with in-exact — Yukihiro Matsumoto <matz@...>

まつもと ゆきひろです

7 messages 2010/08/10

[#42003] WEBrickに関するセキュリティ修正 (CVE-2010-0541) — Hideki Yamane <henrich@...>

12 messages 2010/08/11

[#42090] Math::atan2(0, 0) on ruby 1.9.2 — KUBO Takehiro <kubo@...>

久保です。

18 messages 2010/08/22
[#42092] Re: Math::atan2(0, 0) on ruby 1.9.2 — Kenta Murata <muraken@...> 2010/08/22

=1B$B$`$i$?$G$9!#=1B(B

[#42166] Ruby'sライセンスの、BSDLとのデュアルライセンスへの変更 — "NARUSE, Yui" <naruse@...>

Ruby's ライセンスは BSDL と Ruby's のデュアルライセンスになります。

14 messages 2010/08/31

[ruby-dev:42046] Re: [Bug #3674] dRuby サーバプロセスを停止する時に時間がかかることがある

From: Masatoshi SEKI <m_seki@...>
Date: 2010-08-16 16:10:17 UTC
List: ruby-dev #42046
=1B$B31$H$$$$$^$9!#=1B(B

On 2010/08/17, at 0:22, Yusuke ENDOH wrote:
>=20
>=20
> =1B$B$"$H!"=1B(Bjoin =1B$B$G;`$L$N$rBT$D$J$i=1B(B while list.size > 0 =
=1B$B$OMW$i$J$$=1B(B
> =1B$B$+$b!#=1B(B
>=20
>=20
> diff --git a/lib/drb/drb.rb b/lib/drb/drb.rb
> index cacca14..cfed15c 100644
> --- a/lib/drb/drb.rb
> +++ b/lib/drb/drb.rb
> @@ -1417,11 +1417,11 @@ module DRb
> 	grp =3D ThreadGroup.new
> 	grp.add(Thread.current)
> 	list =3D @grp.list
> -	while list.size > 0
> -	  list.each do |th|
> -	    th.kill if th.alive?
> +	list.each do |th|
> +	  begin
> +	    th.kill.join if th.alive?
> +	  rescue Exception
> 	  end
> -	  list =3D @grp.list
> 	end
>       end
>     end

=1B$B$^$@;`$s$G$J$$%9%l%C%I$,%5%V%9%l%C%I$r5/$3$9$+$b$7$l$J$$$N$G!"=1B(B
list=1B$B$r$J$s$I$b$H$k$h$&$K$7$^$7$?!#=1B(B



In This Thread