comparison src/share/vm/gc_implementation/concurrentMarkSweep/cmsOopClosures.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 de6a9e811145
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
256 inline void do_yield_check(); 256 inline void do_yield_check();
257 void do_yield_work(); 257 void do_yield_work();
258 bool take_from_overflow_list(); 258 bool take_from_overflow_list();
259 }; 259 };
260 260
261 // Tn this, the parallel avatar of MarkRefsIntoAndScanClosure, the revisit 261 // In this, the parallel avatar of MarkRefsIntoAndScanClosure, the revisit
262 // stack and the bitMap are shared, so access needs to be suitably 262 // stack and the bitMap are shared, so access needs to be suitably
263 // sycnhronized. An OopTaskQueue structure, supporting efficient 263 // synchronized. An OopTaskQueue structure, supporting efficient
264 // workstealing, replaces a CMSMarkStack for storing grey objects. 264 // work stealing, replaces a CMSMarkStack for storing grey objects.
265 class Par_MarkRefsIntoAndScanClosure: public CMSOopsInGenClosure { 265 class Par_MarkRefsIntoAndScanClosure: public CMSOopsInGenClosure {
266 private: 266 private:
267 MemRegion _span; 267 MemRegion _span;
268 CMSBitMap* _bit_map; 268 CMSBitMap* _bit_map;
269 OopTaskQueue* _work_queue; 269 OopTaskQueue* _work_queue;