remove obsolete check in InterlockedPopEntrySList()

svn path=/trunk/; revision=13710
This commit is contained in:
Thomas Bluemel 2005-02-22 09:35:59 +00:00
parent d2417ffe5a
commit 2ef42901b7

View file

@ -459,11 +459,6 @@ InterlockedPopEntrySList(IN PSLIST_HEADER ListHead)
newslh.Sequence = oldslh.Sequence + 1;
newslh.Depth = oldslh.Depth - 1;
newslh.Next.Next = MmSafeReadPtr(&le->Next);
if(newslh.Next.Next == NULL)
{
/* try again */
continue;
}
} while(ExfInterlockedCompareExchange64(&ListHead->Alignment,
&newslh.Alignment,
&oldslh.Alignment) != oldslh.Alignment);