blob: 3b54459f15a1e726494404ebfd0567045618fe39 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
By Omair Majid. Obtained from Alpine Linux.
Notably, Dotnet-9 already has these.
-mi
--- src/runtime/src/coreclr/vm/comreflectioncache.hpp 2024-05-28 12:53:38.000000000 -0400
+++ src/runtime/src/coreclr/vm/comreflectioncache.hpp 2025-04-28 21:59:11.041285000 -0400
@@ -27,4 +27,5 @@
void Init();
+#ifndef DACCESS_COMPILE
BOOL GetFromCache(Element *pElement, CacheType& rv)
{
@@ -103,4 +104,5 @@
this->LeaveWrite();
}
+#endif // !ACCESS_COMPILE
private:
@@ -142,4 +144,5 @@
}
+#ifndef DACCESS_COMPILE
void AdjustStamp(BOOL hasWriterLock)
{
@@ -171,4 +174,5 @@
this->LeaveWrite();
}
+#endif // !ACCESS_COMPILE
void UpdateHashTable(SIZE_T hash, int slot)
|