pub unsafe extern "C" fn aws_priority_queue_pop(
queue: *mut aws_priority_queue,
item: *mut c_void
) -> c_int
Expand description
Copies the element of the highest priority, and removes it from the queue.. Complexity: O(log(n)). If queue is empty, AWS_ERROR_PRIORITY_QUEUE_EMPTY will be raised.