Sep 24, 2002 #1 rotis23 Programmer Aug 29, 2002 121 GB hello, i have a signal handler that handles SIGSEGV signals. is there a way to get more information from the signal - i.e. a verbose error message. TIA, rotis23
hello, i have a signal handler that handles SIGSEGV signals. is there a way to get more information from the signal - i.e. a verbose error message. TIA, rotis23
Sep 24, 2002 #2 xwb Programmer Jul 11, 2002 6,828 GB Not really, but if you implement a trace facility in your code, you may be able to print out a sort of stack trace. Alternatively, have a look at the code in http://www.andreasen.org/LeakTracer/, there is something in the code which does a stack trace but that is only on Linux. You may have to modify it for other operating systems. Upvote 0 Downvote
Not really, but if you implement a trace facility in your code, you may be able to print out a sort of stack trace. Alternatively, have a look at the code in http://www.andreasen.org/LeakTracer/, there is something in the code which does a stack trace but that is only on Linux. You may have to modify it for other operating systems.