comparison src/share/vm/memory/sharedHeap.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 870aedf4ba4f
children d166675568f6
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
90 // to a value > 1 before a task that you would like executed in parallel 90 // to a value > 1 before a task that you would like executed in parallel
91 // and then to set it to 0 after that task has completed. A value of 91 // and then to set it to 0 after that task has completed. A value of
92 // 0 is a "special" value in set_n_threads() which translates to 92 // 0 is a "special" value in set_n_threads() which translates to
93 // setting _n_threads to 1. 93 // setting _n_threads to 1.
94 // 94 //
95 // Some code uses _n_terminiation to decide if work should be done in 95 // Some code uses _n_termination to decide if work should be done in
96 // parallel. The notorious possibly_parallel_oops_do() in threads.cpp 96 // parallel. The notorious possibly_parallel_oops_do() in threads.cpp
97 // is an example of such code. Look for variable "is_par" for other 97 // is an example of such code. Look for variable "is_par" for other
98 // examples. 98 // examples.
99 // 99 //
100 // The active_workers is not reset to 0 after a parallel phase. It's 100 // The active_workers is not reset to 0 after a parallel phase. It's