17 lines · plain
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 this7 queue that will not be used by any other queue during this process'8 execution. These ID numbers often start at 1 with the first9 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 this15 queue."16) lldb::SBQueue::GetKind;17