comparison src/share/vm/runtime/thread.hpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents 469216acdb28
children 2c95095271e9
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
1229 // The linked list of vframe arrays are sorted on sp. This means when we 1229 // The linked list of vframe arrays are sorted on sp. This means when we
1230 // unpack the head must contain the vframe array to unpack. 1230 // unpack the head must contain the vframe array to unpack.
1231 void set_vframe_array_head(vframeArray* value) { _vframe_array_head = value; } 1231 void set_vframe_array_head(vframeArray* value) { _vframe_array_head = value; }
1232 vframeArray* vframe_array_head() const { return _vframe_array_head; } 1232 vframeArray* vframe_array_head() const { return _vframe_array_head; }
1233 1233
1234 // Side structure for defering update of java frame locals until deopt occurs 1234 // Side structure for deferring update of java frame locals until deopt occurs
1235 GrowableArray<jvmtiDeferredLocalVariableSet*>* deferred_locals() const { return _deferred_locals_updates; } 1235 GrowableArray<jvmtiDeferredLocalVariableSet*>* deferred_locals() const { return _deferred_locals_updates; }
1236 void set_deferred_locals(GrowableArray<jvmtiDeferredLocalVariableSet *>* vf) { _deferred_locals_updates = vf; } 1236 void set_deferred_locals(GrowableArray<jvmtiDeferredLocalVariableSet *>* vf) { _deferred_locals_updates = vf; }
1237 1237
1238 // These only really exist to make debugging deopt problems simpler 1238 // These only really exist to make debugging deopt problems simpler
1239 1239