summaryrefslogtreecommitdiff
path: root/src/debug/inc/dbgappdomain.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug/inc/dbgappdomain.h')
-rw-r--r--src/debug/inc/dbgappdomain.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/debug/inc/dbgappdomain.h b/src/debug/inc/dbgappdomain.h
index 70504c09ec..91d024be70 100644
--- a/src/debug/inc/dbgappdomain.h
+++ b/src/debug/inc/dbgappdomain.h
@@ -9,10 +9,6 @@
class AppDomain;
-void BeginThreadAffinityHelper();
-void EndThreadAffinityHelper();
-
-
// AppDomainInfo contains information about an AppDomain
// All pointers are for the left side, and we do not own any of the memory
struct AppDomainInfo
@@ -180,8 +176,6 @@ struct AppDomainEnumerationIPCBlock
*************************************************************************/
BOOL Lock()
{
- BeginThreadAffinityHelper();
-
DWORD dwRes = WaitForSingleObject(m_hMutex, 3000);
if (dwRes == WAIT_TIMEOUT)
{
@@ -218,8 +212,6 @@ struct AppDomainEnumerationIPCBlock
// Lock may or may not be valid at this point. Thus Release may fail,
// but we'll just ignore that.
ReleaseMutex(m_hMutex);
- EndThreadAffinityHelper();
-
}
/*************************************************************************