From 5e8dce4dbfd6f3e3366948ec22b82b952ae2b108 Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Fri, 13 Dec 2013 00:29:16 +0000 Subject: Add new Queue, QueueItem, Queuelist, SBQueue, SBQueueItem classes to represent libdispatch aka Grand Central Dispatch (GCD) queues. Still fleshing out the documentation and testing of these but the overall API is settling down so it's a good time to check it in. llvm-svn: 197190 --- lldb/scripts/Python/interface/SBProcess.i | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lldb/scripts/Python/interface/SBProcess.i') diff --git a/lldb/scripts/Python/interface/SBProcess.i b/lldb/scripts/Python/interface/SBProcess.i index 9798f9a..7abbf91 100644 --- a/lldb/scripts/Python/interface/SBProcess.i +++ b/lldb/scripts/Python/interface/SBProcess.i @@ -180,6 +180,15 @@ public: SetSelectedThreadByIndexID (uint32_t index_id); //------------------------------------------------------------------ + // Queue related functions + //------------------------------------------------------------------ + uint32_t + GetNumQueues (); + + lldb::SBQueue + GetQueueAtIndex (uint32_t index); + + //------------------------------------------------------------------ // Stepping related functions //------------------------------------------------------------------ -- cgit v1.1