// ntddk.h
SILO_MONITOR_TERMINATE_CALLBACK SiloMonitorTerminateCallback;
VOID SiloMonitorTerminateCallback(
[in] PESILO Silo
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
This callback is invoked when a silo is terminated.
Silo [in]The silo to be terminated.
The expected behavior is that the component will drop any outstanding silo references. A driver may no longer operate within the namespace of a silo (via PsAttachSiloToCurrentThread) once it has returned from this function.