File tree Expand file tree Collapse file tree 3 files changed +0
-15
lines changed Expand file tree Collapse file tree 3 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -141,8 +141,6 @@ extern "C" uint32_t g_num_processors;
141
141
142
142
extern VOLATILE (int32_t ) g_fSuspensionPending;
143
143
144
- extern uint32_t g_yieldProcessorScalingFactor;
145
-
146
144
::IGCHandleManager* CreateGCHandleManager ();
147
145
148
146
namespace WKS {
Original file line number Diff line number Diff line change @@ -37,8 +37,6 @@ uint32_t* g_gc_card_table;
37
37
38
38
VOLATILE (int32_t ) g_fSuspensionPending = 0;
39
39
40
- uint32_t g_yieldProcessorScalingFactor = 1 ;
41
-
42
40
#ifdef FEATURE_MANUALLY_MANAGED_CARD_BUNDLES
43
41
uint32_t * g_gc_card_bundle_table;
44
42
#endif
Original file line number Diff line number Diff line change @@ -4563,14 +4563,3 @@ size_t gcard_of (uint8_t* object)
4563
4563
{
4564
4564
return (size_t )(object) / card_size;
4565
4565
}
4566
-
4567
- inline
4568
- void YieldProcessorScalingFactor ()
4569
- {
4570
- unsigned int n = g_yieldProcessorScalingFactor;
4571
- _ASSERTE (n != 0 );
4572
- do
4573
- {
4574
- YieldProcessor ();
4575
- } while (--n != 0 );
4576
- }
You can’t perform that action at this time.
0 commit comments