comparison src/share/vm/runtime/thread.cpp @ 3799:48048b59a551

7061204: clean the chunk table synchronously in embedded builds Reviewed-by: dholmes, never, jwilhelm, kvn
author jcoomes
date Wed, 06 Jul 2011 12:28:07 -0700
parents ef2d1b8f2dd4
children c124e2e7463e
comparison
equal deleted inserted replaced
3798:65dba8692db7 3799:48048b59a551
3345 } 3345 }
3346 3346
3347 // Notify JVMTI agents that VM initialization is complete - nop if no agents. 3347 // Notify JVMTI agents that VM initialization is complete - nop if no agents.
3348 JvmtiExport::post_vm_initialized(); 3348 JvmtiExport::post_vm_initialized();
3349 3349
3350 Chunk::start_chunk_pool_cleaner_task(); 3350 if (CleanChunkPoolAsync) {
3351 Chunk::start_chunk_pool_cleaner_task();
3352 }
3351 3353
3352 // initialize compiler(s) 3354 // initialize compiler(s)
3353 CompileBroker::compilation_init(); 3355 CompileBroker::compilation_init();
3354 3356
3355 Management::initialize(THREAD); 3357 Management::initialize(THREAD);