Re: [pypy-dev] Increase the default stack limit

2015-07-31 Thread Armin Rigo
Hi Fijal, On 17 July 2015 at 10:59, Maciej Fijalkowski wrote: > The default stack limit is (conservatively) set at 700k or so. Can we > push it to ~3M by default? (this is still far below 8M or so which is > the default on linux) Sadly, on Windows (I think it is XP, at least cl.exe is version 15

Re: [pypy-dev] Increase the default stack limit

2015-07-23 Thread Dima Tisnek
>> Can the stack limit not be read from ulimit/getrlimit? Or from failure >> to push stack? > > failure is segfault good point, I doubt stack probe is worth the overhead (settings/resetting signals and/or segv handler that allows probe only) how about stack limit based on getrlimit though? __

Re: [pypy-dev] Increase the default stack limit

2015-07-23 Thread Maciej Fijalkowski
On Thu, Jul 23, 2015 at 11:39 AM, Dima Tisnek wrote: > Pardon me if I don't know what I'm talking about: > > Can the stack limit not be read from ulimit/getrlimit? Or from failure > to push stack? failure is segfault > That used to work for PHP, at least in the past. > It also gives users the fl

Re: [pypy-dev] Increase the default stack limit

2015-07-23 Thread Dima Tisnek
Pardon me if I don't know what I'm talking about: Can the stack limit not be read from ulimit/getrlimit? Or from failure to push stack? That used to work for PHP, at least in the past. It also gives users the flexibility between highly recursive computation (very high limit) and insane multithread

Re: [pypy-dev] Increase the default stack limit

2015-07-19 Thread Phyo Arkar
I am sure it is fine for most modern linux distros . On Sun, Jul 19, 2015 at 11:08 AM, Maciej Fijalkowski wrote: > should improve the default limit by +-4x > > On Sat, Jul 18, 2015 at 11:20 PM, Phyo Arkar > wrote: > > > > On Fri, Jul 17, 2015 at 3:29 PM, Maciej Fijalkowski > > wrote: > >> > >>

Re: [pypy-dev] Increase the default stack limit

2015-07-18 Thread Maciej Fijalkowski
should improve the default limit by +-4x On Sat, Jul 18, 2015 at 11:20 PM, Phyo Arkar wrote: > > On Fri, Jul 17, 2015 at 3:29 PM, Maciej Fijalkowski > wrote: >> >> stack limit > > > That will help alot with recursions? ___ pypy-dev mailing list pypy-de

Re: [pypy-dev] Increase the default stack limit

2015-07-18 Thread Phyo Arkar
On Fri, Jul 17, 2015 at 3:29 PM, Maciej Fijalkowski wrote: > stack limit That will help alot with recursions? ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mailman/listinfo/pypy-dev

[pypy-dev] Increase the default stack limit

2015-07-17 Thread Maciej Fijalkowski
Hi The default stack limit is (conservatively) set at 700k or so. Can we push it to ~3M by default? (this is still far below 8M or so which is the default on linux) ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mailman/listinfo/py