zephyr::raw

Function k_queue_peek_tail

Source
pub unsafe extern "C" fn k_queue_peek_tail(
    queue: *mut k_queue,
) -> *mut c_void
Expand description

@brief Peek element at the tail of queue.

Return element from the tail of queue without removing it.

@param queue Address of the queue.

@return Tail element, or NULL if queue is empty.