Searched defs:CompilerThreadInfo (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/management/
H A DHotspotCompilation.java78 private class CompilerThreadInfo { class in class:HotspotCompilation
85 CompilerThreadInfo(String bname, int index) { method in class:HotspotCompilation.CompilerThreadInfo
93 CompilerThreadInfo(String bname) { method in class:HotspotCompilation.CompilerThreadInfo
112 private CompilerThreadInfo[] threads;
162 // Allocate CompilerThreadInfo for compilerThread and adaptorThread
163 threads = new CompilerThreadInfo[numActiveThreads+1];
167 threads[0] = new CompilerThreadInfo("adapterThread", 0);
174 threads[i] = new CompilerThreadInfo("compilerThread", i-1);

Completed in 29 milliseconds