Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 148 of file pool.c.
Referenced by MiAllocatePoolPages(), and MiFreePoolPages().
{ PVOID PoolFlink, PoolBlink; /* Make the list accessible */ MiProtectedPoolUnProtectLinks(ListHead, &PoolFlink, &PoolBlink); /* Now insert in the right position */ Critical ? InsertHeadList(ListHead, Entry) : InsertTailList(ListHead, Entry); /* And reprotect the pages containing the free links */ MiProtectedPoolProtectLinks(PoolFlink, PoolBlink); }