pub unsafe extern "C" fn k_queue_append(
queue: *mut k_queue,
data: *mut c_void,
)
Expand description
@brief Append an element to the end of a queue.
This routine appends a data item to @a queue. A queue data item must be aligned on a word boundary, and the first word of the item is reserved for the kernel’s use.
@funcprops \isr_ok
@param queue Address of the queue. @param data Address of the data item.