File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ HRESULT UTSemReadWrite::LockRead()
195
195
// holding this lock.
196
196
IncCantStopCount ();
197
197
198
- // First do some spinning - copied from file:..\VM\crst.cpp#CrstBase::SpinEnter
198
+ // First do some spinning
199
199
for (DWORD iter = 0 ; iter < g_SpinConstants.dwRepetitions ; iter++)
200
200
{
201
201
DWORD i = g_SpinConstants.dwInitialDuration ;
@@ -287,7 +287,7 @@ HRESULT UTSemReadWrite::LockWrite()
287
287
// holding this lock.
288
288
IncCantStopCount ();
289
289
290
- // First do some spinning - copied from file:..\VM\crst.cpp#CrstBase::SpinEnter
290
+ // First do some spinning
291
291
for (DWORD iter = 0 ; iter < g_SpinConstants.dwRepetitions ; iter++)
292
292
{
293
293
DWORD i = g_SpinConstants.dwInitialDuration ;
Original file line number Diff line number Diff line change @@ -168,8 +168,6 @@ class CrstBase
168
168
void Enter (INDEBUG(NoLevelCheckFlag noLevelCheckFlag = CRST_LEVEL_CHECK));
169
169
void Leave ();
170
170
171
- void SpinEnter ();
172
-
173
171
#ifndef DACCESS_COMPILE
174
172
DEBUG_NOINLINE static void AcquireLock (CrstBase *c) {
175
173
WRAPPER_NO_CONTRACT;
You can’t perform that action at this time.
0 commit comments