summaryrefslogtreecommitdiff
path: root/src/debug/daccess/dacdbiimpllocks.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug/daccess/dacdbiimpllocks.cpp')
-rw-r--r--src/debug/daccess/dacdbiimpllocks.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/debug/daccess/dacdbiimpllocks.cpp b/src/debug/daccess/dacdbiimpllocks.cpp
new file mode 100644
index 0000000000..4f92548c29
--- /dev/null
+++ b/src/debug/daccess/dacdbiimpllocks.cpp
@@ -0,0 +1,44 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+//*****************************************************************************
+// File: DacDbiImplLocks.cpp
+//
+
+//
+// Implement DAC/DBI interface for testing our ability to detect when the LS
+// holds a lock that we encounter while executing in the DAC.
+//
+//*****************************************************************************
+
+#include "stdafx.h"
+#include "dacdbiinterface.h"
+#include "holder.h"
+#include "switches.h"
+#include "dacdbiimpl.h"
+
+// ============================================================================
+// Functions to test data safety. In these functions we determine whether a lock
+// is held in a code path we need to execute for inspection. If so, we throw an
+// exception.
+// ============================================================================
+
+#ifdef TEST_DATA_CONSISTENCY
+#include "crst.h"
+
+void DacDbiInterfaceImpl::TestCrst(VMPTR_Crst vmCrst)
+{
+ DD_ENTER_MAY_THROW;
+
+ DebugTryCrst(vmCrst.GetDacPtr());
+}
+
+void DacDbiInterfaceImpl::TestRWLock(VMPTR_SimpleRWLock vmRWLock)
+{
+ DD_ENTER_MAY_THROW;
+
+ DebugTryRWLock(vmRWLock.GetDacPtr());
+}
+#endif
+