[#11383] Re: $2000 USD Reward for help fixing Segmentation Fault in GC — Brent Roman <brent@...>
Daz,
[#11396] Re: $2000 USD Reward for help fixing Segmentation Fault in GC — Brent Roman <brent@...>
Sylvain,
[#11401] Proc.== — David Flanagan <david@...>
Can anyone construct two proc objects p1 and p2, without using clone or
Hi,
Okay, anything other than the degenerate case of a proc with no body?
On Jun 4, 2007, at 22:57, David Flanagan wrote:
[#11409] Method introspection ? — "Jonas Pfenniger" <zimbatm@...>
Hello,
[#11418] currying in Ruby — David Flanagan <david@...>
I've written a little argument currying module for Procs and Methods. I
[#11431] Are there a better set of unit tests for Array? — "John Lam (CLR)" <jflam@...>
It seems like the unit tests that we have in Ruby.net were:
[#11439] comments needed for Random class — "NAKAMURA, Hiroshi" <nakahiro@...>
-----BEGIN PGP SIGNED MESSAGE-----
On 6/12/07, NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> wrote:
[#11450] Re: new method dispatch rule (matz' proposal) — David Flanagan <david@...>
This is a late response to the very long thread that started back in
On 6/13/07, David Flanagan <david@davidflanagan.com> wrote:
On 6/13/07, David Flanagan <david@davidflanagan.com> wrote:
[#11457] Inclusion of bug #9376 in 1.8.6 branch — Sylvain Joyeux <sylvain.joyeux@...4x.org>
Would it be possible to include the fix for bug #9376 in 1.8.6 ? It is not
[#11462] What should this code do? — "John Lam (CLR)" <jflam@...>
Thinking about control flow these days ...
[#11472] Strange Array#transpose behavior for custom to_ary method — Daniel Berger <djberg96@...>
Ruby 1.8.6 p36
[#11481] Ancestors for Singleton classes — "Robert Dober" <robert.dober@...>
I am taking this away from ruby-talk as it contains patches.
[#11482] Ruby Changes Its Mind About Non-Word Characters — James Edward Gray II <james@...>
Does this look like a bug to anyone else?
James Edward Gray II wrote:
Hi,
On Jun 16, 2007, at 2:41 PM, Vincent Isambart wrote:
> > It is because the and サ characters are not in ISO-8859-1.
[#11505] Question about the patchlevel release cycle — Sylvain Joyeux <sylvain.joyeux@...4x.org>
1.8.6 thread support was broken in bad ways. It stayed for three months
> could you refer to bug #s?
Hi,
Hi, I'm the 1.8.6 branch manager.
On 6/20/07, Urabe Shyouhei <shyouhei@ruby-lang.org> wrote:
[#11533] method_missing for Enumerator — TRANS <transfire@...>
What do others think of this for 1.9+?
[#11543] Re: Apple reportedly to ship with ruby 1.8.6-p36 unless informed what to patch — James Edward Gray II <james@...>
On Jun 27, 2007, at 4:47 PM, Bill Kelly wrote:
Hi,
On Jun 30, 2007, at 4:51 AM, Urabe Shyouhei wrote:
Hi,
Hi,
Hi,
I haven't seen it mentioned explicitly in this thread so far, but I
[#11545] Proc initialize method not called under certain circumstances — "John Lam (CLR)" <jflam@...>
class Proc
On Fri, 29 Jun 2007 05:43:14 +0900, "John Lam (CLR)" <jflam@microsoft.com> wrote:
So, is it correct to assume that for language constructs that create built-in types like Range, Array, Hash etc that user-defined initialize methods are never called?
Re: $2000 USD Reward for help fixing Segmentation Fault in GC
Brent Roman wrote: > Daz, > > In our labs, we have tried controlling the instrument with an x86 > laptop running a reasonably recent 2.6 Linux kernel. > All our "custom hardware" interfaces to the host via three RS-232 serial > ports, so replacing the ARM with an X86 box is quite straightforward > in the lab (where we have the required power and space for it). > But, alas, the same Segfault occured in this configuration as well. > > So, I believe the problem is unlikely to be particular to the ARM > gcc compiler or its optimization settings. > However, I did try reducing the optimization from > -O2 to -Os. -Os is the optimization level used to compile > ARM Linux kernels. Needless to say, this had no effect. > > What optimization level would you suggest? > -O1 or -O0 ?! > > Better yet: > Are there specific optimization flag(s) that have proven troublesome > for ruby 1.6.8? > > Note that we're using GCC 3.4.5 for the embedded ARM > (with soft-floats) > > and GCC 3.3.5 or GCC 3.4.4 for our x86 laptops > > - brent > >> Brent Roman wrote: >>> Help! >> Maybe you've tried already but, if you can afford the reduced >> performance, compiling ruby with less optimisation might help >> until a more suitable solution can be found? >> >> daz >> >> >> > After posting, I found a response from Paul to your earlier thread ... http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/11224 I'd always try no optimization to start with. (It's Od for my compiler.) I was just jumping in with something fairly easy to try but none of my experiences were with such complex tasks as yours. My most annoying experience was with adding fprintf statements to home in on a particulary elusive bug. After pruning, I was left with three fprintf's and the bug has never surfaced again. I learned nothing about the bug except that, if I removed those redundant statements, it would crash. As has been said, I read on here that many GC bugs have been tackled and traps built into the core for others, since 1.6.8, but I can't recommend anything more highly than biting the bullet on an upgrade. The performance improvement would be a bonus, assuming the bug went. I know the problems with change management on mainframes and I'd live by the "If it ain't broke, don't fix it" rule ... until some authority figure appeared and pointed out to me that it *is* broke. As I have no authority - I'll exit this thread and wish you well. daz