[Lldb-commits] [PATCH] D119797: Fix race condition when launching and attaching.

jeffrey tan via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Feb 15 12:14:07 PST 2022


yinghuitan added inline comments.


================
Comment at: lldb/tools/lldb-vscode/VSCode.cpp:545
+  }
+  const useconds_t usleep_interval = 250 * 10000; // 250 ms internal
+  const useconds_t count = (seconds * 1000 * 1000)/usleep_interval;
----------------
Is this a typo? It should be 1000 instead of 10000, right?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D119797/new/

https://reviews.llvm.org/D119797



More information about the lldb-commits mailing list