Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jdt-debug-dev] Different usage of eclipse jdi lib and sun implementation

> 
> Thanks Darin. The problem is the EventQueue's remove() method keeps 
> waiting after the vm started when running with JDT's JDI while it 
> runs well with Sun's JDI
> 

The spec for the remove() method is "Waits forever for the next available 
event."

Found here:

http://java.sun.com/javase/6/docs/jdk/api/jpda/jdi/com/sun/jdi/event/EventQueue.html#remove()

Perhaps you need to resume the VM after startup to get it running (the 
connection parameters indicate it will suspend on startup).

Darin


Back to the top