comparison src/share/vm/runtime/java.cpp @ 61:5a76ab815e34

6667833: Remove CacheTimeMillis Summary: Remove -XX:+CacheTimeMillis option and associated functionality Reviewed-by: acorn, never
author sbohne
date Wed, 19 Mar 2008 09:58:01 -0400
parents a61af66fc99e
children d1605aabd0a1 8d852b81e775
comparison
equal deleted inserted replaced
60:8d84e28e68ba 61:5a76ab815e34
388 388
389 // shut down the StatSampler task 389 // shut down the StatSampler task
390 StatSampler::disengage(); 390 StatSampler::disengage();
391 StatSampler::destroy(); 391 StatSampler::destroy();
392 392
393 // shut down the TimeMillisUpdateTask
394 if (CacheTimeMillis) {
395 TimeMillisUpdateTask::disengage();
396 }
397
398 #ifndef SERIALGC 393 #ifndef SERIALGC
399 // stop CMS threads 394 // stop CMS threads
400 if (UseConcMarkSweepGC) { 395 if (UseConcMarkSweepGC) {
401 ConcurrentMarkSweepThread::stop(); 396 ConcurrentMarkSweepThread::stop();
402 } 397 }