I can make u开发者_运维百科se of gcc\'s backtrace to obtain a stack trace at any given point of a program, but I would like to obtain the trace from whatever frame the stack was in at the time an exce
I have a big C++ code (server for some application). This application is big, and catch a crash per 2 months in average.
I handle SIGSEGV by code: int C() { int *i = NULL; *i = 10; // Crash there } int B() { return C(); } int A() { return B();
I maintain an application that sends me an email when an error occurs in the application. I dump the stack trace into the email, and it seems to work ok. The only thing missing is the values of the va
I have a generic class called Repository. This class has a function that \"calls itself\" by initializing a new instance of the Repository class with a different generic argument. This \"recursion\" c
I\'d like to analyze stack trace from An开发者_开发问答droid NDK. How do I read it on Windows machine, please?
First I wanted the user to login and once login it wont go back to login screen until logout. So i added sharedPrefs. I was able to play around login>mainActivity then exit the app and open the app it
I am getting an Object reference not set to an instance of an object error from a page on my site emailed through to me. When I go to that page, I don\'t get any errors though. Could someone explain w
i\'ve problem with the deploymen开发者_开发百科t of an grails app. i get the following exception:
I am trying to get the full stack trace when within a catch of try..catch. Currently its truncated to include only the current method where the error is.