Removed dead code

This commit is contained in:
Justin Ethier 2017-01-26 23:54:42 -05:00
parent ce0bffb31a
commit 1078c5ff27

4
gc.c
View file

@ -146,10 +146,6 @@ void gc_initialize()
mark_stack = vpbuffer_realloc(mark_stack, &(mark_stack_len));
// Here is as good a place as any to do this...
if (pthread_mutex_init(&(heap_lock), NULL) != 0) {
fprintf(stderr, "Unable to initialize heap_lock mutex\n");
exit(1);
}
if (pthread_mutex_init(&(mutators_lock), NULL) != 0) {
fprintf(stderr, "Unable to initialize mutators_lock mutex\n");
exit(1);