summaryrefslogtreecommitdiff
path: root/src/vm/excep.h
diff options
context:
space:
mode:
authordanmosemsft <danmose@microsoft.com>2017-02-10 21:53:12 -0800
committerdanmosemsft <danmose@microsoft.com>2017-02-10 21:53:54 -0800
commitb0dab0d6de90a38dfbf0d6b2039a7b8f5269d802 (patch)
treeb34dd8b5235af7703faf31e847148b21c9b325bb /src/vm/excep.h
parent52009b8919ba55690f21cdc8f04e012a53eb8ef4 (diff)
downloadcoreclr-b0dab0d6de90a38dfbf0d6b2039a7b8f5269d802.tar.gz
coreclr-b0dab0d6de90a38dfbf0d6b2039a7b8f5269d802.tar.bz2
coreclr-b0dab0d6de90a38dfbf0d6b2039a7b8f5269d802.zip
Remove always defined FEATURE_CORRUPTING_EXCEPTIONS
Diffstat (limited to 'src/vm/excep.h')
-rw-r--r--src/vm/excep.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/vm/excep.h b/src/vm/excep.h
index 6057c551a5..5818de709a 100644
--- a/src/vm/excep.h
+++ b/src/vm/excep.h
@@ -268,9 +268,7 @@ VOID DECLSPEC_NORETURN RealCOMPlusThrowNonLocalized(RuntimeExceptionKind reKind,
//==========================================================================
VOID DECLSPEC_NORETURN RealCOMPlusThrow(OBJECTREF throwable
-#ifdef FEATURE_CORRUPTING_EXCEPTIONS
, CorruptionSeverity severity = NotCorrupting
-#endif // FEATURE_CORRUPTING_EXCEPTIONS
);
//==========================================================================
@@ -816,7 +814,6 @@ LONG ReflectionInvocationExceptionFilter(
EXCEPTION_POINTERS *pExceptionInfo, // the pExceptionInfo passed to a filter function.
PVOID pParam);
-#ifdef FEATURE_CORRUPTING_EXCEPTIONS
// -----------------------------------------------------------------------
// Support for Corrupted State Exceptions
// -----------------------------------------------------------------------
@@ -852,7 +849,6 @@ public:
void static ResetLastActiveCorruptionSeverityPostCatchHandler(Thread *pThread);
};
-#endif // FEATURE_CORRUPTING_EXCEPTIONS
#ifndef DACCESS_COMPILE
// Switches to the previous AppDomain on the thread. See implementation for detailed comments.
@@ -907,16 +903,12 @@ private:
void static DeliverNotificationInternal(ExceptionNotificationHandlerType notificationType,
OBJECTREF *pThrowable
-#ifdef FEATURE_CORRUPTING_EXCEPTIONS
, CorruptionSeverity severity
-#endif // FEATURE_CORRUPTING_EXCEPTIONS
);
void static InvokeNotificationDelegate(ExceptionNotificationHandlerType notificationType, OBJECTREF *pDelegate, OBJECTREF *pEventArgs,
OBJECTREF *pAppDomain
-#ifdef FEATURE_CORRUPTING_EXCEPTIONS
, CorruptionSeverity severity
-#endif // FEATURE_CORRUPTING_EXCEPTIONS
);
public:
@@ -924,14 +916,10 @@ public:
void static DeliverNotification(ExceptionNotificationHandlerType notificationType,
OBJECTREF *pThrowable
-#ifdef FEATURE_CORRUPTING_EXCEPTIONS
, CorruptionSeverity severity
-#endif // FEATURE_CORRUPTING_EXCEPTIONS
);
-#ifdef FEATURE_CORRUPTING_EXCEPTIONS
BOOL static CanDelegateBeInvokedForException(OBJECTREF *pDelegate, CorruptionSeverity severity);
-#endif // FEATURE_CORRUPTING_EXCEPTIONS
#endif // FEATURE_EXCEPTION_NOTIFICATIONS
public: