LLDB mainline
HostThread.h
Go to the documentation of this file.
1//===-- HostThread.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_HOST_HOSTTHREAD_H
10#define LLDB_HOST_HOSTTHREAD_H
11
13#include "lldb/Utility/Status.h"
14#include "lldb/lldb-types.h"
15
16#include <memory>
17
18namespace lldb_private {
19
21
22/// \class HostInfo HostInfo.h "lldb/Host/HostThread.h"
23/// A class that represents a thread running inside of a process on the
24/// local machine.
25///
26/// HostThread allows querying and manipulation of threads running on the host
27/// machine.
28///
30public:
31 HostThread();
33
35 Status Cancel();
36 void Reset();
38
39 bool IsJoinable() const;
41 const HostNativeThread &GetNativeThread() const;
43
44 bool EqualsThread(lldb::thread_t thread) const;
45
46 bool HasThread() const;
47
48private:
49 std::shared_ptr<HostNativeThreadBase> m_native_thread;
50};
51}
52
53#endif
Status Join(lldb::thread_result_t *result)
lldb::thread_t Release()
lldb::thread_result_t GetResult() const
std::shared_ptr< HostNativeThreadBase > m_native_thread
Definition HostThread.h:49
bool EqualsThread(lldb::thread_t thread) const
HostNativeThread & GetNativeThread()
An error handling class.
Definition Status.h:118
A class that represents a running process on the host machine.
HostThreadPosix HostNativeThread
void * thread_result_t
Definition lldb-types.h:62
pthread_t thread_t
Definition lldb-types.h:58