Participar en la recuperación de errores
Para participar en la recuperación de errores, un complemento PSHED debe implementar una función de devolución de llamada AttemptRecovery .
En el ejemplo de código siguiente se muestra cómo implementar esta función de devolución de llamada.
//
// 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;
}
}
Un complemento PSHED que participa en la recuperación de errores debe especificar la marca PshedFAErrorRecovery cuando se registra con el sistema operativo.