blob: bb6762829ca6107290074cad33d86bc9718b92da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
//===-- QueueItem.cpp -------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "lldb/Target/Queue.h"
#include "lldb/Target/Process.h"
#include "lldb/Target/QueueItem.h"
#include "lldb/Target/SystemRuntime.h"
using namespace lldb;
using namespace lldb_private;
QueueItem::QueueItem (QueueSP queue_sp) :
m_queue_wp (),
m_kind (eQueueItemKindUnknown),
m_address (),
m_item_that_enqueued_this_ref (LLDB_INVALID_ADDRESS),
m_enqueueing_thread_id (LLDB_INVALID_THREAD_ID),
m_enqueueing_queue_id (LLDB_INVALID_QUEUE_ID),
m_target_queue_id (LLDB_INVALID_QUEUE_ID),
m_stop_id (0),
m_backtrace(),
m_thread_label(),
m_queue_label(),
m_target_queue_label()
{
m_queue_wp = queue_sp;
}
QueueItem::~QueueItem ()
{
}
QueueItemKind
QueueItem::GetKind() const
{
return m_kind;
}
void
QueueItem::SetKind (QueueItemKind item_kind)
{
m_kind = item_kind;
}
Address &
QueueItem::GetAddress ()
{
return m_address;
}
void
QueueItem::SetAddress (Address addr)
{
m_address = addr;
}
ThreadSP
QueueItem::GetExtendedBacktraceThread (ConstString type)
{
ThreadSP return_thread;
QueueSP queue_sp = m_queue_wp.lock();
if (queue_sp)
{
ProcessSP process_sp = queue_sp->GetProcess();
if (process_sp && process_sp->GetSystemRuntime())
{
return_thread = process_sp->GetSystemRuntime()->GetExtendedBacktraceForQueueItem (this->shared_from_this(), type);
}
}
return return_thread;
}
|