mirror of
https://gcc.gnu.org/git/gcc.git
synced 2025-01-18 10:24:30 +08:00
PacketProcessor.java (run): Send shutdown to jdwp instead of connection.
* gnu/classpath/jdwp/processor/PacketProcessor.java (run): Send shutdown to jdwp instead of connection. From-SVN: r101936
This commit is contained in:
parent
87bd8b7067
commit
04be5ce5ec
@ -1,3 +1,8 @@
|
||||
2005-07-12 Aaron Luchko <aluchko@redhat.com>
|
||||
|
||||
* gnu/classpath/jdwp/processor/PacketProcessor.java (run): Send
|
||||
shutdown to jdwp instead of connection.
|
||||
|
||||
2005-07-12 Aaron Luchko <aluchko@redhat.com>
|
||||
|
||||
* gnu/classpath/jdwp/processor/ObjectReferenceCommandSet.java:
|
||||
|
@ -40,6 +40,7 @@ exception statement from your version. */
|
||||
|
||||
package gnu.classpath.jdwp.processor;
|
||||
|
||||
import gnu.classpath.jdwp.Jdwp;
|
||||
import gnu.classpath.jdwp.JdwpConstants;
|
||||
import gnu.classpath.jdwp.exception.JdwpException;
|
||||
import gnu.classpath.jdwp.transport.JdwpCommandPacket;
|
||||
@ -146,8 +147,8 @@ public class PacketProcessor
|
||||
{
|
||||
ex.printStackTrace();
|
||||
}
|
||||
// Time to shutdown, tell the _connection thread to stop reading
|
||||
_connection.shutdown();
|
||||
// Time to shutdown, tell Jdwp to shutdown
|
||||
Jdwp.getDefault().shutdown();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user