comparison src/share/vm/runtime/vm_operations.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 510fbd28919c
children d8041d695d19 0d8d78c0329a
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
152 VM_Operation *next() const { return _next; } 152 VM_Operation *next() const { return _next; }
153 VM_Operation *prev() const { return _prev; } 153 VM_Operation *prev() const { return _prev; }
154 void set_next(VM_Operation *next) { _next = next; } 154 void set_next(VM_Operation *next) { _next = next; }
155 void set_prev(VM_Operation *prev) { _prev = prev; } 155 void set_prev(VM_Operation *prev) { _prev = prev; }
156 156
157 // Configuration. Override these appropriatly in subclasses. 157 // Configuration. Override these appropriately in subclasses.
158 virtual VMOp_Type type() const = 0; 158 virtual VMOp_Type type() const = 0;
159 virtual Mode evaluation_mode() const { return _safepoint; } 159 virtual Mode evaluation_mode() const { return _safepoint; }
160 virtual bool allow_nested_vm_operations() const { return false; } 160 virtual bool allow_nested_vm_operations() const { return false; }
161 virtual bool is_cheap_allocated() const { return false; } 161 virtual bool is_cheap_allocated() const { return false; }
162 virtual void oops_do(OopClosure* f) { /* do nothing */ }; 162 virtual void oops_do(OopClosure* f) { /* do nothing */ };