/* (non-Javadoc)
* @see org.eclipse.jdi.hcr.EventRequestManager#createReenterStepRequest(com.sun.jdi.ThreadReference)
*/
public org.eclipse.jdi.hcr.ReenterStepRequest createReenterStepRequest(ThreadReference thread) {
virtualMachineImpl().checkHCRSupported();
ThreadReferenceImpl threadImpl = (ThreadReferenceImpl)thread;
ReenterStepRequestImpl req = new ReenterStepRequestImpl(virtualMachineImpl());
// Note that the StepFilter is only used to specify the thread.
// The size is ignored and the depth will always be written as HCR_STEP_DEPTH_REENTER_JDWP.
req.addStepFilter(threadImpl, StepRequest.STEP_MIN, 0);
// Since this is a special case of a step request, we use the same request list.