Skip to content

Commit bdeb6aa

Browse files
committed
Implement 'q_free' function
Use the Linux Kernel API to free a queue storage. Change-Id: Ife8b54dc81e318ff40569c21ff8276d941e02c4d
1 parent df42071 commit bdeb6aa

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

queue.c

+12-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,18 @@ struct list_head *q_new()
2121
}
2222

2323
/* Free all storage used by queue */
24-
void q_free(struct list_head *head) {}
24+
void q_free(struct list_head *head)
25+
{
26+
if (!head)
27+
return;
28+
29+
struct list_head *current, *safe;
30+
list_for_each_safe (current, safe, head) {
31+
element_t *release_pos = list_entry(current, element_t, list);
32+
q_release_element(release_pos);
33+
}
34+
free(head);
35+
}
2536

2637
/* Insert an element at head of queue */
2738
bool q_insert_head(struct list_head *head, char *s)

0 commit comments

Comments
 (0)