2
votes
3answers
43 views
Is it possible to extract some structured information from the Exception.StackTrace?
I was wondering if it's possible to convert the string StackTrace in the exception to a more structured data object?
Or is there a method that can get me this information while I …
0
votes
2answers
28 views
XCode 3.2.1 and Instruments: Useless Stack Trace
I've reached the stage where it's time to start tracking down memory leaks and, to my dismay, Instruments is giving me very little to go on (other than the fact that I definitely h …
4
votes
4answers
147 views
GetStackTrace in Delphi 7?
Using Delphi 7, how can I get a string representing the stack-trace from an Exception?
try
SomethingDodgy();
except
on E:Exception do begin
// print stack trace
Log.Wr …
1
vote
7answers
114 views
how to see stacktrace of.net application
Hi,
I have a .net Windows application in the production that has no access to Visual Studio(standard edition), and the only thing they can install is the express edition, which d …
0
votes
1answer
34 views
StackTrace filename unknown
Something strange is happening in my code where I'm using a StackTrace. It's almost as if the debug info is not being loaded... but I'm running this on the DEBUG build.The .pdb fi …
3
votes
2answers
77 views
Is DbgHelp.dll built-in to Windows? Can I rely on it being there?
I use Jochen Kalmbach's StackWalker class from CodeProject, to produce a stacktrace when an exception occurs in my DLL.
It relies on DbgHelp.dll
Is DbgHelp.dll built-in to Windo …
1
vote
4answers
116 views
Help interpret this stack trace
I know that it fails at strcmp. I've provided operator< below, which calls strcmp.
On line #1 there's the value @0xbfffeeac. What does the @ mean?
#0 0x00212bd8 in strcmp () …
0
votes
1answer
43 views
Linenumber for Exception thrown in runtime-compiled DotNET code
Not quite the same as this thread, but pretty close.
My program allows people to enter some VB or C# code which gets compiled, loaded and executed at runtime. My CompilerParams ar …
3
votes
2answers
102 views
What does __forwarding__ in the stack trace mean?
(gdb) bt
#0 0x302ac924 in ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ ()
#1 0x92077e3b in objc_exception_throw ()
#2 0x302d6ffb in -[NSObject doesNotRecognizeSelector:] ()
#3 0 …
0
votes
3answers
85 views
Are there any function level debugging/logging tools for Java?
I'm sorry if the title is confusing but I couldn't think of anything similar to call it. What I'm looking for is if there is any sort of tool (or eclipse plugin, etc) that will log …
4
votes
2answers
175 views
Getting a longer stacktrace from FastMM?
When FastMM logs a memory leak it includes a stacktrace going back 9 calls. Problem is that the stacktrace is too general to locate the problem easily. The last function call in th …
1
vote
1answer
12 views
How can I get the stack trace in Specman?
Is there any way to get the stack trace in Specman? I patched the functions that force signals to tell me when signals are forced. I want to be able to tell where the forcing ori …
0
votes
6answers
257 views
Print PHP Call Stack
I'm looking for a way to print the call stack in PHP.
Bonus points if the function flushes the IO buffer.
19
votes
10answers
5k views
Getting stack trace from a running Python application
I have this Python application that gets stuck from time to time and I can't find out where.
Is there any way to signal Python interpreter to show you the exact code that he's run …
0
votes
0answers
54 views
What is AcroRd32 doing in explorer.exe? [closed]
At rand explorer will launch a thread which eats 50% of cpu.
I've captured this stacktrace:
Why is Acrobat PDF Reader reading my documents in the back? It seems like explorer i …
