mirror of
https://github.com/Kitware/CMake.git
synced 2025-05-10 07:10:32 +08:00

Run the `clang-format.bash` script to update all our C and C++ code to a new style defined by `.clang-format`, now with "east const" enforcement. Use `clang-format` version 18. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit. Issue: #26123
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
|
|
#include "cmDebuggerThreadManager.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cm3p/cppdap/protocol.h>
|
|
#include <cm3p/cppdap/types.h>
|
|
|
|
#include "cmDebuggerThread.h"
|
|
|
|
namespace cmDebugger {
|
|
|
|
std::atomic<int64_t> cmDebuggerThreadManager::NextThreadId(1);
|
|
|
|
std::shared_ptr<cmDebuggerThread> cmDebuggerThreadManager::StartThread(
|
|
std::string const& name)
|
|
{
|
|
std::shared_ptr<cmDebuggerThread> thread =
|
|
std::make_shared<cmDebuggerThread>(
|
|
cmDebuggerThreadManager::NextThreadId.fetch_add(1), name);
|
|
Threads.emplace_back(thread);
|
|
return thread;
|
|
}
|
|
|
|
void cmDebuggerThreadManager::EndThread(
|
|
std::shared_ptr<cmDebuggerThread> const& thread)
|
|
{
|
|
Threads.remove(thread);
|
|
}
|
|
|
|
cm::optional<dap::StackTraceResponse>
|
|
cmDebuggerThreadManager::GetThreadStackTraceResponse(
|
|
dap::StackTraceRequest const& request)
|
|
{
|
|
auto it = find_if(Threads.begin(), Threads.end(),
|
|
[&](std::shared_ptr<cmDebuggerThread> const& t) {
|
|
return t->GetId() == request.threadId;
|
|
});
|
|
|
|
if (it == Threads.end()) {
|
|
return {};
|
|
}
|
|
|
|
return GetStackTraceResponse(*it, request.format);
|
|
}
|
|
|
|
} // namespace cmDebugger
|