void
pitem_free(pitem *item)
{
- if (item == NULL)
- return;
-
free(item);
}
pqueue_s *
pqueue_new(void)
{
- pqueue_s *pq = (pqueue_s *)malloc(sizeof(pqueue_s));
-
- if (pq == NULL)
- return NULL;
-
- memset(pq, 0x00, sizeof(pqueue_s));
- return pq;
+ return (pqueue_s *)calloc(1, sizeof(pqueue_s));
}
void
pqueue_free(pqueue_s *pq)
{
- if (pq == NULL)
- return;
-
free(pq);
}
/* we can compare 64-bit value in big-endian encoding
* with memcmp:-) */
int cmp = memcmp(next->priority, item->priority,
- sizeof(item->priority));
- if (cmp > 0) /* next > item */
- {
+ sizeof(item->priority));
+ if (cmp > 0) { /* next > item */
item->next = next;
if (curr == NULL)
pqueue_find(pqueue_s *pq, unsigned char *prio64be)
{
pitem *next;
- pitem *found = NULL;
- if (pq->items == NULL)
- return NULL;
-
- for (next = pq->items; next != NULL; next = next->next) {
+ for (next = pq->items; next != NULL; next = next->next)
if (memcmp(next->priority, prio64be,
- sizeof(next->priority)) == 0) {
- found = next;
- break;
- }
- }
-
- if (!found)
- return NULL;
+ sizeof(next->priority)) == 0)
+ return next;
- return found;
+ return NULL;
}
pitem *
void
pitem_free(pitem *item)
{
- if (item == NULL)
- return;
-
free(item);
}
pqueue_s *
pqueue_new(void)
{
- pqueue_s *pq = (pqueue_s *)malloc(sizeof(pqueue_s));
-
- if (pq == NULL)
- return NULL;
-
- memset(pq, 0x00, sizeof(pqueue_s));
- return pq;
+ return (pqueue_s *)calloc(1, sizeof(pqueue_s));
}
void
pqueue_free(pqueue_s *pq)
{
- if (pq == NULL)
- return;
-
free(pq);
}
/* we can compare 64-bit value in big-endian encoding
* with memcmp:-) */
int cmp = memcmp(next->priority, item->priority,
- sizeof(item->priority));
- if (cmp > 0) /* next > item */
- {
+ sizeof(item->priority));
+ if (cmp > 0) { /* next > item */
item->next = next;
if (curr == NULL)
pqueue_find(pqueue_s *pq, unsigned char *prio64be)
{
pitem *next;
- pitem *found = NULL;
- if (pq->items == NULL)
- return NULL;
-
- for (next = pq->items; next != NULL; next = next->next) {
+ for (next = pq->items; next != NULL; next = next->next)
if (memcmp(next->priority, prio64be,
- sizeof(next->priority)) == 0) {
- found = next;
- break;
- }
- }
-
- if (!found)
- return NULL;
+ sizeof(next->priority)) == 0)
+ return next;
- return found;
+ return NULL;
}
pitem *