Tagged Questions

147
votes
17answers
48k views

How do I obtain crash-data from my Android application?

How can I get crash data (stack traces at least) from my Android application? At least when working on my own device being retrieved by cable, but ideally from any instance of my application running ...
80
votes
22answers
34k views

How to generate a stacktrace when my gcc C++ app crashes

When my c++ app crashes I would like to generate a stacktrace. I already asked this but I guess I needed to clarify my needs. My app is being run by many different users and it also runs on Linux, ...
11
votes
9answers
2k views

How to extract debugging information from a crash

If my C++ app crashes on Windows I want to send useful debugging information to our server. On Linux I would use the GNU backtrace() function - is there an equivalent for Windows? Also, is there a ...
3
votes
2answers
569 views

how to obtain a stack trace when WAMP server crashes?

Some times my WAMP server crashes . I get the following error. HTTP has encountered exception and needs to close. Unreferenced Memory. szAppName : httpd.exe szAppVer : 2.2.11.0 szModName : ...
2
votes
3answers
261 views

Help me understanding a stacktrace

I've built an iPhone app. It works fine on the simulator and on my 4 iOS devices that run several iOS4 versions, including an iPhone 4 running iOS 4.3.3 However when I submitted it to the appstore it ...
1
vote
1answer
385 views

Debugging WP7 Crash

my first forray into Stack traces for WP7. This is causing me particular trouble and is popping up from several users of my app. I need a bit of help deciphering this. This is the stack track: ...
1
vote
2answers
305 views

Java Appcrash Problem

when I start my Java-Program, I get this error (using Xuggle-library with Webcam): Problem signature: Problem Event Name: APPCRASH Application Name: java.exe Application Version: ...
1
vote
1answer
206 views

Need help reading the stack traces

I'm getting these stack traces when running my app which crash. I get that it has to do something with "ANR keyDispatchingTimedOut". I'm new in Android development and I need some helping reading the ...
1
vote
4answers
549 views

iPhone Crash stack trace VS Crash report

Just spent some time... on a crash, without understanding it. That's a classic: Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x00000010 Which leads me to a ...
0
votes
2answers
175 views

iOS BugSense stack-trace for App startup crash

I recently enabled BugSense in my App to try and help gather crash reports. I'm seeing a lot of crashes that look like they are happening immediately upon startup of my App (I haven't been able to ...
0
votes
1answer
656 views

How to get a full stacktrace from a crashed mixed mode exe/dll?

I wrote an application in C++/CLR. It uses a native lib/dll. On rare occasions, it crashes insider this native dll. I then get a stacktrace, but only up to the managed part, the inside native part is ...
0
votes
1answer
604 views

Why does StackWalk64 return always true?

I tried to make my program dump and save its stack trace when crashes. I installed my own win32 SE handler with _set_se_translator and tried to dump the stack trace with StackWalk64 and finally throw ...