xref: /freebsd/contrib/llvm-project/lldb/bindings/interface/SBQueueDocstrings.i (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
1 %feature("docstring",
2 "Represents a libdispatch queue in the process."
3 ) lldb::SBQueue;
4 
5 %feature("docstring", "
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;
11 
12 %feature("docstring", "
13     Returns an lldb::QueueKind enumerated value (e.g. eQueueKindUnknown,
14     eQueueKindSerial, eQueueKindConcurrent) describing the type of this
15     queue."
16 ) lldb::SBQueue::GetKind;
17