diff options
author | Jason Molenda <jmolenda@apple.com> | 2014-03-09 21:17:08 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2014-03-09 21:17:08 +0000 |
commit | 37e9b5ab38208d27d30309a41bc1f0328ccb4afa (patch) | |
tree | c1462c856b8bf010b105e944145173b1c4e5dbb5 /lldb/scripts/Python/interface | |
parent | fe95dc95b5c16997f15d59d216734aecdce0bb44 (diff) | |
download | bcm5719-llvm-37e9b5ab38208d27d30309a41bc1f0328ccb4afa.tar.gz bcm5719-llvm-37e9b5ab38208d27d30309a41bc1f0328ccb4afa.zip |
libBacktraceRecording __introspection_dispatch_queue_get_pending_items is
changing the data it returns; this change accepts either the old format or
the new format. It doesn't yet benefit from the new format's additions -
but I need to get this checked in so we aren't rev-locked.
Also add a missing .i entry for SBQueue::GetNumRunningItems() missing from
the last checkin.
<rdar://problem/16272115>
llvm-svn: 203421
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBQueue.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBQueue.i b/lldb/scripts/Python/interface/SBQueue.i index f3a49b1192d..7f48166f6c2 100644 --- a/lldb/scripts/Python/interface/SBQueue.i +++ b/lldb/scripts/Python/interface/SBQueue.i @@ -48,6 +48,9 @@ public: lldb::SBQueueItem GetPendingItemAtIndex (uint32_t); + uint32_t + GetNumRunningItems (); + }; } // namespace lldb |