Commit 0e1e7fcc authored by kgallowa's avatar kgallowa
Browse files

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

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



git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123426 138bc75d-0d04-0410-961f-82ee72b054a4
parent f77e0a1a
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)
......
No preview for this file type
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