[Lldb-commits] [lldb] [debugserver] Migrate PThreadEvent away from PThreadMutex (NFC) (PR #137554)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Apr 28 10:01:43 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff HEAD~1 HEAD --extensions cpp,h -- lldb/tools/debugserver/source/PThreadEvent.cpp lldb/tools/debugserver/source/PThreadEvent.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/tools/debugserver/source/PThreadEvent.h b/lldb/tools/debugserver/source/PThreadEvent.h
index fc309fad1..9a806c0f0 100644
--- a/lldb/tools/debugserver/source/PThreadEvent.h
+++ b/lldb/tools/debugserver/source/PThreadEvent.h
@@ -14,9 +14,9 @@
#define LLDB_TOOLS_DEBUGSERVER_SOURCE_PTHREADEVENT_H
#include <cstdint>
-#include <mutex>
#include <ctime>
#include <functional>
+#include <mutex>
class PThreadEvent {
public:
``````````
</details>
https://github.com/llvm/llvm-project/pull/137554
More information about the lldb-commits
mailing list