From f264140379ed264333a81193fd9f02244497b91f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jostein=20Kj=C3=B8nigsen?= Date: Mon, 15 Jun 2015 08:17:01 +0200 Subject: Fix stack unwinding for FreeBSD. Fix error in stack unwinding on FreeBSD as discovered by @saper. This closes #1102 and #1113 --- src/pal/src/exception/seh-unwind.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/pal/src/exception/seh-unwind.cpp') diff --git a/src/pal/src/exception/seh-unwind.cpp b/src/pal/src/exception/seh-unwind.cpp index 22742d1f5d..a6435a42f4 100644 --- a/src/pal/src/exception/seh-unwind.cpp +++ b/src/pal/src/exception/seh-unwind.cpp @@ -131,7 +131,7 @@ BOOL PAL_VirtualUnwind(CONTEXT *context, KNONVOLATILE_CONTEXT_POINTERS *contextP int st; unw_context_t unwContext; unw_cursor_t cursor; -#if defined(__APPLE__) +#if defined(__APPLE__) || defined(__FreeBSD__) DWORD64 curPc; #endif @@ -156,8 +156,8 @@ BOOL PAL_VirtualUnwind(CONTEXT *context, KNONVOLATILE_CONTEXT_POINTERS *contextP WinContextToUnwindCursor(context, &cursor); #endif -#if defined(__APPLE__) - // OSX appears to do two different things when unwinding +#if defined(__APPLE__) || defined(__FreeBSD__) + // OSX and FreeBSD appear to do two different things when unwinding // 1: If it reaches where it cannot unwind anymore, say a // managed frame. It wil return 0, but also update the $pc // 2: If it unwinds all the way to _start it will return @@ -177,7 +177,7 @@ BOOL PAL_VirtualUnwind(CONTEXT *context, KNONVOLATILE_CONTEXT_POINTERS *contextP // Update the passed in windows context to reflect the unwind // UnwindContextToWinContext(&cursor, context); -#if defined(__APPLE__) +#if defined(__APPLE__) || defined(__FreeBSD__) if (st == 0 && context->Rip == curPc) { context->Rip = 0; -- cgit v1.2.3