summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/assoclocalbyremotebitfield.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/assoclocalbyremotebitfield.c')
-rw-r--r--cpukit/libcsupport/src/assoclocalbyremotebitfield.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/cpukit/libcsupport/src/assoclocalbyremotebitfield.c b/cpukit/libcsupport/src/assoclocalbyremotebitfield.c
new file mode 100644
index 0000000000..177ca62b49
--- /dev/null
+++ b/cpukit/libcsupport/src/assoclocalbyremotebitfield.c
@@ -0,0 +1,34 @@
+/*
+ * assoc.c
+ * rtems assoc routines
+ *
+ * $Id$
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#define INSIDE_ASSOC
+
+#include <rtems.h>
+#include <rtems/assoc.h>
+
+#include <string.h> /* strcat, strcmp */
+
+
+uint32_t rtems_assoc_local_by_remote_bitfield(
+ const rtems_assoc_t *ap,
+ uint32_t remote_value
+)
+{
+ uint32_t b;
+ uint32_t local_value = 0;
+
+ for (b = 1; b; b <<= 1) {
+ if (b & remote_value)
+ local_value |= rtems_assoc_local_by_remote(ap, b);
+ }
+
+ return local_value;
+}