summaryrefslogtreecommitdiffstats
path: root/cpukit
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
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')
-rw-r--r--cpukit/ChangeLog6
-rw-r--r--cpukit/libcsupport/include/rtems/assoc.h13
2 files changed, 11 insertions, 8 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 1c5a720e90..2e9bd902d9 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,9 @@
+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.
+
2007-12-21 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/sync.c: Make sync() POSIX-compliant.
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 *,