/** * @file * * @brief RTEMS Associate Name by Local Bitfield * @ingroup Associativity */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #define INSIDE_ASSOC #include #include #include /* strcat, strcmp */ char *rtems_assoc_name_by_local_bitfield( const rtems_assoc_t *ap, uint32_t value, char *buffer ) { uint32_t b; *buffer = 0; for (b = 1; b; b <<= 1) { if (b & value) { if (*buffer) strcat(buffer, " "); strcat(buffer, rtems_assoc_name_by_local(ap, b)); } } return buffer; }