diff options
author | Jason Molenda <jmolenda@apple.com> | 2014-02-05 05:44:54 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2014-02-05 05:44:54 +0000 |
commit | 2fd83355a837da553efe170439c054d3c70a68ee (patch) | |
tree | 40c46e628fc4560d92a166e9abfc14c0b289371e /lldb/source/API/SBQueueItem.cpp | |
parent | 7ca1d180559f3f5ceef45387cfeaa70a82280602 (diff) | |
download | bcm5719-llvm-2fd83355a837da553efe170439c054d3c70a68ee.tar.gz bcm5719-llvm-2fd83355a837da553efe170439c054d3c70a68ee.zip |
Change the Mac OS X SystemRuntime plugin from using the placeholder
libldi library to collect extended backtrace information; switch
to the libBacktraceRecording library and its APIs. Complete the
work of adding QueueItems to Queues and allow for the QueueItems
to be interrogated about their extended backtraces in turn.
There's still cleanup and documentation to do on this code but the
code is functional and I it's a good time to get the work-in-progress
checked in.
<rdar://problem/15314027>
llvm-svn: 200822
Diffstat (limited to 'lldb/source/API/SBQueueItem.cpp')
-rw-r--r-- | lldb/source/API/SBQueueItem.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/API/SBQueueItem.cpp b/lldb/source/API/SBQueueItem.cpp index b68c40b3e02..481d51e5542 100644 --- a/lldb/source/API/SBQueueItem.cpp +++ b/lldb/source/API/SBQueueItem.cpp @@ -15,6 +15,7 @@ #include "lldb/API/SBThread.h" #include "lldb/Core/Address.h" #include "lldb/Target/QueueItem.h" +#include "lldb/Target/Thread.h" using namespace lldb; using namespace lldb_private; |