Remove Exceptions since OS X does not catch them. Instead, it waits for the signal.

This commit is contained in:
Steve Checkoway
2004-09-07 13:44:06 +00:00
parent 1e036b76fd
commit f08a2d00c9
5 changed files with 0 additions and 81 deletions
@@ -385,12 +385,6 @@ typedef struct Frame
void *linkReg;
} *FramePtr;
void GetExceptionBacktraceContext( BacktraceContext *ctx, const ExceptionInformation *exception )
{
ctx->PC = (void *) exception->machineState->PC.lo;
ctx->FramePtr = (void *) exception->registerImage->R1.lo;
}
void GetSignalBacktraceContext( BacktraceContext *ctx, const ucontext_t *uc )
{
ctx->PC = (void *) uc->uc_mcontext->ss.srr0;