Re: [pypy-dev] Stacklet problems

2014-10-05 Thread Armin Rigo
Hi Timothy, On 3 October 2014 05:51, Timothy Baldridge wrote: > I have an interpreter that takes advantage of the rstacklet api. My tests > pass fine when running untranslated in CPython, but after translating via > rpython I get a "Segmentation fault: 11", are there any major differences > betwe

Re: [pypy-dev] Stacklet problems

2014-10-02 Thread Timothy Baldridge
For the reference, my interpreter stacklet code is here: https://github.com/pixie-lang/pixie/blob/master/pixie/vm/stacklet.py And these tests pass just fine: https://github.com/pixie-lang/pixie/blob/master/pixie/vm/test/test_stacklet.py On Thu, Oct 2, 2014 at 9:51 PM, Timothy Baldridge wrote:

[pypy-dev] Stacklet problems

2014-10-02 Thread Timothy Baldridge
I have an interpreter that takes advantage of the rstacklet api. My tests pass fine when running untranslated in CPython, but after translating via rpython I get a "Segmentation fault: 11", are there any major differences between cpython and rpython stacklets? Thanks, Timothy