From 42ec1388d7206cefce62012547a89807a68dc321 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Wed, 26 May 2021 10:48:29 +0200 Subject: [PATCH] [NTOS:IO] Break on IoRaiseInformationalHardError This one will eventually be reverted. For now, this will help debugging CORE-17587 --- ntoskrnl/io/iomgr/error.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ntoskrnl/io/iomgr/error.c b/ntoskrnl/io/iomgr/error.c index 312b29f942a..7f33cac131d 100644 --- a/ntoskrnl/io/iomgr/error.c +++ b/ntoskrnl/io/iomgr/error.c @@ -712,6 +712,9 @@ IoRaiseInformationalHardError(IN NTSTATUS ErrorStatus, IN PKTHREAD Thread) { DPRINT1("IoRaiseInformationalHardError: %lx, '%wZ'\n", ErrorStatus, String); +#if DBG + __debugbreak(); /* CORE-17587 */ +#endif return FALSE; }