WinDbg は、それを認識している場合、例外の名前を既に表示しています。
(15c0.1370): Break instruction exception - code 80000003 (first chance)
次の方法で詳細を取得します.exr -1
。
0:009> .exr -1
ExceptionAddress: 77d5000c (ntdll!DbgBreakPoint)
ExceptionCode: 80000003 (Break instruction exception)
ExceptionFlags: 00000000
NumberParameters: 1
Parameter[0]: 00000000
@rrirower によって提案された NTSTATUS コードを表示することもできます。
0:009> !gle
LastErrorValue: (Win32) 0 (0) - The operation completed successfully.
LastStatusValue: (NTSTATUS) 0 - STATUS_WAIT_0
そして、これらのステータス コードは でデコードできます!error
。Win32、Winsock、NTSTATUS、および NetApi エラーが考慮されます。
0:009> !error 0000071a
Error code: (Win32) 0x71a (1818) - The remote procedure call was cancelled.