1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
This commit is contained in:
Alain Magloire 2003-10-18 01:22:37 +00:00
parent 115e1208c3
commit 37149bf71f
2 changed files with 29 additions and 0 deletions

View file

@ -1,3 +1,12 @@
2003-10-17 Alain Magloire
ICDIBreakpointManager new method
setLocationBreakpoint(...., deferred);
The new boolean "deferred" indicate if yes or not the breakpoint
should be on the deferred list if the setting fails.
* ICDIBreakpointManager.java
2003-10-17 Mikhail Khodjaiants
Core support of the 'Search for duplicate source files' option.
* ICSourceLocation.java

View file

@ -1,3 +1,23 @@
2003-10-17 Alain Magloire
Put the framework to deal with deferred breakpoint.
* src/org/eclipse/cdt/debug/mi/core/cdi/event/ResumeEvent.java
Deal with MIRunningEvent.RETURN.
* src/org/eclipse/cdt/debug/mi/core/cdi/model/Breakpoint.java
Check if MIBreakpoint is null first.
* src/org/eclipse/cdt/debug/mi/core/cdi/model/Watchpoint.java
Check if MIWathchpoint is null first.
* src/org/eclipse/cdt/debug/mi/core/cdi/BreakpointManager.java
Implement Deferred Breakpoint
* src/org/eclipse/cdt/debug/mi/core/cdi/SharedLibraryManager.java
Implement Deferred Breakpoint
* src/org/eclipse/cdt/debug/mi/core/GDBDebugger.java
Enable deferredBreakpoint.
* src/org/eclipse/cdt/debug/mi/core/CygwinDebugger.java
Enable deferredBreakpoint.
2003-10-07 Mikhail Khodjaiants
All methods of 'IRuntimeOptions' should throw CDI exceptions in case of failure.