aboutsummaryrefslogtreecommitdiff
path: root/lldb/bindings/interface/SBQueueDocstrings.i
blob: c3baf39a299db9d29fc00cf8a8b4b3248e90aad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%feature("docstring",
"Represents a libdispatch queue in the process."
) lldb::SBQueue;

%feature("docstring", "
    Returns an lldb::queue_id_t type unique identifier number for this
    queue that will not be used by any other queue during this process'
    execution.  These ID numbers often start at 1 with the first
    system-created queues and increment from there."
) lldb::SBQueue::GetQueueID;

%feature("docstring", "
    Returns an lldb::QueueKind enumerated value (e.g. eQueueKindUnknown,
    eQueueKindSerial, eQueueKindConcurrent) describing the type of this
    queue."
) lldb::SBQueue::GetKind;