Searched refs:p_msg_q (Results 1 – 4 of 4) sorted by relevance
166 msg_q* p_msg_q = (msg_q*)*msg_q_data; in msg_q_destroy() local168 linked_list_destroy(&p_msg_q->msg_list); in msg_q_destroy()169 pthread_mutex_destroy(&p_msg_q->list_mutex); in msg_q_destroy()170 pthread_cond_destroy(&p_msg_q->list_cond); in msg_q_destroy()172 p_msg_q->unblocked = 0; in msg_q_destroy()199 msg_q* p_msg_q = (msg_q*)msg_q_data; in msg_q_snd() local201 pthread_mutex_lock(&p_msg_q->list_mutex); in msg_q_snd()204 if( p_msg_q->unblocked ) in msg_q_snd()207 pthread_mutex_unlock(&p_msg_q->list_mutex); in msg_q_snd()211 rv = convert_linked_list_err_type(linked_list_add(p_msg_q->msg_list, msg_obj, dealloc)); in msg_q_snd()[all …]