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:
parent
55a4c999b5
commit
0ac5ccd149
@ -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.
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user