From fda503748d0ac21338e280ced1dca096d94f6899 Mon Sep 17 00:00:00 2001 From: David Schulz Date: Thu, 14 Mar 2013 10:55:40 +0100 Subject: [PATCH] Debugger: CDB: Don't add a task for the wow64 exception. Task-number: QTCREATORBUG-8886 Change-Id: Idf08562c58e1f02b09ef6ff7a9fb899f1516f9ae Reviewed-by: Friedemann Kleint --- src/plugins/debugger/cdb/cdbengine.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp index 0becdc3de7..16f653b937 100644 --- a/src/plugins/debugger/cdb/cdbengine.cpp +++ b/src/plugins/debugger/cdb/cdbengine.cpp @@ -2410,6 +2410,9 @@ void CdbEngine::handleExtensionMessage(char t, int token, const QByteArray &what GdbMi gdbmi; gdbmi.fromString(message); exception.fromGdbMI(gdbmi); + // Don't show the Win32 x86 emulation subsystem breakpoint hit exception. + if (exception.exceptionCode == winExceptionWX86Breakpoint) + return; const QString message = exception.toString(true); showStatusMessage(message); // Report C++ exception in application output as well. -- GitLab