Re: [pypy-dev] PyPy 2.2.1 segfault

2014-02-08 Thread Armin Rigo
Hi Vasily, On 8 February 2014 07:13, Vasily Evseenko wrote: > I've attached program that segfaults pypy. No external modules used and > its works under CPython. Thanks! Fixed in 3a0ef8f31265. The problem was caused by a list of floats that contains "nan" values (the Z variable in your code): a

[pypy-dev] crash with high number of threads in libpypy-c

2014-02-08 Thread Roberto De Ioris
Hi everyone, while helping a customer porting its app from uWSGI+CPython to uWSGI+PyPy we got this error when trying to allocate a "high" (200, 20 for 10 processes) number of threads: RPython traceback: File "rpython_memory_gctransform_shadowstack.c", line 425, in switch_shadow_stacks File "r

Re: [pypy-dev] crash with high number of threads in libpypy-c

2014-02-08 Thread Armin Rigo
Hi Roberto, On 8 February 2014 14:14, Roberto De Ioris wrote: > > RPython traceback: > File "rpython_memory_gctransform_shadowstack.c", line 425, in > switch_shadow_stacks > File "rpython_rtyper_lltypesystem_rdict.c", line 8053, in > ll_dict_getitem__dicttablePtr_Signed_5 Thanks for the rep