summaryrefslogtreecommitdiff
path: root/gnu/classpath
diff options
context:
space:
mode:
authorKyle Galloway <kgallowa@redhat.com>2007-03-27 19:12:58 +0000
committerKyle Galloway <kgallowa@redhat.com>2007-03-27 19:12:58 +0000
commit2bbb30a569fb6becf5a9f4147374f3b462a2c3e6 (patch)
tree74e3071586b0809a9ac9ace99289c2d82521e63e /gnu/classpath
parent10bde828619168f3dbb2d70426eb0d110039b6dc (diff)
downloadclasspath-2bbb30a569fb6becf5a9f4147374f3b462a2c3e6.tar.gz
2007-03-27 Kyle Galloway <kgallowa@redhat.com>
* gnu/classpth/jdwp/processor/ThreadReferenceCommandSet.java (executeResume): Change to call VMVirtualMachine.resumeThread.
Diffstat (limited to 'gnu/classpath')
-rw-r--r--gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.java b/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.java
index 0dd10200b..6fbcf698f 100644
--- a/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.java
+++ b/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.java
@@ -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)