1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

fixed exception on shutdown with an attached process

This commit is contained in:
David Inglis 2002-10-24 15:11:07 +00:00
parent c0573ac6df
commit 227e380ee2
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2002-10-24 David Inglis
* CDebugTarget.java
fix exception on shutdown with a connected target, CDI session
was not terminated.
2002-10-23 Mikhail Khodjaiants 2002-10-23 Mikhail Khodjaiants
Support for debugger console. Support for debugger console.
* CDebugModel.java: new factory methods for CDebugTarget * CDebugModel.java: new factory methods for CDebugTarget

View file

@ -712,6 +712,7 @@ public class CDebugTarget extends CDebugElement
try try
{ {
getCDITarget().disconnect(); getCDITarget().disconnect();
getCDISession().terminate();
} }
catch( CDIException e ) catch( CDIException e )
{ {