comparison src/share/vm/gc_implementation/shared/concurrentGCThread.cpp @ 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 aed758eda82a
children ad3f8397fe37
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
52 } 52 }
53 53
54 void ConcurrentGCThread::create_and_start() { 54 void ConcurrentGCThread::create_and_start() {
55 if (os::create_thread(this, os::cgc_thread)) { 55 if (os::create_thread(this, os::cgc_thread)) {
56 // XXX: need to set this to low priority 56 // XXX: need to set this to low priority
57 // unless "agressive mode" set; priority 57 // unless "aggressive mode" set; priority
58 // should be just less than that of VMThread. 58 // should be just less than that of VMThread.
59 os::set_priority(this, NearMaxPriority); 59 os::set_priority(this, NearMaxPriority);
60 if (!_should_terminate && !DisableStartThread) { 60 if (!_should_terminate && !DisableStartThread) {
61 os::start_thread(this); 61 os::start_thread(this);
62 } 62 }