mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
Bug 111568: Fix for corrupt stack messages not working. Applied patch from Timesys.
This commit is contained in:
parent
9746494f77
commit
97c3f29d23
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-10-18 Mikhail Khodjaiants
|
||||||
|
Bug 111568: Fix for corrupt stack messages not working.
|
||||||
|
Applied patch from Timesys.
|
||||||
|
* cdi/org/eclipse/cdt/debug/mi/core/cdi/model/Thread.java
|
||||||
|
|
||||||
2005-09-01 Mikhail Khodjaiants
|
2005-09-01 Mikhail Khodjaiants
|
||||||
Bug 108636: mi level selection option should be moved to the gdb page.
|
Bug 108636: mi level selection option should be moved to the gdb page.
|
||||||
* src/org/eclipse/cdt/debug/mi/core/GDBCDIDebugger.java
|
* src/org/eclipse/cdt/debug/mi/core/GDBCDIDebugger.java
|
||||||
|
|
|
@ -169,6 +169,7 @@ public class Thread extends CObject implements ICDIThread {
|
||||||
} catch (MIException e) {
|
} catch (MIException e) {
|
||||||
// First try fails, retry. gdb patches up the corrupt frame
|
// First try fails, retry. gdb patches up the corrupt frame
|
||||||
// so retry should give us a frame count that is safe.
|
// so retry should give us a frame count that is safe.
|
||||||
|
depth = factory.createMIStackInfoDepth();
|
||||||
mi.postCommand(depth);
|
mi.postCommand(depth);
|
||||||
info = depth.getMIStackInfoDepthInfo();
|
info = depth.getMIStackInfoDepthInfo();
|
||||||
if (info == null) {
|
if (info == null) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue