summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/rtems/assoc.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-21 15:22:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-21 15:22:40 +0000
commitcd2255151a80a4967c1a60dd54bb0b63a47177d4 (patch)
tree161a54286ecd2589db6085a16b813ab102d9df52 /cpukit/libcsupport/include/rtems/assoc.h
parentFix typo. (diff)
downloadrtems-cd2255151a80a4967c1a60dd54bb0b63a47177d4.tar.bz2
2007-12-21 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1268/cpukit * libcsupport/include/rtems/assoc.h: There is no rtems_assoc_ptr_by_value method.
Diffstat (limited to 'cpukit/libcsupport/include/rtems/assoc.h')
-rw-r--r--cpukit/libcsupport/include/rtems/assoc.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/cpukit/libcsupport/include/rtems/assoc.h b/cpukit/libcsupport/include/rtems/assoc.h
index 9cf343fc27..7fe7a23301 100644
--- a/cpukit/libcsupport/include/rtems/assoc.h
+++ b/cpukit/libcsupport/include/rtems/assoc.h
@@ -15,7 +15,7 @@
#define _RTEMS_RTEMS_ASSOC_H
typedef struct {
- const char *name;
+ const char *name;
uint32_t local_value;
uint32_t remote_value;
} rtems_assoc_t;
@@ -31,11 +31,6 @@ const rtems_assoc_t *rtems_assoc_ptr_by_name(
const char *
);
-const rtems_assoc_t *rtems_assoc_ptr_by_value(
- const rtems_assoc_t *,
- uint32_t
-);
-
const rtems_assoc_t *rtems_assoc_ptr_by_remote(
const rtems_assoc_t *,
uint32_t
@@ -53,10 +48,12 @@ uint32_t rtems_assoc_local_by_remote(
uint32_t rtems_assoc_remote_by_name(
const rtems_assoc_t *,
- const char *);
+ const char *
+);
uint32_t rtems_assoc_local_by_name(
const rtems_assoc_t *,
- const char *);
+ const char *
+);
const char *rtems_assoc_name_by_local(
const rtems_assoc_t *,