summaryrefslogtreecommitdiff
path: root/src/gc/handletable.h
diff options
context:
space:
mode:
authorSean Gillespie <segilles@microsoft.com>2017-06-20 15:24:05 -0700
committerGitHub <noreply@github.com>2017-06-20 15:24:05 -0700
commite7725a6ff986879f8ff2fd9e09ab636545ba7bca (patch)
treebe9fd2ac0a68a6d2545f469a611c23f7a5789702 /src/gc/handletable.h
parentcf63336cbc2597801d62e399be6bdba8938d1034 (diff)
downloadcoreclr-e7725a6ff986879f8ff2fd9e09ab636545ba7bca.tar.gz
coreclr-e7725a6ff986879f8ff2fd9e09ab636545ba7bca.tar.bz2
coreclr-e7725a6ff986879f8ff2fd9e09ab636545ba7bca.zip
[Local GC] Move handle creation/deletion profiler callbacks out of the GC (#12314)
* [Local GC] Move handle creation and handle destruction profiler callbacks out of the GC * Remove dead code * Move some handle-related code out of gcheaputilities.cpp and into gchandleutilities.cpp * Address code review feedback, remove some more dead code and add some style fixes * Refactor handle creation and destruction helpers to go through a common function
Diffstat (limited to 'src/gc/handletable.h')
-rw-r--r--src/gc/handletable.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gc/handletable.h b/src/gc/handletable.h
index ebf8c62c33..aff9f160c9 100644
--- a/src/gc/handletable.h
+++ b/src/gc/handletable.h
@@ -75,12 +75,6 @@ void HndDestroyHandle(HHANDLETABLE hTable, uint32_t uType, OBJECTHAND
void HndDestroyHandleOfUnknownType(HHANDLETABLE hTable, OBJECTHANDLE handle);
/*
- * bulk handle allocation and deallocation
- */
-uint32_t HndCreateHandles(HHANDLETABLE hTable, uint32_t uType, OBJECTHANDLE *pHandles, uint32_t uCount);
-void HndDestroyHandles(HHANDLETABLE hTable, uint32_t uType, const OBJECTHANDLE *pHandles, uint32_t uCount);
-
-/*
* owner data associated with handles
*/
void HndSetHandleExtraInfo(OBJECTHANDLE handle, uint32_t uType, uintptr_t lExtraInfo);