summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/assocremotebylocal.c
blob: cd5fa0c647c3cb44d0d0464b0537432d8fa86972 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * assoc.c
 *      rtems assoc routines
 */

#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_remote_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->remote_value;

  return 0;
}