summaryrefslogtreecommitdiff
path: root/src/pal/src/exception/seh.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/src/exception/seh.cpp')
-rw-r--r--src/pal/src/exception/seh.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/pal/src/exception/seh.cpp b/src/pal/src/exception/seh.cpp
index 56751cefff..7d9ff08bc0 100644
--- a/src/pal/src/exception/seh.cpp
+++ b/src/pal/src/exception/seh.cpp
@@ -58,16 +58,6 @@ const UINT RESERVED_SEH_BIT = 0x800000;
PHARDWARE_EXCEPTION_HANDLER g_hardwareExceptionHandler = NULL;
-/* Internal function declarations *********************************************/
-
-BOOL SEHInitializeConsole();
-
-#if !HAVE_MACH_EXCEPTIONS
-PAL_ERROR
-StartExternalSignalHandlerThread(
- CPalThread *pthr);
-#endif // !HAVE_MACH_EXCEPTIONS
-
/* Internal function definitions **********************************************/
/*++
@@ -89,13 +79,6 @@ SEHInitialize (CPalThread *pthrCurrent, DWORD flags)
{
BOOL bRet = FALSE;
- if (!SEHInitializeConsole())
- {
- ERROR("SEHInitializeConsole failed!\n");
- SEHCleanup();
- goto SEHInitializeExit;
- }
-
#if !HAVE_MACH_EXCEPTIONS
if (!SEHInitializeSignals())
{
@@ -103,17 +86,6 @@ SEHInitialize (CPalThread *pthrCurrent, DWORD flags)
SEHCleanup();
goto SEHInitializeExit;
}
-
- if (flags & PAL_INITIALIZE_SIGNAL_THREAD)
- {
- PAL_ERROR palError = StartExternalSignalHandlerThread(pthrCurrent);
- if (NO_ERROR != palError)
- {
- ERROR("StartExternalSignalHandlerThread returned %d\n", palError);
- SEHCleanup();
- goto SEHInitializeExit;
- }
- }
#endif
bRet = TRUE;