summaryrefslogtreecommitdiff
path: root/src/gc/gchandletableimpl.h
diff options
context:
space:
mode:
authorAditya Mandaleeka <adityam@microsoft.com>2017-04-11 18:49:44 -0700
committerAditya Mandaleeka <adityam@microsoft.com>2017-04-11 20:33:26 -0700
commitab43a5fbeccca1e4948dd140592361fe7c3335c3 (patch)
tree5aeeed81d7e1bdacb8e2651b4545e68c65191bed /src/gc/gchandletableimpl.h
parent3e6334b8797731bc24a2b9c69a7b7073a92b66a9 (diff)
downloadcoreclr-ab43a5fbeccca1e4948dd140592361fe7c3335c3.tar.gz
coreclr-ab43a5fbeccca1e4948dd140592361fe7c3335c3.tar.bz2
coreclr-ab43a5fbeccca1e4948dd140592361fe7c3335c3.zip
Rename overloaded "table" to "store" for VM side concept.
Diffstat (limited to 'src/gc/gchandletableimpl.h')
-rw-r--r--src/gc/gchandletableimpl.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gc/gchandletableimpl.h b/src/gc/gchandletableimpl.h
index a45f98395d..af20f52e54 100644
--- a/src/gc/gchandletableimpl.h
+++ b/src/gc/gchandletableimpl.h
@@ -14,25 +14,25 @@ public:
virtual void Shutdown();
- virtual void* GetGlobalHandleTable();
+ virtual void* GetGlobalHandleStore();
- virtual void* GetNewHandleTable(void* context);
+ virtual void* CreateHandleStore(void* context);
virtual void* GetHandleContext(OBJECTHANDLE handle);
- virtual void DestroyHandleTable(void* table);
+ virtual void DestroyHandleStore(void* store);
- virtual void UprootHandleTable(void* table);
+ virtual void UprootHandleStore(void* store);
- virtual bool ContainsHandle(void* table, OBJECTHANDLE handle);
+ virtual bool ContainsHandle(void* store, OBJECTHANDLE handle);
- virtual OBJECTHANDLE CreateHandleOfType(void* table, Object* object, int type);
+ virtual OBJECTHANDLE CreateHandleOfType(void* store, Object* object, int type);
- virtual OBJECTHANDLE CreateHandleOfType(void* table, Object* object, int type, int heapToAffinitizeTo);
+ virtual OBJECTHANDLE CreateHandleOfType(void* store, Object* object, int type, int heapToAffinitizeTo);
- virtual OBJECTHANDLE CreateHandleWithExtraInfo(void* table, Object* object, int type, void* pExtraInfo);
+ virtual OBJECTHANDLE CreateHandleWithExtraInfo(void* store, Object* object, int type, void* pExtraInfo);
- virtual OBJECTHANDLE CreateDependentHandle(void* table, Object* primary, Object* secondary);
+ virtual OBJECTHANDLE CreateDependentHandle(void* store, Object* primary, Object* secondary);
virtual OBJECTHANDLE CreateGlobalHandleOfType(Object* object, int type);