OSDN Git Service

2007-04-02 Kyle Galloway <kgallowa@redhat.com>
authorkgallowa <kgallowa@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 2 Apr 2007 12:52:01 +0000 (12:52 +0000)
committerkgallowa <kgallowa@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 2 Apr 2007 12:52:01 +0000 (12:52 +0000)
* 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

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