fix thread-local fuel counters in JIT

svn: r16835
This commit is contained in:
Matthew Flatt 2009-11-17 18:33:27 +00:00
parent fe939fa2bd
commit a91ff1c603

View File

@ -10241,6 +10241,8 @@ void scheme_jit_fill_threadlocal_table() {
# endif
thread_local_pointers[tl_fixup_runstack_base] = (&fixup_runstack_base);
thread_local_pointers[tl_fixup_already_in_place] = (&fixup_already_in_place);
thread_local_pointers[tl_scheme_fuel_counter] = (&scheme_fuel_counter);
thread_local_pointers[tl_scheme_jit_stack_boundary] = (&scheme_jit_stack_boundary);
#endif
}