< prev index next >

src/share/vm/gc/parallel/gcTaskThread.cpp

Print this page

        

*** 105,118 **** // Set up the thread for stack overflow support this->record_stack_base_and_size(); this->initialize_named_thread(); // Bind yourself to your processor. if (processor_id() != GCTaskManager::sentinel_worker()) { ! if (TraceGCTaskThread) { ! tty->print_cr("GCTaskThread::run: " ! " binding to processor %u", processor_id()); ! } if (!os::bind_to_processor(processor_id())) { DEBUG_ONLY( log_warning(gc)("Couldn't bind GCTaskThread %u to processor %u", which(), processor_id()); ) --- 105,115 ---- // Set up the thread for stack overflow support this->record_stack_base_and_size(); this->initialize_named_thread(); // Bind yourself to your processor. if (processor_id() != GCTaskManager::sentinel_worker()) { ! log_trace(gc, task, thread)("GCTaskThread::run: binding to processor %u", processor_id()); if (!os::bind_to_processor(processor_id())) { DEBUG_ONLY( log_warning(gc)("Couldn't bind GCTaskThread %u to processor %u", which(), processor_id()); )
< prev index next >