LLDB mainline
HostNativeThreadBase.h
Go to the documentation of this file.
1//===-- HostNativeThreadBase.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_HOSTNATIVETHREADBASE_H
10#define LLDB_HOST_HOSTNATIVETHREADBASE_H
11
12#include "lldb/Utility/Status.h"
13#include "lldb/lldb-defines.h"
14#include "lldb/lldb-types.h"
15
16namespace lldb_private {
17
18#if defined(_WIN32)
19#define THREAD_ROUTINE __stdcall
20#else
21#define THREAD_ROUTINE
22#endif
23
25 friend class ThreadLauncher;
28
29public:
31 explicit HostNativeThreadBase(lldb::thread_t thread);
32 virtual ~HostNativeThreadBase() = default;
33
34 virtual Status Join(lldb::thread_result_t *result) = 0;
35 virtual Status Cancel() = 0;
36 virtual bool IsJoinable() const;
37 virtual void Reset();
38 virtual bool EqualsThread(lldb::thread_t thread) const;
40
43
44protected:
47
49 lldb::thread_result_t m_result = 0; // NOLINT(modernize-use-nullptr)
50};
51}
52
53#endif
#define THREAD_ROUTINE
lldb::thread_result_t GetResult() const
static lldb::thread_result_t THREAD_ROUTINE ThreadCreateTrampoline(lldb::thread_arg_t arg)
virtual Status Join(lldb::thread_result_t *result)=0
virtual bool EqualsThread(lldb::thread_t thread) const
virtual ~HostNativeThreadBase()=default
const HostNativeThreadBase & operator=(const HostNativeThreadBase &)=delete
HostNativeThreadBase(const HostNativeThreadBase &)=delete
An error handling class.
Definition: Status.h:44
#define LLDB_INVALID_HOST_THREAD
Definition: lldb-types.h:69
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
void * thread_arg_t
Definition: lldb-types.h:61
void * thread_result_t
Definition: lldb-types.h:62
pthread_t thread_t
Definition: lldb-types.h:58