pub unsafe extern "C" fn os_mqueue_put(
arg1: *mut os_mqueue,
arg2: *mut ble_npl_eventq,
arg3: *mut os_mbuf,
) -> c_int
Expand description
Adds a packet (i.e. packet header mbuf) to an mqueue. The event associated with the mqueue gets posted to the specified eventq.
@param mq The mbuf queue to append the mbuf to. @param evq The event queue to post an event to. @param m The mbuf to append to the mbuf queue.
@return 0 on success, non-zero on failure.