次の方法で共有


エラーからの回復への参加

エラー回復に参加するには、PSHED プラグインで AttemptRecovery コールバック関数を実装する必要があります。

次のコード サンプルは、このコールバック関数を実装する方法を示しています。

//
// 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;
  }
}

エラー回復に参加する PSHED プラグインは、オペレーティング システムに自身を登録するとき、PshedFAErrorRecovery フラグを指定する必要があります。