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/scripts/Python/interface/SBQueue.i | |
parent | 7ca1d180559f3f5ceef45387cfeaa70a82280602 (diff) | |
download | llvm-2fd83355a837da553efe170439c054d3c70a68ee.zip llvm-2fd83355a837da553efe170439c054d3c70a68ee.tar.gz llvm-2fd83355a837da553efe170439c054d3c70a68ee.tar.bz2 |
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/scripts/Python/interface/SBQueue.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBQueue.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/scripts/Python/interface/SBQueue.i b/lldb/scripts/Python/interface/SBQueue.i index 09dbc19..f3a49b1 100644 --- a/lldb/scripts/Python/interface/SBQueue.i +++ b/lldb/scripts/Python/interface/SBQueue.i @@ -43,10 +43,10 @@ public: GetThreadAtIndex (uint32_t); uint32_t - GetNumItems (); + GetNumPendingItems (); lldb::SBQueueItem - GetItemAtIndex (uint32_t); + GetPendingItemAtIndex (uint32_t); }; |