From fb67cea2010d4e1cfb90944f0cd1625caa98a5c8 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Thu, 14 Nov 2002 21:09:54 +0000 Subject: [PATCH] updated. --- debug/org.eclipse.cdt.debug.core/ChangeLog | 7 +++++++ debug/org.eclipse.cdt.debug.mi.core/ChangeLog | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index dc1d369ec5a..53c2c50154d 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,5 +1,12 @@ 2002-11-14 Alain Magloire + This is needed in post-mortem, application doing a + very deep recursion and crashing the stack size, for example + on GNU/Linux it may reach 200000 levels deep. Trying to + bring in the UI a bactrace tree of 200000 nodes is useless. + The UI could check the count and do the appropriate action + by showing ranges etc .. + * src/org/eclipse/cdt/debug/core/cdi/model/ICDIThread.java (getStackFrames): New method to provide a range lowFrame and highFrame. (getStackFrameCount): New method returns the depth level diff --git a/debug/org.eclipse.cdt.debug.mi.core/ChangeLog b/debug/org.eclipse.cdt.debug.mi.core/ChangeLog index 6a08312f78b..5ddb93592be 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.mi.core/ChangeLog @@ -1,5 +1,12 @@ 2002-11-14 Alain Magloire + This is needed in post-mortem, application doing a + very deep recursion and crashing the stack size, for example + on GNU/Linux it may reach 200000 levels deep. Trying to + bring in the UI a bactrace tree of 200000 nodes is useless. + The UI could check the count and do the appropriate action + by showing ranges etc .. + * src/.../mi/core/cdi/CThread.java (getStackFrame): new method with a hi and low. (getStackFrameCount): new method.