[#12073] Re: Ruby is much slower on linux when compiled with --enable-pthread? — "M. Edward (Ed) Borasky" <znmeb@...>

-----BEGIN PGP SIGNED MESSAGE-----

9 messages 2007/09/04

[#12085] New array methods cycle, choice, shuffle (plus bug in cycle) — David Flanagan <david@...>

Four new methods have been added to Array the Ruby 1.9 trunk. I've got

81 messages 2007/09/06
[#18036] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — Charles Oliver Nutter <charles.nutter@...> 2008/07/31

Restarting this thread because I missed it the first time around and

[#18037] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — Yukihiro Matsumoto <matz@...> 2008/07/31

Hi,

[#18038] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — "Gregory Brown" <gregory.t.brown@...> 2008/08/01

On Thu, Jul 31, 2008 at 7:50 PM, Yukihiro Matsumoto <matz@ruby-lang.org> wrote:

[#18046] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — Michael Neumann <mneumann@...> 2008/08/01

Gregory Brown wrote:

[#18048] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — Charles Oliver Nutter <charles.nutter@...> 2008/08/01

Michael Neumann wrote:

[#18051] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — "David A. Black" <dblack@...> 2008/08/01

Hi --

[#18053] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — "Wilson Bilkovich" <wilsonb@...> 2008/08/01

On 8/1/08, David A. Black <dblack@rubypal.com> wrote:

[#18074] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — David Flanagan <david@...> 2008/08/01

Wilson Bilkovich wrote:

[#18080] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — Yukihiro Matsumoto <matz@...> 2008/08/02

Hi,

[#18097] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — "Pit Capitain" <pit.capitain@...> 2008/08/03

2008/8/2 Yukihiro Matsumoto <matz@ruby-lang.org>:

[#18040] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — Jim Weirich <jim.weirich@...> 2008/08/01

On Jul 31, 2008, at 7:33 PM, Charles Oliver Nutter wrote:

[#18056] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — Thomas Enebo <Thomas.Enebo@...> 2008/08/01

Jim Weirich wrote:

[#18059] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — Jim Weirich <jim.weirich@...> 2008/08/01

On Aug 1, 2008, at 1:53 PM, Thomas Enebo wrote:

[#12096] Next 1.8.6 on Sept. 22 — Urabe Shyouhei <shyouhei@...>

Hi all.

28 messages 2007/09/09

[#12201] how about actors implemented in ruby-core itself — hemant <gethemant@...>

Hi,

12 messages 2007/09/20

[#12248] arbitrary Unicode characters in identifiers? — David Flanagan <david@...>

12 messages 2007/09/26

[#12284] gc.c -- possible logic error? — Hugh Sasse <hgs@...>

I've been looking at Tom Copeland's memory allocation problem:

36 messages 2007/09/28
[#12329] Re: gc.c -- possible logic error? — Tanaka Akira <akr@...> 2007/10/01

In article <Pine.GSO.4.64.0709281302390.26570@brains.eng.cse.dmu.ac.uk>,

[#12305] Will 1.8.6 remain compiled with VC6? — "Luis Lavena" <luislavena@...>

Hello Core developers.

29 messages 2007/09/30
[#12306] Re: Will 1.8.6 remain compiled with VC6? — "Austin Ziegler" <halostatue@...> 2007/09/30

On 9/30/07, Luis Lavena <luislavena@gmail.com> wrote:

Re: Next 1.8.6 on Sept. 22

From: Sylvain Joyeux <sylvain.joyeux@...4x.org>
Date: 2007-09-09 15:40:51 UTC
List: ruby-core #12099
On Sunday 09 September 2007, Urabe Shyouhei wrote:
> Hi all.
>
> We're planning to release 1.8.6 fixes on Sept. 22(Sat).  If you find
> something that should be included (but not yet) to it, please let us
> know.

The following patches are all patches that can be found in RubyForge and 
are related to acknowledged bugreports also on rubyforge. They may have an 
equivalent in ruby_1_8 though

Best regards,
Sylvain Joyeux

commit cbc21281c133031305a0cbbe9b7f419dbe9d46e7
Author: Sylvain Joyeux <sylvain.joyeux@m4x.org>
Date:   Sat Aug 18 09:28:36 2007 +0200

    [ext/dl] fix free-function for DLPtrData objects: should not 
	     re-allocate

      This is related to
        [#11859] GC will SIGSEGV if the free function of a data object

          The conclusion of the discussion in this bug is that it is not 
	  allowed to allocate objects in free-functions. DL has therefore a bug in 
	  this regard.

        Shyouhei submitted the bug:
        [#11882] recursive invokation of garbage_collect() in dlptr_free()

        Which is fixed by the patch:
        [#13151] fix allocation of objects in dlptr_free

commit 5656b1448110c4e79c25d9071eb46c29f737018e
Author: Sylvain Joyeux <sylvain.joyeux@m4x.org>
Date:   Sat Aug 18 09:24:50 2007 +0200

    [thread] fix exception-safety in Mutex#lock

      This fixes
        [#11901] mutex_lock is not exception-safe

        The problem lies in the fact that mutex_lock has *two* ways to be 
	released: either by mutex_unlock *or* because of an exception.

        wait_list ensures that the thread gets removed from the list in 
	both cases. Note that it is completely harmless in the "normal" case, as 
	remove_one silently ignores if the object is not present in the list.

commit 0c5e8d7a481fab0451075fdd3202993e22abe74e
Author: Sylvain Joyeux <sylvain.joyeux@m4x.org>
Date:   Sat Aug 18 09:22:29 2007 +0200

    [thread] mutex_relock is useless, remove it

      This is related to
        [#11507] SVN 1.8.6 has thread support broken

        spurious "not owner" errors during ConditionVariable#wait in the 
	following context

          mutex.synchronize do
            condition_variable.wait(mutex)
          end

commit efbe5a5fe5bb84852c12bf525892229ab8c46ea3
Author: Sylvain Joyeux <sylvain.joyeux@m4x.org>
Date:   Sat Aug 18 09:06:38 2007 +0200

    [gc] add the rb_bug mentioned in [bug#11859]

In This Thread