LLDB mainline
ThreadCollection.h
Go to the documentation of this file.
1//===-- ThreadCollection.h --------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_TARGET_THREADCOLLECTION_H
10#define LLDB_TARGET_THREADCOLLECTION_H
11
12#include <mutex>
13#include <vector>
14
16#include "lldb/lldb-private.h"
17
18namespace lldb_private {
19
21public:
22 typedef std::vector<lldb::ThreadSP> collection;
24 std::recursive_mutex>
26
28
30
31 virtual ~ThreadCollection() = default;
32
33 uint32_t GetSize();
34
35 void AddThread(const lldb::ThreadSP &thread_sp);
36
37 void AddThreadSortedByIndexID(const lldb::ThreadSP &thread_sp);
38
39 void InsertThread(const lldb::ThreadSP &thread_sp, uint32_t idx);
40
41 // Note that "idx" is not the same as the "thread_index". It is a zero based
42 // index to accessing the current threads, whereas "thread_index" is a unique
43 // index assigned
44 lldb::ThreadSP GetThreadAtIndex(uint32_t idx);
45
48 }
49
50 virtual std::recursive_mutex &GetMutex() const { return m_mutex; }
51
52protected:
54 mutable std::recursive_mutex m_mutex;
55};
56
57} // namespace lldb_private
58
59#endif // LLDB_TARGET_THREADCOLLECTION_H
void AddThreadSortedByIndexID(const lldb::ThreadSP &thread_sp)
virtual std::recursive_mutex & GetMutex() const
std::vector< lldb::ThreadSP > collection
lldb::ThreadSP GetThreadAtIndex(uint32_t idx)
std::recursive_mutex m_mutex
void AddThread(const lldb::ThreadSP &thread_sp)
virtual ThreadIterable Threads()
virtual ~ThreadCollection()=default
void InsertThread(const lldb::ThreadSP &thread_sp, uint32_t idx)
LockingAdaptedIterable< collection, lldb::ThreadSP, vector_adapter, std::recursive_mutex > ThreadIterable
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
E vector_adapter(I &iter)
Definition: Iterable.h:21
std::shared_ptr< lldb_private::Thread > ThreadSP
Definition: lldb-forward.h:438