Top Inners Fields Constructors Methods
sun.jvm.hotspot.runtime

public Class ObjectSynchronizer

extends Object
Class Inheritance
Imports
java.util.*, sun.jvm.hotspot.oops.*, sun.jvm.hotspot.utilities.*, .Observable, .Observer, sun.jvm.hotspot.debugger.*, sun.jvm.hotspot.types.*

Nested and Inner Type Summary

Modifier and TypeClass and Description
private static class

Field Summary

Modifier and TypeField and Description
private static Address

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public long
private static synchronized void
public static Iterator<E>
Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

inUseListHeadback to summary
private static Address inUseListHead

Constructor Detail

ObjectSynchronizerback to summary
public ObjectSynchronizer()

Method Detail

identityHashValueForback to summary
public long identityHashValueFor(Oop obj)
initializeback to summary
private static synchronized void initialize(TypeDataBase db) throws WrongTypeException
objectMonitorIteratorback to summary
public static Iterator<E> objectMonitorIterator()
sun.jvm.hotspot.runtime back to summary

private Class ObjectSynchronizer.ObjectMonitorIterator

extends Object
implements Iterator
Class Inheritance
  • java.lang.Object
  • sun.jvm.hotspot.runtime.ObjectSynchronizer.ObjectMonitorIterator
All Implemented Interfaces
java.util.Iterator

Field Summary

Modifier and TypeField and Description
private ObjectMonitor

Constructor Summary

AccessConstructor and Description
pack-priv

Method Summary

Modifier and TypeMethod and Description
public boolean
hasNext()

Implements java.util.Iterator.hasNext.

Returns true if the iteration has more elements.

public Object
next()

Implements java.util.Iterator.next.

Returns the next element in the iteration.

public void
remove()

Overrides default java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation).

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

monback to summary
private ObjectMonitor mon

Constructor Detail

ObjectMonitorIteratorback to summary
pack-priv ObjectMonitorIterator()

Method Detail

hasNextback to summary
public boolean hasNext()

Implements java.util.Iterator.hasNext.

Doc from java.util.Iterator.hasNext.

Returns true if the iteration has more elements. (In other words, returns true if next would return an element rather than throwing an exception.)

Returns:boolean

true if the iteration has more elements

nextback to summary
public Object next()

Implements java.util.Iterator.next.

Doc from java.util.Iterator.next.

Returns the next element in the iteration.

Returns:Object

the next element in the iteration

removeback to summary
public void remove()

Overrides default java.util.Iterator.remove.

Doc from java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call to next.

The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method, unless an overriding class has specified a concurrent modification policy.

The behavior of an iterator is unspecified if this method is called after a call to the forEachRemaining method.