2007-04-02 Kyle Galloway <kgallowa@redhat.com>
authorKyle Galloway <kgallowa@redhat.com>
Mon, 2 Apr 2007 12:52:01 +0000 (12:52 +0000)
committerKyle Galloway <kgallowa@gcc.gnu.org>
Mon, 2 Apr 2007 12:52:01 +0000 (12:52 +0000)
* classpath/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.java
(executeResume): Call VMVirtualMachine.resumeThread.

From-SVN: r123426

libjava/ChangeLog
libjava/classpath/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.java
libjava/classpath/lib/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.class

index 318a4c2..86b682a 100644 (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:
index 0dd1020..6fbcf69 100644 (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)
index 0398ff0..4428c9a 100644 (file)
Binary files a/libjava/classpath/lib/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.class and b/libjava/classpath/lib/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.class differ