Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Geisert <mark@maxrnd.com>2019-11-08 03:13:34 +0300
committerCorinna Vinschen <corinna@vinschen.de>2019-11-08 12:23:08 +0300
commit7c9c94b9c8af34152d18cf2264e5c723e9e61ab7 (patch)
tree1a7e943ec6a2e8a2b44ffa3ee06547cc981805d2
parent3880efb28390fe52e03de82b3b1e817a35b62577 (diff)
Cygwin: Raise dumpstack frame limit to 32
Create a #define for the limit and raise it from 16 to 32.
-rw-r--r--winsup/cygwin/exceptions.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc
index 132fea427..3e7d7275c 100644
--- a/winsup/cygwin/exceptions.cc
+++ b/winsup/cygwin/exceptions.cc
@@ -42,6 +42,7 @@ details. */
#define CALL_HANDLER_RETRY_OUTER 10
#define CALL_HANDLER_RETRY_INNER 10
+#define DUMPSTACK_FRAME_LIMIT 32
PWCHAR debugger_command;
extern uint8_t _sigbe;
@@ -382,7 +383,7 @@ cygwin_exception::dumpstack ()
#else
small_printf ("Stack trace:\r\nFrame Function Args\r\n");
#endif
- for (i = 0; i < 16 && thestack++; i++)
+ for (i = 0; i < DUMPSTACK_FRAME_LIMIT && thestack++; i++)
{
small_printf (_AFMT " " _AFMT, thestack.sf.AddrFrame.Offset,
thestack.sf.AddrPC.Offset);
@@ -392,7 +393,8 @@ cygwin_exception::dumpstack ()
small_printf (")\r\n");
}
small_printf ("End of stack trace%s\n",
- i == 16 ? " (more stack frames may be present)" : "");
+ i == DUMPSTACK_FRAME_LIMIT ?
+ " (more stack frames may be present)" : "");
if (h)
NtClose (h);
}