Go to the documentation of this file.
65 char *routine =
"make_queue";
91 "unable to allocate memory for the failed packets queue");
111 Q->head = (node_ptr) malloc(
sizeof (
struct node) );
113 if ( Q->head ==
NULL)
116 "unable to allocate memory for the failed packet queue's head");
138 Q->head->next = (node_ptr) malloc(
sizeof (
struct node));
139 if (Q->head->next ==
NULL)
142 "unable to allocate memory for the failed packet queue's tail");
157 Q->tail = Q->head->next;
158 Q->tail->prev = Q->head;
#define MODIS_E_MALLOC_FAILED
FP_QUEUE_t make_queue(void)
void log_fmt_msg(PGSt_SMF_status code, const char *routine, const char *msg_fmt,...)