zturner added inline comments.

================
Comment at: source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp:601-605
@@ -579,5 +600,7 @@
             {
+                // The thread hit a hard-coded breakpoint like an `int 3` or 
`__debugbreak()`.
                 WINLOG_IFALL(WINDOWS_LOG_BREAKPOINTS | WINDOWS_LOG_EXCEPTION,
-                             "Breakpoint site %d is not valid for this thread, 
creating empty stop info.",
-                             site->GetID());
+                                "No breakpoint site matches for this thread. 
__debugbreak()?  "
+                                "Creating stop info with the exception.");
+                // FALLTHROUGH:  We'll treat this as a generic exception 
record in the default case.
             }
----------------
When you do a disassembly, does the arrow point to the int 3 or to the 
instruction after the int 3?

Also what does the output look like when you do a backtrace?


http://reviews.llvm.org/D15834



_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to