summaryrefslogtreecommitdiff
path: root/src/debug/inc
diff options
context:
space:
mode:
authorJiyoung Yun <jy910.yun@samsung.com>2017-04-13 14:17:19 +0900
committerJiyoung Yun <jy910.yun@samsung.com>2017-04-13 14:17:19 +0900
commita56e30c8d33048216567753d9d3fefc2152af8ac (patch)
tree7e5d979695fc4a431740982eb1cfecc2898b23a5 /src/debug/inc
parent4b11dc566a5bbfa1378d6266525c281b028abcc8 (diff)
downloadcoreclr-a56e30c8d33048216567753d9d3fefc2152af8ac.tar.gz
coreclr-a56e30c8d33048216567753d9d3fefc2152af8ac.tar.bz2
coreclr-a56e30c8d33048216567753d9d3fefc2152af8ac.zip
Imported Upstream version 2.0.0.11353upstream/2.0.0.11353
Diffstat (limited to 'src/debug/inc')
-rw-r--r--src/debug/inc/dacdbiinterface.h3
-rw-r--r--src/debug/inc/dbgappdomain.h8
2 files changed, 0 insertions, 11 deletions
diff --git a/src/debug/inc/dacdbiinterface.h b/src/debug/inc/dacdbiinterface.h
index 569ccbaca7..4077ad426a 100644
--- a/src/debug/inc/dacdbiinterface.h
+++ b/src/debug/inc/dacdbiinterface.h
@@ -979,9 +979,6 @@ public:
// V2 Attach would provide faked up CreateConnection, ChangeConnection events on attach.
// This enumeration ability allows V3 to emulate that behavior.
//
-#ifdef FEATURE_INCLUDE_ALL_INTERFACES
- virtual void EnumerateConnections(FP_CONNECTION_CALLBACK fpCallback, CALLBACK_DATA pUserData) = 0;
-#endif //FEATURE_INCLUDE_ALL_INTERFACES
//
// Enumerate all threads in the target.
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();
-
}
/*************************************************************************