mirror of git://gcc.gnu.org/git/gcc.git
2007-04-02 Kyle Galloway <kgallowa@redhat.com>
* classpath/gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.java (executeResume): Call VMVirtualMachine.resumeThread. From-SVN: r123426
This commit is contained in:
parent
320fc205e1
commit
c6756b7257
|
@ -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>
|
2007-03-29 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
PR libgcj/29869:
|
PR libgcj/29869:
|
||||||
|
|
|
@ -142,7 +142,7 @@ public class ThreadReferenceCommandSet
|
||||||
{
|
{
|
||||||
ThreadId tid = (ThreadId) idMan.readObjectId(bb);
|
ThreadId tid = (ThreadId) idMan.readObjectId(bb);
|
||||||
Thread thread = tid.getThread();
|
Thread thread = tid.getThread();
|
||||||
VMVirtualMachine.suspendThread(thread);
|
VMVirtualMachine.resumeThread(thread);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void executeStatus(ByteBuffer bb, DataOutputStream os)
|
private void executeStatus(ByteBuffer bb, DataOutputStream os)
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue