2007-04-02 Kyle Galloway <kgallowa@redhat.com>

* classpath/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.java
	(executeResume): Call VMVirtualMachine.resumeThread.

From-SVN: r123426
This commit is contained in:
Kyle Galloway 2007-04-02 12:52:01 +00:00 committed by Kyle Galloway
parent 320fc205e1
commit c6756b7257
3 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-04-02 Kyle Galloway <kgallowa@redhat.com>
* classpath/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.java
(executeResume): Call VMVirtualMachine.resumeThread.
2007-03-29 Tom Tromey <tromey@redhat.com>
PR libgcj/29869:

View File

@ -142,7 +142,7 @@ public class ThreadReferenceCommandSet
{
ThreadId tid = (ThreadId) idMan.readObjectId(bb);
Thread thread = tid.getThread();
VMVirtualMachine.suspendThread(thread);
VMVirtualMachine.resumeThread(thread);
}
private void executeStatus(ByteBuffer bb, DataOutputStream os)