src/share/vm/gc_implementation/g1/g1RootProcessor.cpp

Mon, 19 Aug 2019 10:11:31 +0200

author
neugens
date
Mon, 19 Aug 2019 10:11:31 +0200
changeset 9861
a248d0be1309
parent 9358
6a4a6c499e89
permissions
-rw-r--r--

8229401: Fix JFR code cache test failures
8223689: Add JFR Thread Sampling Support
8223690: Add JFR BiasedLock Event Support
8223691: Add JFR G1 Region Type Change Event Support
8223692: Add JFR G1 Heap Summary Event Support
Summary: Backport JFR from JDK11, additional fixes
Reviewed-by: neugens, apetushkov
Contributed-by: denghui.ddh@alibaba-inc.com

mgerdin@7659 1 /*
fmatte@9358 2 * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
mgerdin@7659 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mgerdin@7659 4 *
mgerdin@7659 5 * This code is free software; you can redistribute it and/or modify it
mgerdin@7659 6 * under the terms of the GNU General Public License version 2 only, as
mgerdin@7659 7 * published by the Free Software Foundation.
mgerdin@7659 8 *
mgerdin@7659 9 * This code is distributed in the hope that it will be useful, but WITHOUT
mgerdin@7659 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mgerdin@7659 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mgerdin@7659 12 * version 2 for more details (a copy is included in the LICENSE file that
mgerdin@7659 13 * accompanied this code).
mgerdin@7659 14 *
mgerdin@7659 15 * You should have received a copy of the GNU General Public License version
mgerdin@7659 16 * 2 along with this work; if not, write to the Free Software Foundation,
mgerdin@7659 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mgerdin@7659 18 *
mgerdin@7659 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
mgerdin@7659 20 * or visit www.oracle.com if you need additional information or have any
mgerdin@7659 21 * questions.
mgerdin@7659 22 *
mgerdin@7659 23 */
mgerdin@7659 24
mgerdin@7659 25 #include "precompiled.hpp"
mgerdin@7659 26
mgerdin@7659 27 #include "classfile/symbolTable.hpp"
mgerdin@7659 28 #include "classfile/systemDictionary.hpp"
mgerdin@7659 29 #include "code/codeCache.hpp"
mgerdin@7659 30 #include "gc_implementation/g1/bufferingOopClosure.hpp"
mgerdin@7659 31 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
mgerdin@7659 32 #include "gc_implementation/g1/g1CollectorPolicy.hpp"
mgerdin@7659 33 #include "gc_implementation/g1/g1GCPhaseTimes.hpp"
mgerdin@7659 34 #include "gc_implementation/g1/g1RemSet.inline.hpp"
mgerdin@7659 35 #include "gc_implementation/g1/g1RootProcessor.hpp"
mgerdin@7659 36 #include "memory/allocation.inline.hpp"
mgerdin@7659 37 #include "runtime/fprofiler.hpp"
mgerdin@7659 38 #include "runtime/mutex.hpp"
mgerdin@7659 39 #include "services/management.hpp"
mgerdin@7659 40
mgerdin@7659 41 class G1CodeBlobClosure : public CodeBlobClosure {
mgerdin@7659 42 class HeapRegionGatheringOopClosure : public OopClosure {
mgerdin@7659 43 G1CollectedHeap* _g1h;
mgerdin@7659 44 OopClosure* _work;
mgerdin@7659 45 nmethod* _nm;
mgerdin@7659 46
mgerdin@7659 47 template <typename T>
mgerdin@7659 48 void do_oop_work(T* p) {
mgerdin@7659 49 _work->do_oop(p);
mgerdin@7659 50 T oop_or_narrowoop = oopDesc::load_heap_oop(p);
mgerdin@7659 51 if (!oopDesc::is_null(oop_or_narrowoop)) {
mgerdin@7659 52 oop o = oopDesc::decode_heap_oop_not_null(oop_or_narrowoop);
mgerdin@7659 53 HeapRegion* hr = _g1h->heap_region_containing_raw(o);
mgerdin@7659 54 assert(!_g1h->obj_in_cs(o) || hr->rem_set()->strong_code_roots_list_contains(_nm), "if o still in CS then evacuation failed and nm must already be in the remset");
mgerdin@7659 55 hr->add_strong_code_root(_nm);
mgerdin@7659 56 }
mgerdin@7659 57 }
mgerdin@7659 58
mgerdin@7659 59 public:
mgerdin@7659 60 HeapRegionGatheringOopClosure(OopClosure* oc) : _g1h(G1CollectedHeap::heap()), _work(oc), _nm(NULL) {}
mgerdin@7659 61
mgerdin@7659 62 void do_oop(oop* o) {
mgerdin@7659 63 do_oop_work(o);
mgerdin@7659 64 }
mgerdin@7659 65
mgerdin@7659 66 void do_oop(narrowOop* o) {
mgerdin@7659 67 do_oop_work(o);
mgerdin@7659 68 }
mgerdin@7659 69
mgerdin@7659 70 void set_nm(nmethod* nm) {
mgerdin@7659 71 _nm = nm;
mgerdin@7659 72 }
mgerdin@7659 73 };
mgerdin@7659 74
mgerdin@7659 75 HeapRegionGatheringOopClosure _oc;
mgerdin@7659 76 public:
mgerdin@7659 77 G1CodeBlobClosure(OopClosure* oc) : _oc(oc) {}
mgerdin@7659 78
mgerdin@7659 79 void do_code_blob(CodeBlob* cb) {
mgerdin@7659 80 nmethod* nm = cb->as_nmethod_or_null();
mgerdin@7659 81 if (nm != NULL) {
mgerdin@7659 82 if (!nm->test_set_oops_do_mark()) {
mgerdin@7659 83 _oc.set_nm(nm);
mgerdin@7659 84 nm->oops_do(&_oc);
mgerdin@7659 85 nm->fix_oop_relocations();
mgerdin@7659 86 }
mgerdin@7659 87 }
mgerdin@7659 88 }
mgerdin@7659 89 };
mgerdin@7659 90
mgerdin@7659 91
mgerdin@7659 92 void G1RootProcessor::worker_has_discovered_all_strong_classes() {
mgerdin@7659 93 uint n_workers = _g1h->n_par_threads();
mgerdin@7659 94 assert(ClassUnloadingWithConcurrentMark, "Currently only needed when doing G1 Class Unloading");
mgerdin@7659 95
sangheki@7764 96 if (n_workers > 0) {
sangheki@7764 97 uint new_value = (uint)Atomic::add(1, &_n_workers_discovered_strong_classes);
sangheki@7764 98 if (new_value == n_workers) {
sangheki@7764 99 // This thread is last. Notify the others.
sangheki@7764 100 MonitorLockerEx ml(&_lock, Mutex::_no_safepoint_check_flag);
sangheki@7764 101 _lock.notify_all();
sangheki@7764 102 }
mgerdin@7659 103 }
mgerdin@7659 104 }
mgerdin@7659 105
mgerdin@7659 106 void G1RootProcessor::wait_until_all_strong_classes_discovered() {
mgerdin@7659 107 uint n_workers = _g1h->n_par_threads();
mgerdin@7659 108 assert(ClassUnloadingWithConcurrentMark, "Currently only needed when doing G1 Class Unloading");
mgerdin@7659 109
sangheki@7764 110 if (n_workers > 0 && (uint)_n_workers_discovered_strong_classes != n_workers) {
mgerdin@7659 111 MonitorLockerEx ml(&_lock, Mutex::_no_safepoint_check_flag);
mgerdin@7659 112 while ((uint)_n_workers_discovered_strong_classes != n_workers) {
mgerdin@7659 113 _lock.wait(Mutex::_no_safepoint_check_flag, 0, false);
mgerdin@7659 114 }
mgerdin@7659 115 }
mgerdin@7659 116 }
mgerdin@7659 117
mgerdin@7659 118 G1RootProcessor::G1RootProcessor(G1CollectedHeap* g1h) :
mgerdin@7659 119 _g1h(g1h),
mgerdin@8070 120 _process_strong_tasks(G1RP_PS_NumElements),
mgerdin@7659 121 _srs(g1h),
mgerdin@7659 122 _lock(Mutex::leaf, "G1 Root Scanning barrier lock", false),
mgerdin@7659 123 _n_workers_discovered_strong_classes(0) {}
mgerdin@7659 124
mgerdin@7659 125 void G1RootProcessor::evacuate_roots(OopClosure* scan_non_heap_roots,
mgerdin@7659 126 OopClosure* scan_non_heap_weak_roots,
mgerdin@7659 127 CLDClosure* scan_strong_clds,
mgerdin@7659 128 CLDClosure* scan_weak_clds,
mgerdin@7659 129 bool trace_metadata,
mgerdin@7659 130 uint worker_i) {
mgerdin@7659 131 // First scan the shared roots.
mgerdin@7659 132 double ext_roots_start = os::elapsedTime();
brutisso@7660 133 G1GCPhaseTimes* phase_times = _g1h->g1_policy()->phase_times();
mgerdin@7659 134
mgerdin@7659 135 BufferingOopClosure buf_scan_non_heap_roots(scan_non_heap_roots);
mgerdin@7659 136 BufferingOopClosure buf_scan_non_heap_weak_roots(scan_non_heap_weak_roots);
mgerdin@7659 137
mgerdin@7659 138 OopClosure* const weak_roots = &buf_scan_non_heap_weak_roots;
mgerdin@7659 139 OopClosure* const strong_roots = &buf_scan_non_heap_roots;
mgerdin@7659 140
mgerdin@7659 141 // CodeBlobClosures are not interoperable with BufferingOopClosures
mgerdin@7659 142 G1CodeBlobClosure root_code_blobs(scan_non_heap_roots);
mgerdin@7659 143
mgerdin@7659 144 process_java_roots(strong_roots,
mgerdin@7659 145 trace_metadata ? scan_strong_clds : NULL,
mgerdin@7659 146 scan_strong_clds,
mgerdin@7659 147 trace_metadata ? NULL : scan_weak_clds,
brutisso@7660 148 &root_code_blobs,
brutisso@7660 149 phase_times,
brutisso@7660 150 worker_i);
mgerdin@7659 151
mgerdin@7659 152 // This is the point where this worker thread will not find more strong CLDs/nmethods.
mgerdin@7659 153 // Report this so G1 can synchronize the strong and weak CLDs/nmethods processing.
mgerdin@7659 154 if (trace_metadata) {
mgerdin@7659 155 worker_has_discovered_all_strong_classes();
mgerdin@7659 156 }
mgerdin@7659 157
brutisso@7660 158 process_vm_roots(strong_roots, weak_roots, phase_times, worker_i);
fmatte@9358 159 process_string_table_roots(weak_roots, phase_times, worker_i);
brutisso@7660 160 {
brutisso@7660 161 // Now the CM ref_processor roots.
brutisso@7660 162 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::CMRefRoots, worker_i);
mgerdin@8070 163 if (!_process_strong_tasks.is_task_claimed(G1RP_PS_refProcessor_oops_do)) {
brutisso@7660 164 // We need to treat the discovered reference lists of the
brutisso@7660 165 // concurrent mark ref processor as roots and keep entries
brutisso@7660 166 // (which are added by the marking threads) on them live
brutisso@7660 167 // until they can be processed at the end of marking.
brutisso@7660 168 _g1h->ref_processor_cm()->weak_oops_do(&buf_scan_non_heap_roots);
brutisso@7660 169 }
mgerdin@7659 170 }
mgerdin@7659 171
mgerdin@7659 172 if (trace_metadata) {
brutisso@7660 173 {
brutisso@7660 174 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::WaitForStrongCLD, worker_i);
brutisso@7660 175 // Barrier to make sure all workers passed
brutisso@7660 176 // the strong CLD and strong nmethods phases.
brutisso@7660 177 wait_until_all_strong_classes_discovered();
brutisso@7660 178 }
mgerdin@7659 179
mgerdin@7659 180 // Now take the complement of the strong CLDs.
brutisso@7660 181 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::WeakCLDRoots, worker_i);
mgerdin@7659 182 ClassLoaderDataGraph::roots_cld_do(NULL, scan_weak_clds);
brutisso@7660 183 } else {
brutisso@7660 184 phase_times->record_time_secs(G1GCPhaseTimes::WaitForStrongCLD, worker_i, 0.0);
brutisso@7660 185 phase_times->record_time_secs(G1GCPhaseTimes::WeakCLDRoots, worker_i, 0.0);
mgerdin@7659 186 }
mgerdin@7659 187
mgerdin@7659 188 // Finish up any enqueued closure apps (attributed as object copy time).
mgerdin@7659 189 buf_scan_non_heap_roots.done();
mgerdin@7659 190 buf_scan_non_heap_weak_roots.done();
mgerdin@7659 191
mgerdin@7659 192 double obj_copy_time_sec = buf_scan_non_heap_roots.closure_app_seconds()
mgerdin@7659 193 + buf_scan_non_heap_weak_roots.closure_app_seconds();
mgerdin@7659 194
mgerdin@7659 195 phase_times->record_time_secs(G1GCPhaseTimes::ObjCopy, worker_i, obj_copy_time_sec);
mgerdin@7659 196
mgerdin@7659 197 double ext_root_time_sec = os::elapsedTime() - ext_roots_start - obj_copy_time_sec;
mgerdin@7659 198
mgerdin@7659 199 phase_times->record_time_secs(G1GCPhaseTimes::ExtRootScan, worker_i, ext_root_time_sec);
mgerdin@7659 200
mgerdin@7659 201 // During conc marking we have to filter the per-thread SATB buffers
mgerdin@7659 202 // to make sure we remove any oops into the CSet (which will show up
mgerdin@7659 203 // as implicitly live).
mgerdin@7659 204 {
mgerdin@7659 205 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::SATBFiltering, worker_i);
mgerdin@8070 206 if (!_process_strong_tasks.is_task_claimed(G1RP_PS_filter_satb_buffers) && _g1h->mark_in_progress()) {
mgerdin@7659 207 JavaThread::satb_mark_queue_set().filter_thread_buffers();
mgerdin@7659 208 }
mgerdin@7659 209 }
mgerdin@7659 210
mgerdin@8070 211 _process_strong_tasks.all_tasks_completed();
mgerdin@7659 212 }
mgerdin@7659 213
mgerdin@7659 214 void G1RootProcessor::process_strong_roots(OopClosure* oops,
mgerdin@7659 215 CLDClosure* clds,
mgerdin@7659 216 CodeBlobClosure* blobs) {
mgerdin@7659 217
brutisso@7660 218 process_java_roots(oops, clds, clds, NULL, blobs, NULL, 0);
brutisso@7660 219 process_vm_roots(oops, NULL, NULL, 0);
mgerdin@7659 220
mgerdin@8070 221 _process_strong_tasks.all_tasks_completed();
mgerdin@7659 222 }
mgerdin@7659 223
mgerdin@7659 224 void G1RootProcessor::process_all_roots(OopClosure* oops,
mgerdin@7659 225 CLDClosure* clds,
fmatte@9358 226 CodeBlobClosure* blobs,
fmatte@9358 227 bool process_string_table) {
mgerdin@7659 228
brutisso@7660 229 process_java_roots(oops, NULL, clds, clds, NULL, NULL, 0);
brutisso@7660 230 process_vm_roots(oops, oops, NULL, 0);
mgerdin@7659 231
fmatte@9358 232 if (process_string_table) {
fmatte@9358 233 process_string_table_roots(oops, NULL, 0);
fmatte@9358 234 }
fmatte@9358 235 process_code_cache_roots(blobs, NULL, 0);
mgerdin@7659 236
mgerdin@8070 237 _process_strong_tasks.all_tasks_completed();
mgerdin@7659 238 }
mgerdin@7659 239
fmatte@9358 240 void G1RootProcessor::process_all_roots(OopClosure* oops,
fmatte@9358 241 CLDClosure* clds,
fmatte@9358 242 CodeBlobClosure* blobs) {
fmatte@9358 243 process_all_roots(oops, clds, blobs, true);
fmatte@9358 244 }
fmatte@9358 245
fmatte@9358 246 void G1RootProcessor::process_all_roots_no_string_table(OopClosure* oops,
fmatte@9358 247 CLDClosure* clds,
fmatte@9358 248 CodeBlobClosure* blobs) {
fmatte@9358 249 assert(!ClassUnloading, "Should only be used when class unloading is disabled");
fmatte@9358 250 process_all_roots(oops, clds, blobs, false);
fmatte@9358 251 }
fmatte@9358 252
fmatte@9358 253
mgerdin@7659 254 void G1RootProcessor::process_java_roots(OopClosure* strong_roots,
mgerdin@7659 255 CLDClosure* thread_stack_clds,
mgerdin@7659 256 CLDClosure* strong_clds,
mgerdin@7659 257 CLDClosure* weak_clds,
brutisso@7660 258 CodeBlobClosure* strong_code,
brutisso@7660 259 G1GCPhaseTimes* phase_times,
brutisso@7660 260 uint worker_i) {
mgerdin@7659 261 assert(thread_stack_clds == NULL || weak_clds == NULL, "There is overlap between those, only one may be set");
mgerdin@7659 262 // Iterating over the CLDG and the Threads are done early to allow us to
mgerdin@7659 263 // first process the strong CLDs and nmethods and then, after a barrier,
mgerdin@7659 264 // let the thread process the weak CLDs and nmethods.
brutisso@7660 265 {
brutisso@7660 266 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::CLDGRoots, worker_i);
mgerdin@8070 267 if (!_process_strong_tasks.is_task_claimed(G1RP_PS_ClassLoaderDataGraph_oops_do)) {
brutisso@7660 268 ClassLoaderDataGraph::roots_cld_do(strong_clds, weak_clds);
brutisso@7660 269 }
mgerdin@7659 270 }
mgerdin@7659 271
brutisso@7660 272 {
brutisso@7660 273 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::ThreadRoots, worker_i);
brutisso@7660 274 Threads::possibly_parallel_oops_do(strong_roots, thread_stack_clds, strong_code);
brutisso@7660 275 }
mgerdin@7659 276 }
mgerdin@7659 277
mgerdin@7659 278 void G1RootProcessor::process_vm_roots(OopClosure* strong_roots,
brutisso@7660 279 OopClosure* weak_roots,
brutisso@7660 280 G1GCPhaseTimes* phase_times,
brutisso@7660 281 uint worker_i) {
brutisso@7660 282 {
brutisso@7660 283 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::UniverseRoots, worker_i);
mgerdin@8070 284 if (!_process_strong_tasks.is_task_claimed(G1RP_PS_Universe_oops_do)) {
brutisso@7660 285 Universe::oops_do(strong_roots);
brutisso@7660 286 }
mgerdin@7659 287 }
mgerdin@7659 288
brutisso@7660 289 {
brutisso@7660 290 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::JNIRoots, worker_i);
mgerdin@8070 291 if (!_process_strong_tasks.is_task_claimed(G1RP_PS_JNIHandles_oops_do)) {
brutisso@7660 292 JNIHandles::oops_do(strong_roots);
brutisso@7660 293 }
mgerdin@7659 294 }
mgerdin@7659 295
brutisso@7660 296 {
brutisso@7660 297 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::ObjectSynchronizerRoots, worker_i);
mgerdin@8070 298 if (!_process_strong_tasks.is_task_claimed(G1RP_PS_ObjectSynchronizer_oops_do)) {
brutisso@7660 299 ObjectSynchronizer::oops_do(strong_roots);
brutisso@7660 300 }
mgerdin@7659 301 }
mgerdin@7659 302
brutisso@7660 303 {
brutisso@7660 304 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::FlatProfilerRoots, worker_i);
mgerdin@8070 305 if (!_process_strong_tasks.is_task_claimed(G1RP_PS_FlatProfiler_oops_do)) {
brutisso@7660 306 FlatProfiler::oops_do(strong_roots);
brutisso@7660 307 }
mgerdin@7659 308 }
mgerdin@7659 309
brutisso@7660 310 {
brutisso@7660 311 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::ManagementRoots, worker_i);
mgerdin@8070 312 if (!_process_strong_tasks.is_task_claimed(G1RP_PS_Management_oops_do)) {
brutisso@7660 313 Management::oops_do(strong_roots);
brutisso@7660 314 }
mgerdin@7659 315 }
mgerdin@7659 316
brutisso@7660 317 {
brutisso@7660 318 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::JVMTIRoots, worker_i);
mgerdin@8070 319 if (!_process_strong_tasks.is_task_claimed(G1RP_PS_jvmti_oops_do)) {
brutisso@7660 320 JvmtiExport::oops_do(strong_roots);
brutisso@7660 321 }
mgerdin@7659 322 }
mgerdin@7659 323
brutisso@7660 324 {
brutisso@7660 325 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::SystemDictionaryRoots, worker_i);
mgerdin@8070 326 if (!_process_strong_tasks.is_task_claimed(G1RP_PS_SystemDictionary_oops_do)) {
brutisso@7660 327 SystemDictionary::roots_oops_do(strong_roots, weak_roots);
brutisso@7660 328 }
mgerdin@7659 329 }
fmatte@9358 330 }
mgerdin@7659 331
fmatte@9358 332 void G1RootProcessor::process_string_table_roots(OopClosure* weak_roots, G1GCPhaseTimes* phase_times,
fmatte@9358 333 uint worker_i) {
fmatte@9358 334 assert(weak_roots != NULL, "Should only be called when all roots are processed");
fmatte@9358 335
fmatte@9358 336 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::StringTableRoots, worker_i);
fmatte@9358 337 // All threads execute the following. A specific chunk of buckets
fmatte@9358 338 // from the StringTable are the individual tasks.
fmatte@9358 339 StringTable::possibly_parallel_oops_do(weak_roots);
fmatte@9358 340 }
fmatte@9358 341
fmatte@9358 342 void G1RootProcessor::process_code_cache_roots(CodeBlobClosure* code_closure,
fmatte@9358 343 G1GCPhaseTimes* phase_times,
fmatte@9358 344 uint worker_i) {
fmatte@9358 345 if (!_process_strong_tasks.is_task_claimed(G1RP_PS_CodeCache_oops_do)) {
fmatte@9358 346 CodeCache::blobs_do(code_closure);
mgerdin@7659 347 }
mgerdin@7659 348 }
mgerdin@7659 349
mgerdin@7659 350 void G1RootProcessor::scan_remembered_sets(G1ParPushHeapRSClosure* scan_rs,
mgerdin@7659 351 OopClosure* scan_non_heap_weak_roots,
mgerdin@7659 352 uint worker_i) {
brutisso@7660 353 G1GCPhaseTimes* phase_times = _g1h->g1_policy()->phase_times();
brutisso@7660 354 G1GCParPhaseTimesTracker x(phase_times, G1GCPhaseTimes::CodeCacheRoots, worker_i);
brutisso@7660 355
mgerdin@7659 356 // Now scan the complement of the collection set.
mgerdin@7659 357 G1CodeBlobClosure scavenge_cs_nmethods(scan_non_heap_weak_roots);
mgerdin@7659 358
mgerdin@7659 359 _g1h->g1_rem_set()->oops_into_collection_set_do(scan_rs, &scavenge_cs_nmethods, worker_i);
mgerdin@7659 360 }
mgerdin@7659 361
mgerdin@7659 362 void G1RootProcessor::set_num_workers(int active_workers) {
mgerdin@8070 363 _process_strong_tasks.set_n_threads(active_workers);
mgerdin@7659 364 }

mercurial