mirror of
https://github.com/openjdk/jdk.git
synced 2026-04-16 18:00:29 +00:00
Merge
This commit is contained in:
commit
122115671c
@ -29,3 +29,4 @@ jdk.sctp
|
||||
jdk.security.auth
|
||||
jdk.security.jgss
|
||||
jdk.snmp
|
||||
jdk.vm.ci
|
||||
|
||||
@ -27,6 +27,7 @@ package sun.management;
|
||||
|
||||
/**
|
||||
*/
|
||||
@Deprecated
|
||||
public class CompilerThreadStat implements java.io.Serializable {
|
||||
private String name;
|
||||
private long taskCount;
|
||||
|
||||
@ -90,6 +90,7 @@ class HotspotCompilation
|
||||
this.time = (LongCounter) lookup(basename + "time");
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
CompilerThreadStat getCompilerThreadStat() {
|
||||
MethodInfo minfo = new MethodInfo(method.stringValue(),
|
||||
(int) type.longValue(),
|
||||
@ -182,6 +183,7 @@ class HotspotCompilation
|
||||
return nmethodSize.longValue();
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public List<CompilerThreadStat> getCompilerThreadStats() {
|
||||
List<CompilerThreadStat> list = new ArrayList<>(threads.size());
|
||||
for (CompilerThreadInfo info : threads) {
|
||||
|
||||
@ -46,6 +46,7 @@ public interface HotspotCompilationMBean {
|
||||
* the statistic of a compiler thread.
|
||||
*
|
||||
*/
|
||||
@Deprecated
|
||||
public java.util.List<CompilerThreadStat> getCompilerThreadStats();
|
||||
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user