comparison src/share/vm/gc_implementation/parallelScavenge/pcTasks.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
43 // 43 //
44 // ThreadRootsMarkingTask's are created for each Java thread. When 44 // ThreadRootsMarkingTask's are created for each Java thread. When
45 // the do_it() method of a ThreadRootsMarkingTask is executed, it 45 // the do_it() method of a ThreadRootsMarkingTask is executed, it
46 // starts marking from the thread's roots. 46 // starts marking from the thread's roots.
47 // 47 //
48 // The enqueuing of the MarkFromRootsTask and ThreadRootsMarkingTask 48 // The enqueueing of the MarkFromRootsTask and ThreadRootsMarkingTask
49 // do little more than create the task and put it on a queue. The 49 // do little more than create the task and put it on a queue. The
50 // queue is a GCTaskQueue and threads steal tasks from this GCTaskQueue. 50 // queue is a GCTaskQueue and threads steal tasks from this GCTaskQueue.
51 // 51 //
52 // In addition to the MarkFromRootsTask and ThreadRootsMarkingTask 52 // In addition to the MarkFromRootsTask and ThreadRootsMarkingTask
53 // tasks there are StealMarkingTask tasks. The StealMarkingTask's 53 // tasks there are StealMarkingTask tasks. The StealMarkingTask's