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()
195195 // holding this lock.
196196 IncCantStopCount ();
197197
198- // First do some spinning - copied from file:..\VM\crst.cpp#CrstBase::SpinEnter
198+ // First do some spinning
199199 for (DWORD iter = 0 ; iter < g_SpinConstants.dwRepetitions ; iter++)
200200 {
201201 DWORD i = g_SpinConstants.dwInitialDuration ;
@@ -287,7 +287,7 @@ HRESULT UTSemReadWrite::LockWrite()
287287 // holding this lock.
288288 IncCantStopCount ();
289289
290- // First do some spinning - copied from file:..\VM\crst.cpp#CrstBase::SpinEnter
290+ // First do some spinning
291291 for (DWORD iter = 0 ; iter < g_SpinConstants.dwRepetitions ; iter++)
292292 {
293293 DWORD i = g_SpinConstants.dwInitialDuration ;
Original file line number Diff line number Diff line change @@ -168,8 +168,6 @@ class CrstBase
168168 void Enter (INDEBUG(NoLevelCheckFlag noLevelCheckFlag = CRST_LEVEL_CHECK));
169169 void Leave ();
170170
171- void SpinEnter ();
172-
173171#ifndef DACCESS_COMPILE
174172 DEBUG_NOINLINE static void AcquireLock (CrstBase *c) {
175173 WRAPPER_NO_CONTRACT;
You can’t perform that action at this time.
0 commit comments