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

/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DMyOwnSynchronizer.java73 LockInfo[] syncs = ti.getLockedSynchronizers();
75 thread.checkLockedSyncs(ti, syncs);
170 void checkLockedSyncs(ThreadInfo info, LockInfo[] syncs) { argument
176 if (syncs.length != OWNED_SYNCS) {
177 throw new RuntimeException("Number of locked syncs = " +
178 syncs.length +
184 if (!lockName.equals(syncs[0].getClassName())) {
185 throw new RuntimeException("LockInfo : " + syncs[0] +
188 if (hcode != syncs[0].getIdentityHashCode()) {
189 throw new RuntimeException("LockInfo: " + syncs[
[all...]

Completed in 118 milliseconds