mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 00:45:28 +02:00
Bug 89755: CThread.suspend suspends target, not thread.
This commit is contained in:
parent
1e163ece68
commit
592da591e5
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2005-04-07 Mikhail Khodjaiants
|
||||
Bug 89755: CThread.suspend suspends target, not thread.
|
||||
* CThread.java
|
||||
|
||||
2005-04-04 Alain Magloire
|
||||
Move to Eclipse-31M6
|
||||
- src/org/eclipse/cdt/debug/internal/core/CMemoryBlockExtensionRetrieval.java
|
||||
|
|
|
@ -418,7 +418,7 @@ public class CThread extends CDebugElement implements ICThread, IRestart, IResum
|
|||
CDebugElementState oldState = getState();
|
||||
setState( CDebugElementState.SUSPENDING );
|
||||
try {
|
||||
getCDITarget().suspend();
|
||||
getCDIThread().suspend();
|
||||
}
|
||||
catch( CDIException e ) {
|
||||
setState( oldState );
|
||||
|
|
Loading…
Add table
Reference in a new issue