[Lldb-commits] [PATCH] D128776: Handle a stop when another thread has hit a breakpoint with a failed condition
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 29 01:33:16 PDT 2022
labath added a comment.
(Other than the inline comment, this seems fine to me)
================
Comment at: lldb/test/API/functionalities/breakpoint/two_hits_one_actual/main.cpp:6
+void usleep_helper(useconds_t usec) {
+ usleep(usec); // Break here in the helper
+}
----------------
usleep doesn't exist on windows. Use std::this_thread::sleep_for.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128776/new/
https://reviews.llvm.org/D128776
More information about the lldb-commits
mailing list