例外コード c0000374 が発生したときにSetUnhandledExceptionFilterに渡した関数が呼び出されないという問題が発生しました。ただし、例外コード c0000005 で問題なく動作します。次に、代わりにAddVectoredExceptionHandlerを使用しようとしましたが、問題はなく、ハンドラー関数が正しく呼び出されました。
APIのバグですか?どこでも SetUnhandledExceptionFilter の代わりに AddVectoredExceptionHandler を使用できますか?
両方の機能は正しく動作します
// Exception code c0000005
int* p1 = NULL;
*p1 = 99;
AddVectoredExceptionHandler のみがこの例外をキャプチャできます。(ランタイム ライブラリに依存しないことを証明するために、手動で例外を発生させましたが、結果は同じです。)
// Exception code c0000374
RaiseException(0xc0000374, 0, 0, NULL);
テストプログラム。
#include <tchar.h>
#include <fstream>
#include <Windows.h>
LONG WINAPI VectoredExceptionHandler(PEXCEPTION_POINTERS pExceptionInfo)
{
std::ofstream f;
f.open("VectoredExceptionHandler.txt", std::ios::out | std::ios::trunc);
f << std::hex << pExceptionInfo->ExceptionRecord->ExceptionCode << std::endl;
f.close();
return EXCEPTION_CONTINUE_SEARCH;
}
LONG WINAPI TopLevelExceptionHandler(PEXCEPTION_POINTERS pExceptionInfo)
{
std::ofstream f;
f.open("TopLevelExceptionHandler.txt", std::ios::out | std::ios::trunc);
f << std::hex << pExceptionInfo->ExceptionRecord->ExceptionCode << std::endl;
f.close();
return EXCEPTION_CONTINUE_SEARCH;
}
int _tmain(int argc, _TCHAR* argv[])
{
AddVectoredExceptionHandler(1, VectoredExceptionHandler);
SetUnhandledExceptionFilter(TopLevelExceptionHandler);
// Exception code c0000374
RaiseException(0xc0000374, 0, 0, NULL);
// Exception code c0000005
// int* p1 = NULL;
// *p1 = 99;
return 0;
}