Browse Source

Add list iterators over list elements

Some non-gnu toolchains don't support gnu C extended keyword "typeof", like MDK (if no "gnu" option) and IAR, in this case we can provide list element manipulation macro functions to iterate over the list.
Lynx Zhou 7 years ago
parent
commit
3b9dfc6aed
1 changed files with 26 additions and 0 deletions
  1. 26 0
      include/rtservice.h

+ 26 - 0
include/rtservice.h

@@ -140,6 +140,24 @@ rt_inline unsigned int rt_list_len(const rt_list_t *l)
 #define rt_list_entry(node, type, member) \
 #define rt_list_entry(node, type, member) \
     rt_container_of(node, type, member)
     rt_container_of(node, type, member)
 
 
+/**
+ * rt_list_for_each	-	iterate over a list
+ * @pos:	the rt_list_t * to use as a loop cursor.
+ * @head:	the head for your list.
+ */
+#define rt_list_for_each(pos, head) \
+    for (pos = (head)->next; pos != (head); pos = pos->next)
+
+/**
+ * rt_list_for_each_safe - iterate over a list safe against removal of list entry
+ * @pos:	the rt_list_t * to use as a loop cursor.
+ * @n:		another rt_list_t * to use as temporary storage
+ * @head:	the head for your list.
+ */
+#define rt_list_for_each_safe(pos, n, head) \
+	for (pos = (head)->next, n = pos->next; pos != (head); \
+		pos = n, n = pos->next)
+
 /**
 /**
  * rt_list_for_each_entry  -   iterate over list of given type
  * rt_list_for_each_entry  -   iterate over list of given type
  * @pos:    the type * to use as a loop cursor.
  * @pos:    the type * to use as a loop cursor.
@@ -254,6 +272,14 @@ rt_inline int rt_slist_isempty(rt_slist_t *l)
 #define rt_slist_entry(node, type, member) \
 #define rt_slist_entry(node, type, member) \
     rt_container_of(node, type, member)
     rt_container_of(node, type, member)
 
 
+/**
+ * rt_slist_for_each  -   iterate over a single list
+ * @pos:    the rt_slist_t * to use as a loop cursor.
+ * @head:   the head for your single list.
+ */
+#define rt_slist_for_each(pos, head) \
+    for (pos = (head)->next; &pos->next != (head); pos = pos->next)
+
 /**
 /**
  * rt_slist_for_each_entry  -   iterate over single list of given type
  * rt_slist_for_each_entry  -   iterate over single list of given type
  * @pos:    the type * to use as a loop cursor.
  * @pos:    the type * to use as a loop cursor.