Feature #4614 ยป 0001-thread_pthread.c-lower-RUBY_STACK_MIN_LIMIT-to-64K.patch
| thread_pthread.c | ||
|---|---|---|
|
}
|
||
|
enum {
|
||
|
#ifdef __SYMBIAN32__
|
||
|
RUBY_STACK_MIN_LIMIT = 64 * 1024, /* 64KB: Let's be slightly more frugal on mobile platform */
|
||
|
#else
|
||
|
RUBY_STACK_MIN_LIMIT = 512 * 1024, /* 512KB */
|
||
|
#endif
|
||
|
RUBY_STACK_MIN_LIMIT = 64 * 1024, /* 64KB, 48K+ seems safe, though */
|
||
|
RUBY_STACK_SPACE_LIMIT = 1024 * 1024
|
||
|
};
|
||