GC_stack_free_lists  432 gc/solaris_threads.c struct stack_head *GC_stack_free_lists[N_FREE_LISTS] = { 0 };
GC_stack_free_lists  452 gc/solaris_threads.c     if ((result = GC_stack_free_lists[index]) == 0
GC_stack_free_lists  453 gc/solaris_threads.c         && (result = GC_stack_free_lists[index+1]) != 0) {
GC_stack_free_lists  458 gc/solaris_threads.c         base =  GC_stack_free_lists[index]->base;
GC_stack_free_lists  459 gc/solaris_threads.c         GC_stack_free_lists[index] = GC_stack_free_lists[index]->next;
GC_stack_free_lists  517 gc/solaris_threads.c     head->next = GC_stack_free_lists[index];
GC_stack_free_lists  519 gc/solaris_threads.c     GC_stack_free_lists[index] = head;
GC_stack_free_lists  541 gc/solaris_threads.c          for (s = GC_stack_free_lists[i]; s != 0; s = s->next) {