Commit c6756b72 by Kyle Galloway Committed by Kyle Galloway

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

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

From-SVN: r123426
parent 320fc205
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:
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment