summaryrefslogtreecommitdiff
path: root/rtl-chain-iterator.c
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2012-04-25 10:12:19 +1000
committerChris Johns <chrisj@rtems.org>2012-04-25 10:12:19 +1000
commit673b40c95705127635af12bda15694fd6ab5a96b (patch)
tree5c243823cf495ba3702773f94b275a442ac218de /rtl-chain-iterator.c
Import the current project to git.
Diffstat (limited to 'rtl-chain-iterator.c')
-rw-r--r--rtl-chain-iterator.c59
1 files changed, 59 insertions, 0 deletions
diff --git a/rtl-chain-iterator.c b/rtl-chain-iterator.c
new file mode 100644
index 0000000..414b4ba
--- /dev/null
+++ b/rtl-chain-iterator.c
@@ -0,0 +1,59 @@
+/*
+ * COPYRIGHT (c) 2010 Chris Johns <chrisj@rtems.org>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+/**
+ * @file
+ *
+ * @ingroup rtems_rtld
+ *
+ * @brief RTEMS Run-Time Link Editor Chain Iterator
+ *
+ * A means of executing an iterator on a chain.
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <rtl-chain-iterator.h>
+
+bool
+rtems_rtl_chain_iterate (rtems_chain_control* chain,
+ rtems_chain_iterator iterator,
+ void* data)
+{
+ rtems_chain_node* node = rtems_chain_first (chain);
+ while (!rtems_chain_is_tail (chain, node))
+ {
+ rtems_chain_node* next_node = rtems_chain_next (node);
+ if (!iterator (node, data))
+ return false;
+ node = next_node;
+ }
+ return true;
+}
+
+/**
+ * Count iterator.
+ */
+static bool
+rtems_rtl_count_iterator (rtems_chain_node* node, void* data)
+{
+ int* count = data;
+ ++(*count);
+ return true;
+}
+
+int
+rtems_rtl_chain_count (rtems_chain_control* chain)
+{
+ int count = 0;
+ rtems_rtl_chain_iterate (chain, rtems_rtl_count_iterator, &count);
+ return count;
+}