summaryrefslogtreecommitdiff
path: root/src/gc/gchandletableimpl.h
diff options
context:
space:
mode:
authorSean Gillespie <segilles@microsoft.com>2017-05-17 15:41:34 -0700
committerSean Gillespie <segilles@microsoft.com>2017-06-01 10:19:59 -0700
commit0f66b465dbe7774ff7514d4f2e160f0616b4085a (patch)
tree401a23b43306f18fdd772f6561a12b135ee3e4e9 /src/gc/gchandletableimpl.h
parent5529df988f80e7fe67ec46f9f6cbd169fdf7edd5 (diff)
downloadcoreclr-0f66b465dbe7774ff7514d4f2e160f0616b4085a.tar.gz
coreclr-0f66b465dbe7774ff7514d4f2e160f0616b4085a.tar.bz2
coreclr-0f66b465dbe7774ff7514d4f2e160f0616b4085a.zip
[Local GC] Fix some handle table interface violations in COMDependentHandle (#11358)
Diffstat (limited to 'src/gc/gchandletableimpl.h')
-rw-r--r--src/gc/gchandletableimpl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gc/gchandletableimpl.h b/src/gc/gchandletableimpl.h
index 01c1c130ed..a0a03ae3cb 100644
--- a/src/gc/gchandletableimpl.h
+++ b/src/gc/gchandletableimpl.h
@@ -59,6 +59,10 @@ public:
virtual bool StoreObjectInHandleIfNull(OBJECTHANDLE handle, Object* object);
+ virtual void SetDependentHandleSecondary(OBJECTHANDLE handle, Object* object);
+
+ virtual Object* GetDependentHandleSecondary(OBJECTHANDLE handle);
+
virtual Object* InterlockedCompareExchangeObjectInHandle(OBJECTHANDLE handle, Object* object, Object* comparandObject);
};