< prev index next >
src/share/vm/runtime/serviceThread.cpp
Print this page
*** 38,48 ****
ServiceThread* ServiceThread::_instance = NULL;
void ServiceThread::initialize() {
EXCEPTION_MARK;
! instanceKlassHandle klass (THREAD, SystemDictionary::Thread_klass());
instanceHandle thread_oop = klass->allocate_instance_handle(CHECK);
const char* name = "Service Thread";
Handle string = java_lang_String::create_from_str(name, CHECK);
--- 38,48 ----
ServiceThread* ServiceThread::_instance = NULL;
void ServiceThread::initialize() {
EXCEPTION_MARK;
! InstanceKlass* klass = SystemDictionary::Thread_klass();
instanceHandle thread_oop = klass->allocate_instance_handle(CHECK);
const char* name = "Service Thread";
Handle string = java_lang_String::create_from_str(name, CHECK);
< prev index next >