src/hotspot/share/runtime/thread.cpp
changeset 52599 a2e22b1ee4a1
parent 52596 dfa02b3f728c
child 52701 c724619944f1
equal deleted inserted replaced
52598:0379b618ec46 52599:a2e22b1ee4a1
  4701       // because it completed the compilation. The task is never freed,
  4701       // because it completed the compilation. The task is never freed,
  4702       // though, just returned to a free list.
  4702       // though, just returned to a free list.
  4703       CompileTask* task = ct->task();
  4703       CompileTask* task = ct->task();
  4704       if (task != NULL) {
  4704       if (task != NULL) {
  4705         thread->print_name_on_error(st, buf, buflen);
  4705         thread->print_name_on_error(st, buf, buflen);
       
  4706         st->print("  ");
  4706         task->print(st, NULL, true, true);
  4707         task->print(st, NULL, true, true);
  4707       }
  4708       }
  4708     }
  4709     }
  4709   }
  4710   }
  4710 }
  4711 }