diff options
author | a_tobler <a_tobler> | 2007-01-29 21:10:56 +0000 |
---|---|---|
committer | Ivan Maidanski <ivmai@mail.ru> | 2011-07-26 21:06:39 +0400 |
commit | 57e4914c3e8a5e7708e38de8e055043c5ce710ac (patch) | |
tree | e57923f70cd89024e255feaae3b261da9ef43b13 /darwin_stop_world.c | |
parent | dad14230b898acaebd74e1d56361e9948672e1ce (diff) | |
download | bdwgc-57e4914c3e8a5e7708e38de8e055043c5ce710ac.tar.gz |
2007-01-29 Andreas Tobler <a.tobler@schweiz.org>
* darwin_stop_world.c: Clean up and reformat code.
Diffstat (limited to 'darwin_stop_world.c')
-rw-r--r-- | darwin_stop_world.c | 442 |
1 files changed, 226 insertions, 216 deletions
diff --git a/darwin_stop_world.c b/darwin_stop_world.c index 3fbf6bba..a2f09264 100644 --- a/darwin_stop_world.c +++ b/darwin_stop_world.c @@ -10,7 +10,7 @@ be allocated, is called the red zone. This area as shown in Figure 3-2 may be used for any purpose as long as a new stack frame does not need to be added to the stack." - + Page 50: "If a leaf procedure's red zone usage would exceed 224 bytes, then it must set up a stack frame just like routines that call other routines." */ @@ -22,7 +22,6 @@ # endif #endif - typedef struct StackFrame { unsigned long savedSP; unsigned long savedCR; @@ -31,9 +30,10 @@ typedef struct StackFrame { unsigned long savedRTOC; } StackFrame; -unsigned long FindTopOfStack(unsigned long stack_start) { +unsigned long FindTopOfStack(unsigned long stack_start) +{ StackFrame *frame; - + if (stack_start == 0) { # ifdef POWERPC # if CPP_WORDSZ == 32 @@ -50,27 +50,31 @@ unsigned long FindTopOfStack(unsigned long stack_start) { /* GC_printf("FindTopOfStack start at sp = %p\n", frame); */ # endif do { - if (frame->savedSP == 0) break; - /* if there are no more stack frames, stop */ + if (frame->savedSP == 0) + break; + /* if there are no more stack frames, stop */ frame = (StackFrame*)frame->savedSP; /* we do these next two checks after going to the next frame because the LR for the first stack frame in the loop is not set up on purpose, so we shouldn't check it. */ - if ((frame->savedLR & ~3) == 0) break; /* if the next LR is bogus, stop */ - if ((~(frame->savedLR) & ~3) == 0) break; /* ditto */ - } while (1); + if ((frame->savedLR & ~3) == 0) + break; /* if the next LR is bogus, stop */ + if ((~(frame->savedLR) & ~3) == 0) + break; /* ditto */ + } while (1); # ifdef DEBUG_THREADS /* GC_printf("FindTopOfStack finish at sp = %p\n", frame); */ # endif return (unsigned long)frame; -} +} #ifdef DARWIN_DONT_PARSE_STACK -void GC_push_all_stacks() { +void GC_push_all_stacks() +{ int i; kern_return_t r; GC_thread p; @@ -80,43 +84,40 @@ void GC_push_all_stacks() { /* MACHINE_THREAD_STATE_COUNT doesn't seem to be defined everywhere. */ /* Hence we use our own version. */ mach_msg_type_number_t thread_state_count = GC_MACH_THREAD_STATE_COUNT; - + me = pthread_self(); - if (!GC_thr_initialized) GC_thr_init(); - - for(i=0;i<THREAD_TABLE_SZ;i++) { - for(p=GC_threads[i];p!=0;p=p->next) { - if(p -> flags & FINISHED) continue; - if(pthread_equal(p->id,me)) { + if (!GC_thr_initialized) + GC_thr_init(); + + for(i = 0; i < THREAD_TABLE_SZ; i++) { + for(p = GC_threads[i]; p != 0; p = p->next) { + if(p->flags & FINISHED) continue; + if(pthread_equal(p->id, me)) { lo = GC_approx_sp(); } else { /* Get the thread state (registers, etc) */ - r = thread_get_state( - p->stop_info.mach_thread, - GC_MACH_THREAD_STATE, - (natural_t*)&state, - &thread_state_count); + r = thread_get_state(p->stop_info.mach_thread, GC_MACH_THREAD_STATE, + (natural_t*)&state, &thread_state_count); # ifdef DEBUG_THREADS - GC_printf("thread_get_state return value = %d\n", r); + GC_printf("thread_get_state return value = %d\n", r); # endif - if(r != KERN_SUCCESS) ABORT("thread_get_state failed"); - + if(r != KERN_SUCCESS) + ABORT("thread_get_state failed"); + # if defined(I386) lo = (void*)state . THREAD_FLD (esp); - - GC_push_one(state . THREAD_FLD (eax)); - GC_push_one(state . THREAD_FLD (ebx)); - GC_push_one(state . THREAD_FLD (ecx)); - GC_push_one(state . THREAD_FLD (edx)); - GC_push_one(state . THREAD_FLD (edi)); - GC_push_one(state . THREAD_FLD (esi)); + GC_push_one(state . THREAD_FLD (eax)); + GC_push_one(state . THREAD_FLD (ebx)); + GC_push_one(state . THREAD_FLD (ecx)); + GC_push_one(state . THREAD_FLD (edx)); + GC_push_one(state . THREAD_FLD (edi)); + GC_push_one(state . THREAD_FLD (esi)); GC_push_one(state . THREAD_FLD (ebp)); # elif defined(X86_64) lo = (void*)state . THREAD_FLD (rsp); - GC_push_one(state . THREAD_FLD (rax)); GC_push_one(state . THREAD_FLD (rbx)); GC_push_one(state . THREAD_FLD (rcx)); @@ -141,37 +142,37 @@ void GC_push_all_stacks() { # elif defined(POWERPC) lo = (void*)(state . THREAD_FLD (r1) - PPC_RED_ZONE_SIZE); - - GC_push_one(state . THREAD_FLD (r0)); - GC_push_one(state . THREAD_FLD (r2)); - GC_push_one(state . THREAD_FLD (r3)); - GC_push_one(state . THREAD_FLD (r4)); - GC_push_one(state . THREAD_FLD (r5)); - GC_push_one(state . THREAD_FLD (r6)); - GC_push_one(state . THREAD_FLD (r7)); - GC_push_one(state . THREAD_FLD (r8)); - GC_push_one(state . THREAD_FLD (r9)); - GC_push_one(state . THREAD_FLD (r10)); - GC_push_one(state . THREAD_FLD (r11)); - GC_push_one(state . THREAD_FLD (r12)); - GC_push_one(state . THREAD_FLD (r13)); - GC_push_one(state . THREAD_FLD (r14)); - GC_push_one(state . THREAD_FLD (r15)); - GC_push_one(state . THREAD_FLD (r16)); - GC_push_one(state . THREAD_FLD (r17)); - GC_push_one(state . THREAD_FLD (r18)); - GC_push_one(state . THREAD_FLD (r19)); - GC_push_one(state . THREAD_FLD (r20)); - GC_push_one(state . THREAD_FLD (r21)); - GC_push_one(state . THREAD_FLD (r22)); - GC_push_one(state . THREAD_FLD (r23)); - GC_push_one(state . THREAD_FLD (r24)); - GC_push_one(state . THREAD_FLD (r25)); - GC_push_one(state . THREAD_FLD (r26)); - GC_push_one(state . THREAD_FLD (r27)); - GC_push_one(state . THREAD_FLD (r28)); - GC_push_one(state . THREAD_FLD (r29)); - GC_push_one(state . THREAD_FLD (r30)); + + GC_push_one(state . THREAD_FLD (r0)); + GC_push_one(state . THREAD_FLD (r2)); + GC_push_one(state . THREAD_FLD (r3)); + GC_push_one(state . THREAD_FLD (r4)); + GC_push_one(state . THREAD_FLD (r5)); + GC_push_one(state . THREAD_FLD (r6)); + GC_push_one(state . THREAD_FLD (r7)); + GC_push_one(state . THREAD_FLD (r8)); + GC_push_one(state . THREAD_FLD (r9)); + GC_push_one(state . THREAD_FLD (r10)); + GC_push_one(state . THREAD_FLD (r11)); + GC_push_one(state . THREAD_FLD (r12)); + GC_push_one(state . THREAD_FLD (r13)); + GC_push_one(state . THREAD_FLD (r14)); + GC_push_one(state . THREAD_FLD (r15)); + GC_push_one(state . THREAD_FLD (r16)); + GC_push_one(state . THREAD_FLD (r17)); + GC_push_one(state . THREAD_FLD (r18)); + GC_push_one(state . THREAD_FLD (r19)); + GC_push_one(state . THREAD_FLD (r20)); + GC_push_one(state . THREAD_FLD (r21)); + GC_push_one(state . THREAD_FLD (r22)); + GC_push_one(state . THREAD_FLD (r23)); + GC_push_one(state . THREAD_FLD (r24)); + GC_push_one(state . THREAD_FLD (r25)); + GC_push_one(state . THREAD_FLD (r26)); + GC_push_one(state . THREAD_FLD (r27)); + GC_push_one(state . THREAD_FLD (r28)); + GC_push_one(state . THREAD_FLD (r29)); + GC_push_one(state . THREAD_FLD (r30)); GC_push_one(state . THREAD_FLD (r31)); # else # error FIXME for non-x86 || ppc architectures @@ -183,115 +184,119 @@ void GC_push_all_stacks() { hi = p->stack_end; # if DEBUG_THREADS GC_printf("Darwin: Stack for thread 0x%lx = [%lx,%lx)\n", - (unsigned long) p -> id, - (unsigned long) lo, - (unsigned long) hi - ); + (unsigned long) p -> id, (unsigned long) lo, + (unsigned long) hi); # endif - GC_push_all_stack(lo,hi); + GC_push_all_stack(lo, hi); } /* for(p=GC_threads[i]...) */ } /* for(i=0;i<THREAD_TABLE_SZ...) */ } #else /* !DARWIN_DONT_PARSE_STACK; Use FindTopOfStack() */ -void GC_push_all_stacks() { - unsigned int i; - task_t my_task; - kern_return_t r; - mach_port_t me; - ptr_t lo, hi; - thread_act_array_t act_list = 0; - mach_msg_type_number_t listcount = 0; - - me = mach_thread_self(); - if (!GC_thr_initialized) GC_thr_init(); - - my_task = current_task(); - r = task_threads(my_task, &act_list, &listcount); - if(r != KERN_SUCCESS) ABORT("task_threads failed"); - for(i = 0; i < listcount; i++) { - thread_act_t thread = act_list[i]; - if (thread == me) { - lo = GC_approx_sp(); - hi = (ptr_t)FindTopOfStack(0); - } else { +void GC_push_all_stacks() +{ + unsigned int i; + task_t my_task; + kern_return_t r; + mach_port_t me; + ptr_t lo, hi; + thread_act_array_t act_list = 0; + mach_msg_type_number_t listcount = 0; + + me = mach_thread_self(); + if (!GC_thr_initialized) + GC_thr_init(); + + my_task = current_task(); + r = task_threads(my_task, &act_list, &listcount); + if(r != KERN_SUCCESS) + ABORT("task_threads failed"); + for(i = 0; i < listcount; i++) { + thread_act_t thread = act_list[i]; + if (thread == me) { + lo = GC_approx_sp(); + hi = (ptr_t)FindTopOfStack(0); + } else { # if defined(POWERPC) - GC_THREAD_STATE_T info; + GC_THREAD_STATE_T info; mach_msg_type_number_t outCount = THREAD_STATE_MAX; - r = thread_get_state(thread, GC_MACH_THREAD_STATE, - (natural_t *)&info, &outCount); - if(r != KERN_SUCCESS) ABORT("task_get_state failed"); + r = thread_get_state(thread, GC_MACH_THREAD_STATE, (natural_t *)&info, + &outCount); + if(r != KERN_SUCCESS) + ABORT("task_get_state failed"); lo = (void*)(info . THREAD_FLD (r1) - PPC_RED_ZONE_SIZE); hi = (ptr_t)FindTopOfStack(info . THREAD_FLD (r1)); - GC_push_one(info . THREAD_FLD (r0)); - GC_push_one(info . THREAD_FLD (r2)); - GC_push_one(info . THREAD_FLD (r3)); - GC_push_one(info . THREAD_FLD (r4)); - GC_push_one(info . THREAD_FLD (r5)); - GC_push_one(info . THREAD_FLD (r6)); - GC_push_one(info . THREAD_FLD (r7)); - GC_push_one(info . THREAD_FLD (r8)); - GC_push_one(info . THREAD_FLD (r9)); - GC_push_one(info . THREAD_FLD (r10)); - GC_push_one(info . THREAD_FLD (r11)); - GC_push_one(info . THREAD_FLD (r12)); - GC_push_one(info . THREAD_FLD (r13)); - GC_push_one(info . THREAD_FLD (r14)); - GC_push_one(info . THREAD_FLD (r15)); - GC_push_one(info . THREAD_FLD (r16)); - GC_push_one(info . THREAD_FLD (r17)); - GC_push_one(info . THREAD_FLD (r18)); - GC_push_one(info . THREAD_FLD (r19)); - GC_push_one(info . THREAD_FLD (r20)); - GC_push_one(info . THREAD_FLD (r21)); - GC_push_one(info . THREAD_FLD (r22)); - GC_push_one(info . THREAD_FLD (r23)); - GC_push_one(info . THREAD_FLD (r24)); - GC_push_one(info . THREAD_FLD (r25)); - GC_push_one(info . THREAD_FLD (r26)); - GC_push_one(info . THREAD_FLD (r27)); - GC_push_one(info . THREAD_FLD (r28)); - GC_push_one(info . THREAD_FLD (r29)); - GC_push_one(info . THREAD_FLD (r30)); + GC_push_one(info . THREAD_FLD (r0)); + GC_push_one(info . THREAD_FLD (r2)); + GC_push_one(info . THREAD_FLD (r3)); + GC_push_one(info . THREAD_FLD (r4)); + GC_push_one(info . THREAD_FLD (r5)); + GC_push_one(info . THREAD_FLD (r6)); + GC_push_one(info . THREAD_FLD (r7)); + GC_push_one(info . THREAD_FLD (r8)); + GC_push_one(info . THREAD_FLD (r9)); + GC_push_one(info . THREAD_FLD (r10)); + GC_push_one(info . THREAD_FLD (r11)); + GC_push_one(info . THREAD_FLD (r12)); + GC_push_one(info . THREAD_FLD (r13)); + GC_push_one(info . THREAD_FLD (r14)); + GC_push_one(info . THREAD_FLD (r15)); + GC_push_one(info . THREAD_FLD (r16)); + GC_push_one(info . THREAD_FLD (r17)); + GC_push_one(info . THREAD_FLD (r18)); + GC_push_one(info . THREAD_FLD (r19)); + GC_push_one(info . THREAD_FLD (r20)); + GC_push_one(info . THREAD_FLD (r21)); + GC_push_one(info . THREAD_FLD (r22)); + GC_push_one(info . THREAD_FLD (r23)); + GC_push_one(info . THREAD_FLD (r24)); + GC_push_one(info . THREAD_FLD (r25)); + GC_push_one(info . THREAD_FLD (r26)); + GC_push_one(info . THREAD_FLD (r27)); + GC_push_one(info . THREAD_FLD (r28)); + GC_push_one(info . THREAD_FLD (r29)); + GC_push_one(info . THREAD_FLD (r30)); GC_push_one(info . THREAD_FLD (r31)); -# elif defined(I386) +# elif defined(I386) /* FIXME: Remove after testing: */ WARN("This is completely untested and likely will not work\n", 0); GC_THREAD_STATE_T info; mach_msg_type_number_t outCount = THREAD_STATE_MAX; - r = thread_get_state(thread, GC_MACH_THREAD_STATE, - (natural_t *)&info, &outCount); - if(r != KERN_SUCCESS) ABORT("task_get_state failed"); + r = thread_get_state(thread, GC_MACH_THREAD_STATE, (natural_t *)&info, + &outCount); + if(r != KERN_SUCCESS) + ABORT("task_get_state failed"); lo = (void*)info . THREAD_FLD (esp); hi = (ptr_t)FindTopOfStack(info . THREAD_FLD (esp)); - GC_push_one(info . THREAD_FLD (eax)); - GC_push_one(info . THREAD_FLD (ebx)); - GC_push_one(info . THREAD_FLD (ecx)); - GC_push_one(info . THREAD_FLD (edx)); - GC_push_one(info . THREAD_FLD (edi)); - GC_push_one(info . THREAD_FLD (esi)); + GC_push_one(info . THREAD_FLD (eax)); + GC_push_one(info . THREAD_FLD (ebx)); + GC_push_one(info . THREAD_FLD (ecx)); + GC_push_one(info . THREAD_FLD (edx)); + GC_push_one(info . THREAD_FLD (edi)); + GC_push_one(info . THREAD_FLD (esi)); /* GC_push_one(info . THREAD_FLD (ebp)); */ /* GC_push_one(info . THREAD_FLD (esp)); */ - GC_push_one(info . THREAD_FLD (ss)); - GC_push_one(info . THREAD_FLD (eip)); - GC_push_one(info . THREAD_FLD (cs)); - GC_push_one(info . THREAD_FLD (ds)); - GC_push_one(info . THREAD_FLD (es)); - GC_push_one(info . THREAD_FLD (fs)); - GC_push_one(info . THREAD_FLD (gs)); - -# elif defined(X86_64) + GC_push_one(info . THREAD_FLD (ss)); + GC_push_one(info . THREAD_FLD (eip)); + GC_push_one(info . THREAD_FLD (cs)); + GC_push_one(info . THREAD_FLD (ds)); + GC_push_one(info . THREAD_FLD (es)); + GC_push_one(info . THREAD_FLD (fs)); + GC_push_one(info . THREAD_FLD (gs)); + +# elif defined(X86_64) GC_THREAD_STATE_T info; mach_msg_type_number_t outCount = THREAD_STATE_MAX; - r = thread_get_state(thread, GC_MACH_THREAD_STATE, - (natural_t *)&info, &outCount); - if(r != KERN_SUCCESS) ABORT("task_get_state failed"); + r = thread_get_state(thread, GC_MACH_THREAD_STATE, (natural_t *)&info, + &outCount); + if(r != KERN_SUCCESS) + ABORT("task_get_state failed"); lo = (void*)info . THREAD_FLD (rsp); hi = (ptr_t)FindTopOfStack(info . THREAD_FLD (rsp)); @@ -318,17 +323,16 @@ void GC_push_all_stacks() { GC_push_one(info . THREAD_FLD (fs)); GC_push_one(info . THREAD_FLD (gs)); -# else -# error FIXME for non-x86 || ppc architectures -# endif +# else +# error FIXME for non-x86 || ppc architectures +# endif } # if DEBUG_THREADS - GC_printf("Darwin: Stack for thread 0x%lx = [%p,%p)\n", - (unsigned long) thread, lo, hi - ); + GC_printf("Darwin: Stack for thread 0x%lx = [%p,%p)\n", + (unsigned long) thread, lo, hi); # endif - GC_push_all_stack(lo, hi); - mach_port_deallocate(my_task, thread); + GC_push_all_stack(lo, hi); + mach_port_deallocate(my_task, thread); } /* for(p=GC_threads[i]...) */ vm_deallocate(my_task, (vm_address_t)act_list, sizeof(thread_t) * listcount); @@ -342,7 +346,8 @@ static int GC_use_mach_handler_thread = 0; static struct GC_mach_thread GC_mach_threads[THREAD_TABLE_SZ]; static int GC_mach_threads_count; -void GC_stop_init() { +void GC_stop_init() +{ int i; for (i = 0; i < THREAD_TABLE_SZ; i++) { @@ -353,8 +358,9 @@ void GC_stop_init() { } /* returns true if there's a thread in act_list that wasn't in old_list */ -int GC_suspend_thread_list(thread_act_array_t act_list, int count, - thread_act_array_t old_list, int old_count) { +int GC_suspend_thread_list(thread_act_array_t act_list, int count, + thread_act_array_t old_list, int old_count) +{ mach_port_t my_thread = mach_thread_self(); int i, j; @@ -362,7 +368,7 @@ int GC_suspend_thread_list(thread_act_array_t act_list, int count, for(i = 0; i < count; i++) { thread_act_t thread = act_list[i]; -# if DEBUG_THREADS +# if DEBUG_THREADS GC_printf("Attempting to suspend thread %p\n", thread); # endif /* find the current thread in the old list */ @@ -380,51 +386,53 @@ int GC_suspend_thread_list(thread_act_array_t act_list, int count, /* default is not suspended */ GC_mach_threads[GC_mach_threads_count].already_suspended = 0; changed = 1; - } + } - if (thread != my_thread && - (!GC_use_mach_handler_thread - || (GC_use_mach_handler_thread - && GC_mach_handler_thread != thread))) { + if (thread != my_thread + && (!GC_use_mach_handler_thread + || (GC_use_mach_handler_thread + && GC_mach_handler_thread != thread))) { struct thread_basic_info info; mach_msg_type_number_t outCount = THREAD_INFO_MAX; kern_return_t kern_result = thread_info(thread, THREAD_BASIC_INFO, (thread_info_t)&info, &outCount); if(kern_result != KERN_SUCCESS) { - /* the thread may have quit since the thread_threads () call + /* the thread may have quit since the thread_threads () call * we mark already_suspended so it's not dealt with anymore later */ - if (!found) { + if (!found) { GC_mach_threads[GC_mach_threads_count].already_suspended = TRUE; - GC_mach_threads_count++; + GC_mach_threads_count++; } continue; } # if DEBUG_THREADS - GC_printf("Thread state for 0x%lx = %d\n", - (unsigned long)thread, info.run_state); + GC_printf("Thread state for 0x%lx = %d\n", (unsigned long)thread, + info.run_state); # endif if (!found) { - GC_mach_threads[GC_mach_threads_count].already_suspended = info.suspend_count; + GC_mach_threads[GC_mach_threads_count].already_suspended + = info.suspend_count; } - if (info.suspend_count) continue; - + if (info.suspend_count) + continue; + # if DEBUG_THREADS GC_printf("Suspending 0x%lx\n", (unsigned long)thread); # endif /* Suspend the thread */ kern_result = thread_suspend(thread); if(kern_result != KERN_SUCCESS) { - /* the thread may have quit since the thread_threads () call + /* the thread may have quit since the thread_threads () call * we mark already_suspended so it's not dealt with anymore later */ - if (!found) { + if (!found) { GC_mach_threads[GC_mach_threads_count].already_suspended = TRUE; - GC_mach_threads_count++; + GC_mach_threads_count++; } continue; } - } + } if (!found) GC_mach_threads_count++; } mach_port_deallocate(current_task(), my_thread); @@ -441,15 +449,15 @@ void GC_stop_world() kern_return_t kern_result; thread_act_array_t act_list, prev_list; mach_msg_type_number_t listcount, prevcount; - + # if DEBUG_THREADS GC_printf("Stopping the world from 0x%lx\n", (unsigned long)mach_thread_self()); # endif /* clear out the mach threads list table */ - GC_stop_init(); - + GC_stop_init(); + /* Make sure all free list construction has stopped before we start. */ /* No new construction can start, since free list construction is */ /* required to acquire and release the GC lock before it starts, */ @@ -467,29 +475,28 @@ void GC_stop_world() thread, recognise it is stopped, but then have a new thread it created before stopping show up later. */ - + changes = 1; prev_list = NULL; prevcount = 0; do { - int result; + int result; kern_result = task_threads(my_task, &act_list, &listcount); - - if(kern_result == KERN_SUCCESS) { - result = GC_suspend_thread_list(act_list, listcount, - prev_list, prevcount); - changes = result; - - if(prev_list != NULL) { - for(i = 0; i < prevcount; i++) - mach_port_deallocate(my_task, prev_list[i]); - - vm_deallocate(my_task, - (vm_address_t)prev_list, - sizeof(thread_t) * prevcount); - } - prev_list = act_list; - prevcount = listcount; + + if(kern_result == KERN_SUCCESS) { + result = GC_suspend_thread_list(act_list, listcount, prev_list, + prevcount); + changes = result; + + if(prev_list != NULL) { + for(i = 0; i < prevcount; i++) + mach_port_deallocate(my_task, prev_list[i]); + + vm_deallocate(my_task, (vm_address_t)prev_list, + sizeof(thread_t) * prevcount); + } + prev_list = act_list; + prevcount = listcount; } } while (changes); GC_ASSERT(prev_list != 0); @@ -497,23 +504,22 @@ void GC_stop_world() mach_port_deallocate(my_task, prev_list[i]); vm_deallocate(my_task, (vm_address_t)act_list, - sizeof(thread_t) * listcount); - - + sizeof(thread_t) * listcount); + # ifdef MPROTECT_VDB if(GC_incremental) { - extern void GC_mprotect_stop(); - GC_mprotect_stop(); + extern void GC_mprotect_stop(); + GC_mprotect_stop(); } # endif - + # ifdef PARALLEL_MARK GC_release_mark_lock(); # endif # if DEBUG_THREADS GC_printf("World stopped from 0x%lx\n", (unsigned long)my_thread); # endif - + mach_port_deallocate(my_task, my_thread); } @@ -530,24 +536,25 @@ void GC_start_world() mach_msg_type_number_t listcount; struct thread_basic_info info; mach_msg_type_number_t outCount = THREAD_INFO_MAX; - + # if DEBUG_THREADS GC_printf("World starting\n"); # endif # ifdef MPROTECT_VDB if(GC_incremental) { - extern void GC_mprotect_resume(); - GC_mprotect_resume(); + extern void GC_mprotect_resume(); + GC_mprotect_resume(); } # endif kern_result = task_threads(my_task, &act_list, &listcount); for(i = 0; i < listcount; i++) { thread_act_t thread = act_list[i]; - if (thread != my_thread && - (!GC_use_mach_handler_thread || - (GC_use_mach_handler_thread && GC_mach_handler_thread != thread))) { + if (thread != my_thread + && (!GC_use_mach_handler_thread + || (GC_use_mach_handler_thread + && GC_mach_handler_thread != thread))) { for(j = 0; j < GC_mach_threads_count; j++) { if (thread == GC_mach_threads[j].thread) { if (GC_mach_threads[j].already_suspended) { @@ -558,7 +565,8 @@ void GC_start_world() } kern_result = thread_info(thread, THREAD_BASIC_INFO, (thread_info_t)&info, &outCount); - if(kern_result != KERN_SUCCESS) ABORT("thread_info failed"); + if(kern_result != KERN_SUCCESS) + ABORT("thread_info failed"); # if DEBUG_THREADS GC_printf("Thread state for 0x%lx = %d\n", (unsigned long)thread, info.run_state); @@ -566,22 +574,24 @@ void GC_start_world() # endif /* Resume the thread */ kern_result = thread_resume(thread); - if(kern_result != KERN_SUCCESS) ABORT("thread_resume failed"); - } + if(kern_result != KERN_SUCCESS) + ABORT("thread_resume failed"); + } } } mach_port_deallocate(my_task, thread); } vm_deallocate(my_task, (vm_address_t)act_list, sizeof(thread_t) * listcount); - + mach_port_deallocate(my_task, my_thread); # if DEBUG_THREADS - GC_printf("World started\n"); + GC_printf("World started\n"); # endif } -void GC_darwin_register_mach_handler_thread(mach_port_t thread) { +void GC_darwin_register_mach_handler_thread(mach_port_t thread) +{ GC_mach_handler_thread = thread; GC_use_mach_handler_thread = 1; } |