boehm.cc (_Jv_MarkObj): Mark the next_or_version field.

2006-07-06  Bryce McKinlay <mckinlay@redhat.com>

        * boehm.cc (_Jv_MarkObj): Mark the next_or_version field.

From-SVN: r115227
This commit is contained in:
Bryce McKinlay 2006-07-06 18:25:28 +00:00 committed by Bryce McKinlay
parent 55a4c999b5
commit 0ac5ccd149
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2006-07-06 Bryce McKinlay <mckinlay@redhat.com>
* boehm.cc (_Jv_MarkObj): Mark the next_or_version field.
2006-07-06 Thomas Fitzsimmons <fitzsim@redhat.com>
* configure.ac (ac_configure_args): Add --with-native-libdir.

View File

@ -167,6 +167,11 @@ _Jv_MarkObj (void *addr, void *msp, void *msl, void *env)
MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, c);
p = (GC_PTR) c->aux_info;
MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, c);
// The class chain must be marked for runtime-allocated Classes
// loaded by the bootstrap ClassLoader.
p = (GC_PTR) c->next_or_version;
MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, c);
}
else
{