[#1579] arity bug? — "Christoph" <chr_news@...>
Hi,
5 messages
2003/10/05
[#1588] FreeBSD problem with processes — Laurent Sansonetti <pinux@...>
Hi all,
1 message
2003/10/07
[#1591] Re: Yielding to a block from a proc? — george.marrows@...
> > Is this right? Is this pathological? Is it a bug? Is there
6 messages
2003/10/08
[#1596] PATCH: Revive NextStep, OpenStep, Rhapsody ports — Eric Sunshine <sunshine@...>
Hello,
7 messages
2003/10/09
[#1597] Re: PATCH: Revive NextStep, OpenStep, Rhapsody ports
— matz@... (Yukihiro Matsumoto)
2003/10/09
Hi,
[#1600] CVS access — Sean Russell <ser@...>
Hiya,
8 messages
2003/10/09
[#1611] set_trace_func/Array#fetch error — "Nathaniel Talbott" <nathaniel@...>
I've reduced the error I reported in ruby-talk:84013 to the following code:
17 messages
2003/10/11
[#1612] Re: set_trace_func/Array#fetch error
— ts <decoux@...>
2003/10/11
>>>>> "N" == Nathaniel Talbott <nathaniel@talbott.ws> writes:
[#1616] Re: set_trace_func/Array#fetch error
— "Nathaniel Talbott" <nathaniel@...>
2003/10/11
ts [mailto:decoux@moulon.inra.fr] wrote:
[#1617] Re: set_trace_func/Array#fetch error
— ts <decoux@...>
2003/10/11
>>>>> "N" == Nathaniel Talbott <nathaniel@talbott.ws> writes:
[#1618] Re: set_trace_func/Array#fetch error
— "Nathaniel Talbott" <nathaniel@...>
2003/10/11
ts [mailto:decoux@moulon.inra.fr] wrote:
[#1634] stringy range bug — "Christoph" <chr_news@...>
Hi,
6 messages
2003/10/15
[#1640] SystemStackError in embedding — Sentinel <sentinel27@...>
Hi, I am just now trying to embed ruby into my apprication
8 messages
2003/10/18
Re: SystemStackError in embedding
From:
Sentinel <sentinel27@...>
Date:
2003-10-19 08:36:56 UTC
List:
ruby-core #1645
> Find the place in the Ruby source code that is generating this error > message. Then make it print the stack start pointer, and the stack end > pointer. Then try again and post the error message here. > > BTW I have a few more questions: do you call ruby_init() from main(), or > from somewhere else? how big is the system stack when you do that? > > do this in the same function as ruby_init() : > > void * volatile hello = &hello; > fprintf(stderr,"hello=%08lx\n",(long)hello); > Hi, I am calling ruby_init from within the constructor of the XMRuby class I put the 'fprintf' line both before the ruby_init and in the same function where the rb_protect, that generates the error, is called: Output at ruby_init: ruby_init. Stack pointer==bfffe5fc Output at Error: Error. Stack pointer==bfffecfc Error in calling timer (6) class = SystemStackError message = stack level too deep backtrace = from /usr/lib/ruby/1.8/delegate.rb:36 Thank you for your help, Peter