Searched defs:active_gc_threads (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpcTasks.cpp157 uint active_gc_threads = heap->gc_task_manager()->active_workers(); local
159 ParallelTaskTerminator terminator(active_gc_threads, qset);
166 for (uint j=0; j<active_gc_threads; j++) {
H A DpsParallelCompact.cpp2396 uint active_gc_threads = heap->gc_task_manager()->active_workers(); local
2398 ParallelTaskTerminator terminator(active_gc_threads, qset);
2421 if (active_gc_threads > 1) {
2422 for (uint j = 0; j < active_gc_threads; j++) {
2735 uint active_gc_threads = heap->gc_task_manager()->active_workers(); local
2737 ParallelTaskTerminator terminator(active_gc_threads, qset);
2740 enqueue_region_draining_tasks(q, active_gc_threads);
2741 enqueue_dense_prefix_tasks(q, active_gc_threads);
2742 enqueue_region_stealing_tasks(q, &terminator, active_gc_threads);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1GCPhaseTimes.cpp174 void G1GCPhaseTimes::note_gc_start(uint active_gc_threads) { argument
175 assert(active_gc_threads > 0, "The number of threads must be > 0");
176 assert(active_gc_threads <= _max_gc_threads, "The number of active threads must be <= the max nubmer of threads");
177 _active_gc_threads = active_gc_threads;

Completed in 43 milliseconds