Participando da recuperação de erros
Para participar da recuperação de erros, um plug-in PSHED deve implementar uma função de retorno de chamada AttemptRecovery .
O exemplo de código a seguir mostra como implementar essa função de retorno de chamada.
//
// The PSHED plug-in's AttemptRecovery callback function
//
NTSTATUS
AttemptRecovery(
IN OUT PVOID PluginContext,
IN ULONG BufferLength,
IN PWHEA_ERROR_RECORD ErrorRecord
)
{
// Check if the error condition was not corrected by the
// operating system or by the PSHED.
if (ErrorRecord->Header.Severity != WheaErrSevCorrected)
{
// Attempt to correct the error condition.
...
// If not successful, return failure status
if (...)
{
return STATUS_UNSUCCESSFUL;
}
}
// Perform any additional operations that are required
// to fully recover from the error condition.
...
// If successful, return success status
if (...)
{
return STATUS_SUCCESS;
}
// Failed to fully recover from the error condition
else
{
return STATUS_UNSUCCESSFUL;
}
}
Um plug-in PSHED que participa da recuperação de erro deve especificar o sinalizador PshedFAErrorRecovery quando ele se registra no sistema operacional.