Cygwin: threads: lower thread size from pool to 256 Megs

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2020-04-07 13:43:17 +02:00
parent aa4d960306
commit e8ae404440
1 changed files with 1 additions and 1 deletions

View File

@ -502,7 +502,7 @@ pthread_wrapper (PVOID arg)
/* We provide the stacks always in 1 Megabyte slots */
#define THREAD_STACK_SLOT 0x100000L /* 1 Meg */
/* Maximum stack size returned from the pool. */
#define THREAD_STACK_MAX 0x20000000L /* 512 Megs */
#define THREAD_STACK_MAX 0x10000000L /* 256 Megs */
class thread_allocator
{