Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / bindings / interface / SBQueueDocstrings.i
blobfa472d5bed175397ba5b8c808fc6d3df5f62e33f
1 %feature("docstring",
2 "Represents a libdispatch queue in the process."
3 ) lldb::SBQueue;
5 %feature("autodoc", "
6 Returns an lldb::queue_id_t type unique identifier number for this
7 queue that will not be used by any other queue during this process'
8 execution. These ID numbers often start at 1 with the first
9 system-created queues and increment from there."
10 ) lldb::SBQueue::GetQueueID;
12 %feature("autodoc", "
13 Returns an lldb::QueueKind enumerated value (e.g. eQueueKindUnknown,
14 eQueueKindSerial, eQueueKindConcurrent) describing the type of this
15 queue."
16 ) lldb::SBQueue::GetKind;