[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
Thu Jun 30 01:29:11 PDT 2022
labath added a comment.
In D128776#3620886 <https://reviews.llvm.org/D128776#3620886>, @jingham wrote:
> Use sleep_for instead of usleep. Man, that API isn't winning any beauty contests!
well.. normally one would write that as `sleep_for(std::chrono:microseconds(47))`, or (if he's into that sort of thing) `using namespace std::chrono_literals; sleep_for(47us);`
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