Home | History | Annotate | Download | only in utils

Lines Matching refs:tmp_msg_q

100    msg_q* tmp_msg_q;
101 tmp_msg_q = (msg_q*)calloc(1, sizeof(msg_q));
102 if( tmp_msg_q == NULL )
108 if( linked_list_init(&tmp_msg_q->msg_list) != 0 )
111 free(tmp_msg_q);
115 if( pthread_mutex_init(&tmp_msg_q->list_mutex, NULL) != 0 )
118 linked_list_destroy(&tmp_msg_q->msg_list);
119 free(tmp_msg_q);
123 if( pthread_cond_init(&tmp_msg_q->list_cond, NULL) != 0 )
126 linked_list_destroy(&tmp_msg_q->msg_list);
127 pthread_mutex_destroy(&tmp_msg_q->list_mutex);
128 free(tmp_msg_q);
132 tmp_msg_q->unblocked = 0;
134 *msg_q_data = tmp_msg_q;