mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix for PR 39372: Breakpoints don't get activated when symbols are loaded.
This commit is contained in:
parent
0375bb50a1
commit
f3ed140c9c
2 changed files with 4 additions and 0 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
2003-06-30 Mikhail Khodjaiants
|
||||||
|
Fix for PR 39372: Breakpoints don't get activated when symbols are loaded.
|
||||||
|
|
||||||
2003-06-30 Mikhail Khodjaiants
|
2003-06-30 Mikhail Khodjaiants
|
||||||
Fix for PR 39100: CDT/Debug core is asking value 16 times.
|
Fix for PR 39100: CDT/Debug core is asking value 16 times.
|
||||||
* CValue.java
|
* CValue.java
|
||||||
|
|
|
@ -493,6 +493,7 @@ public class CThread extends CDebugElement
|
||||||
{
|
{
|
||||||
if ( !isSuspended() )
|
if ( !isSuspended() )
|
||||||
return;
|
return;
|
||||||
|
((CDebugTarget)getDebugTarget()).setBreakpoints();
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
getCDIThread().resume();
|
getCDIThread().resume();
|
||||||
|
|
Loading…
Add table
Reference in a new issue