Tagged Questions
0
votes
0answers
134 views
Can't get Windbg to load symbols
I'll admit to being completely new to Windbg so hopefully this is a noobish question that I couldn't find the answer for on the internet.
Anyways, here is my symbol path: ...
1
vote
1answer
334 views
How to debug a stack overflow in C in IAR Workbench
I'm working on a C project using IAR Embedded Workbench IDE and the TI CC2540 Bluetooth Low Energy 8051 chip.
I seem to be getting tons of XData stack and Idata stack overflows while working on the ...
2
votes
0answers
66 views
Eclipse + Python: Stack overflow during debug - not run
I have the following Python code in Eclipse which causes stack overflow when debugging:
v = ogr.Feature(layer.GetLayerDefn())
The method calls are part of the GDAL/OGR library and the Error message ...
19
votes
5answers
10k views
How to debug: w3wp.exe process was terminated due to a stack overflow (works on one machine but not another)
The problem
I have an ASP.NET 4.0 application that crashes with a stack overflow on one computer, but not another. It runs fine on my development environment. When I move the site to the production ...
0
votes
4answers
344 views
how to expand size of Java stack trace to see bottom of stack? (triggering a stack overflow)
In Java, is there any way to view the complete, untruncated stack trace (e.g. by increasing the number of frames recorded), or otherwise get at the bottom of a stack trace? Normally the stack trace ...
2
votes
1answer
2k views
Windows service / A new guard page for the stack cannot be created
I have a windows service that does some intensive work every one minute (actually it is starting a new thread each time in which it syncs to different systems over http). The problem is, that after a ...
1
vote
1answer
311 views
OpenCL stackoverflow. How to solve it?
I'm having a problem when I try to run the reduction program from the OpenCL in Action's sources.
Im using Visual Studio 2008. This is the error:
Unhandled exception in 0x013526a7 in ...
3
votes
12answers
909 views
Can you give an example of stack overflow in C++?
Can you give an example of stack overflow in C++? Other than the recursive case:
void foo() { foo(); }
2
votes
3answers
203 views
How to detect the one function causing a stack overflow quickly in Visual C++?
I have a huge C++ codebase. On a certain set of data there's a stack overflow. If I run the program under Visual Studio debugger I get a call stack 30 unfamiliar functions deep - one (or more) of ...
0
votes
2answers
416 views
Troubleshooting SQL Server Stack Overflow error
How can I effectively troubleshoot this error?
The query processor ran out of stack space during query optimization.
Please simplify the query.
Msg 8621, Level 17, State 2
I've tried to ...
1
vote
1answer
63 views
How can I debug a stack overflow in Ruby 1.9.2?
I have some Ruby code sits on top of Chipmunk and OpenGL C libraries. Something in my program is causing a stack overflow at the C or Ruby level. I'm looking for some strategies to figure out where ...
1
vote
2answers
1k views
Fastest way to break in WinDbg for specific exception? .net 4.0 app
Folks,
Debugging a .net 4.0 app using WinDbg (I'm a beginner to WinDbg). I'm trying to break when I hit a stack overflow:
(NTSTATUS) 0xc00000fd – A new guard page for the stack cannot be created
...
1
vote
2answers
439 views
Help debug a stackoverflow - next steps with repeating stack?
Folks,
I've got a stack overflow in my .net 4.0 app. using WinDbg I've found the following chunk of stack-info repeated 110 times (with different memory addresses of course), which leads me to ...
2
votes
3answers
273 views
C# binary search tree - stack overflow - debug
I am a newbie learning C# after C++. VS2010.
Trying to debug my code, I come across weird empty lines in the "locals" frame.
The debugger just quits after a few seconds of me staring at these empty ...
1
vote
3answers
120 views
How to debug a stackoverflow problem on targets
I want to know how do we proceed to debug a STACKOVERFLOW issue on targets .
I mean what are the steps we should follow to reach a conclusion.
0
votes
2answers
448 views
IIS 6.0 hangs when serving a web-service
Hi guys
I am having issues with one of our web-services. It works fine on my development machine (win XP) whether I host it as a separate application or using cassini from Visual studio.
Once I ...