summaryrefslogblamecommitdiffstats
path: root/cpukit/libcsupport/src/assocnamebylocal.c
blob: 0dd47b86e861cf9fbb1bceeb76191974bdf9640e (plain) (tree)
1
2
3
4
5




                                        

























                                                    
/**
 *  @file
 *
 *  @brief RTEMS Associate Name by Local
 *  @ingroup Associativity
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#define INSIDE_ASSOC

#include <rtems.h>
#include <rtems/assoc.h>

#include <string.h>             /* strcat, strcmp */

const char *rtems_assoc_name_by_local(
  const rtems_assoc_t *ap,
  uint32_t             local_value
)
{
  const rtems_assoc_t *nap;

  nap = rtems_assoc_ptr_by_local(ap, local_value);
  if (nap)
    return nap->name;

  return rtems_assoc_name_bad(local_value);
}