Unmapping memory region containing an active critical section |
Application Verifier break message
Unmapping memory region containing an active critical section.
Probable cause
This break is generated if the current thread is calling UnmapViewOfFile on a memory block that contains an active critical section. The application should call DeleteCriticalSection on this critical section before it releases this memory.
kb � to display the current stack trace, that is calling UnmapViewOfFile . The probable culprit is the DLL that calls UnmapViewOfFile.
Information displayed by Application Verifier
Parameter1 - Critical section address. Run !cs �s address to get more information.
Parameter2 - Critical section initialization stack trace. Use dps to dump it if non-NULL.
Parameter3 - Memory block address
Parameter4 - Memory block size
Description - Unmapping memory region containing an active critical section
Additional information
Verifier Stop Code 0213.
Frequency of this error is low.
To debug:
!cs �s parameter1- dump information about this critical section.
dps parameter2 - to identify the code path for the initialization of this critical section.