increase time thread's stack size

On 64-bit FreeBSD 10.1, 4k is too small.
This commit is contained in:
Matthew Flatt 2015-03-09 13:33:19 -06:00
parent 9c014b61e6
commit 59777ca17a

View File

@ -11047,7 +11047,7 @@ static void start_green_thread_timer(intptr_t usec)
itimerdata->jit_stack_boundary_ptr = &scheme_jit_stack_boundary;
pthread_mutex_init(&itimerdata->mutex, NULL);
pthread_cond_init(&itimerdata->cond, NULL);
tmp = mz_proc_thread_create_w_stacksize(green_thread_timer, itimerdata, 4096);
tmp = mz_proc_thread_create_w_stacksize(green_thread_timer, itimerdata, 16384);
itimerdata->thread = tmp;
itimerdata->itimer = 1;
}