< prev index next > src/hotspot/share/compiler/compileLog.cpp
Print this page
_identities = NEW_C_HEAP_ARRAY(char, _identities_capacity, mtCompiler);
_file = NEW_C_HEAP_ARRAY(char, strlen(file_name)+1, mtCompiler);
strcpy((char*)_file, file_name);
// link into the global list
! { MutexLocker locker(CompileTaskAlloc_lock);
_next = _first;
_first = this;
}
}
_identities = NEW_C_HEAP_ARRAY(char, _identities_capacity, mtCompiler);
_file = NEW_C_HEAP_ARRAY(char, strlen(file_name)+1, mtCompiler);
strcpy((char*)_file, file_name);
// link into the global list
! { MonitorLocker locker(CompileTaskAlloc_lock);
_next = _first;
_first = this;
}
}
< prev index next >