comparison src/share/vm/gc_implementation/parallelScavenge/gcTaskManager.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 b9a9ed0f8eeb
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
301 // number of GC threads (ParallelGCThreads). The job might be divided 301 // number of GC threads (ParallelGCThreads). The job might be divided
302 // into a number of tasks greater than the number of GC threads for 302 // into a number of tasks greater than the number of GC threads for
303 // load balancing (i.e., over partitioning). The last task to be 303 // load balancing (i.e., over partitioning). The last task to be
304 // executed by a GC thread in a job is a work stealing task. A 304 // executed by a GC thread in a job is a work stealing task. A
305 // GC thread that gets a work stealing task continues to execute 305 // GC thread that gets a work stealing task continues to execute
306 // that task until the job is done. In the static number of GC theads 306 // that task until the job is done. In the static number of GC threads
307 // case, tasks are added to a queue (FIFO). The work stealing tasks are 307 // case, tasks are added to a queue (FIFO). The work stealing tasks are
308 // the last to be added. Once the tasks are added, the GC threads grab 308 // the last to be added. Once the tasks are added, the GC threads grab
309 // a task and go. A single thread can do all the non-work stealing tasks 309 // a task and go. A single thread can do all the non-work stealing tasks
310 // and then execute a work stealing and wait for all the other GC threads 310 // and then execute a work stealing and wait for all the other GC threads
311 // to execute their work stealing task. 311 // to execute their work stealing task.