X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fthread.c;h=6771f81a01897b9a513b5985d32b27adc01b20f5;hb=c1c2f11c297774cd7f0f48baeaa7631fec155405;hp=a8ca088767e734bab83cbc563745747e6b2bb62f;hpb=6bce87e4926f16d6dc70a3163a8bbde4303ea61d;p=sbcl.git diff --git a/src/runtime/thread.c b/src/runtime/thread.c index a8ca088..6771f81 100644 --- a/src/runtime/thread.c +++ b/src/runtime/thread.c @@ -279,7 +279,7 @@ new_thread_trampoline(struct thread *th) lock_ret = pthread_mutex_lock(&all_threads_lock); gc_assert(lock_ret == 0); - gc_alloc_update_page_tables(0, &th->alloc_region); + gc_alloc_update_page_tables(BOXED_PAGE_FLAG, &th->alloc_region); unlink_thread(th); pthread_mutex_unlock(&all_threads_lock); gc_assert(lock_ret == 0);