vppinfra: add pool_foreach_pointer()
[vpp.git] / src / vppinfra / pool.h
index 968614e..9913838 100644 (file)
@@ -568,6 +568,13 @@ do {                                                                       \
                                                (s));                               \
        (i) < (e); (i) = pool_get_next_index ((v), (i)))
 
+/* works only for pool of pointers, e is declared inside macro */
+#define pool_foreach_pointer(e, p)                                            \
+  if (p)                                                                      \
+    for (typeof ((p)[0]) *_t = (p) + pool_get_first_index (p), (e) = *_t;     \
+        _t < vec_end (p);                                                    \
+        _t = (p) + pool_get_next_index (p, _t - (p)), (e) = *_t)
+
 /**
  * @brief Remove all elements from a pool in a safe way
  *