LLDB
mainline
llvm-project
lldb
include
lldb
API
SBQueue.h
Go to the documentation of this file.
1
//===-- SBQueue.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_API_SBQUEUE_H
10
#define LLDB_API_SBQUEUE_H
11
12
#include <vector>
13
14
#include "
lldb/API/SBDefines.h
"
15
#include "
lldb/lldb-forward.h
"
16
17
namespace
lldb
{
18
19
class
LLDB_API
SBQueue
{
20
public
:
21
SBQueue
();
22
23
SBQueue
(
const
QueueSP &queue_sp);
24
25
SBQueue
(
const
SBQueue
&rhs);
26
27
const
SBQueue
&operator=(
const
lldb::SBQueue
&rhs);
28
29
~SBQueue
();
30
31
explicit
operator
bool()
const
;
32
33
bool
IsValid()
const
;
34
35
void
Clear();
36
37
lldb::SBProcess
GetProcess();
38
39
lldb::queue_id_t
GetQueueID()
const
;
40
41
const
char
*
GetName
()
const
;
42
43
uint32_t
GetIndexID()
const
;
44
45
uint32_t
GetNumThreads();
46
47
lldb::SBThread
GetThreadAtIndex(
uint32_t
);
48
49
uint32_t
GetNumPendingItems();
50
51
lldb::SBQueueItem
GetPendingItemAtIndex(
uint32_t
);
52
53
uint32_t
GetNumRunningItems();
54
55
lldb::QueueKind
GetKind();
56
57
protected
:
58
friend
class
SBProcess
;
59
friend
class
SBThread
;
60
61
void
SetQueue(
const
lldb::QueueSP &queue_sp);
62
63
private
:
64
std::shared_ptr<lldb_private::QueueImpl>
m_opaque_sp
;
65
};
66
67
}
// namespace lldb
68
69
#endif
// LLDB_API_SBQUEUE_H
SBDefines.h
LLDB_API
#define LLDB_API
Definition:
SBDefines.h:26
GetName
static llvm::StringRef GetName(XcodeSDK::Type type)
Definition:
XcodeSDK.cpp:21
lldb::SBProcess
Definition:
SBProcess.h:23
lldb::SBQueueItem
Definition:
SBQueueItem.h:17
lldb::SBQueue
Definition:
SBQueue.h:19
lldb::SBQueue::m_opaque_sp
std::shared_ptr< lldb_private::QueueImpl > m_opaque_sp
Definition:
SBQueue.h:64
lldb::SBQueue::~SBQueue
~SBQueue()
lldb::SBThread
Definition:
SBThread.h:20
uint32_t
lldb-forward.h
lldb
Definition:
SBAddress.h:15
lldb::QueueKind
QueueKind
Queue type.
Definition:
lldb-enumerations.h:967
lldb::queue_id_t
uint64_t queue_id_t
Definition:
lldb-types.h:87
Generated on Sun Apr 2 2023 04:06:05 for LLDB by
1.9.6