| 228 | } |
| 229 | |
| 230 | [[noreturn]] |
| 231 | void __cdecl _invoke_watson( |
| 232 | wchar_t const* const expression, |
| 233 | wchar_t const* const function_name, |
| 234 | wchar_t const* const file_name, |
| 235 | unsigned int const line_number, |
| 236 | uintptr_t const reserved) |
| 237 | { |
| 238 | UNREFERENCED_PARAMETER(expression); |
| 239 | UNREFERENCED_PARAMETER(function_name); |
| 240 | UNREFERENCED_PARAMETER(file_name); |
| 241 | UNREFERENCED_PARAMETER(line_number); |
| 242 | UNREFERENCED_PARAMETER(reserved); |
| 243 | |
| 244 | KdBreakPoint(); |
| 245 | RaiseException(KMODE_EXCEPTION_NOT_HANDLED); |
| 246 | } |
| 247 | |
| 248 | // For <unordered_set> and <unordered_map> support: |
| 249 | #ifdef _AMD64_ |
nothing calls this directly
no test coverage detected