/** * @file * * @brief RTEMS Associate Name by Remote * @ingroup Associativity */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #define INSIDE_ASSOC #include #include #include /* strcat, strcmp */ const char *rtems_assoc_name_by_remote( const rtems_assoc_t *ap, uint32_t remote_value ) { const rtems_assoc_t *nap; nap = rtems_assoc_ptr_by_remote(ap, remote_value); if (nap) return nap->name; return rtems_assoc_name_bad(remote_value); }