summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-21 15:24:25 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-21 15:24:25 +0000
commitb4bf197008cd55d7bca057cd4298b0eea674f137 (patch)
treefce9e83f0238af6bfcb362f9897ad4c662d61616 /cpukit
parent2007-11-29 Glenn Humphrey <glenn.humphrey@OARcorp.com> (diff)
downloadrtems-b4bf197008cd55d7bca057cd4298b0eea674f137.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.h14
2 files changed, 13 insertions, 7 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 1a547ce525..758dab60c4 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-11-06 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1266/cpukit
diff --git a/cpukit/libcsupport/include/rtems/assoc.h b/cpukit/libcsupport/include/rtems/assoc.h
index 291bdbf6e9..312cbbc615 100644
--- a/cpukit/libcsupport/include/rtems/assoc.h
+++ b/cpukit/libcsupport/include/rtems/assoc.h
@@ -27,17 +27,17 @@ typedef struct {
#define RTEMS_ASSOC_DEFAULT_NAME "(default)"
const rtems_assoc_t *rtems_assoc_ptr_by_name(const rtems_assoc_t *, 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 );
+const rtems_assoc_t *rtems_assoc_ptr_by_local(const rtems_assoc_t *, uint32_t);
+const rtems_assoc_t *rtems_assoc_ptr_by_remote(const rtems_assoc_t *, uint32_t);
-uint32_t rtems_assoc_remote_by_local(const rtems_assoc_t *, uint32_t );
-uint32_t rtems_assoc_local_by_remote(const rtems_assoc_t *, uint32_t );
+uint32_t rtems_assoc_remote_by_local(const rtems_assoc_t *, uint32_t);
+uint32_t rtems_assoc_local_by_remote(const rtems_assoc_t *, uint32_t);
uint32_t rtems_assoc_remote_by_name(const rtems_assoc_t *, const char *);
uint32_t rtems_assoc_local_by_name(const rtems_assoc_t *, const char *);
-const char *rtems_assoc_name_by_local(const rtems_assoc_t *, uint32_t );
-const char *rtems_assoc_name_by_remote(const rtems_assoc_t *, uint32_t );
+const char *rtems_assoc_name_by_local(const rtems_assoc_t *, uint32_t);
+const char *rtems_assoc_name_by_remote(const rtems_assoc_t *, uint32_t);
-uint32_t rtems_assoc_remote_by_local_bitfield(const rtems_assoc_t *, uint32_t );
+uint32_t rtems_assoc_remote_by_local_bitfield(const rtems_assoc_t *, uint32_t);
char *rtems_assoc_name_by_local_bitfield(const rtems_assoc_t *, uint32_t , char *);
char *rtems_assoc_name_by_remote_bitfield(const rtems_assoc_t *, uint32_t , char *);
uint32_t rtems_assoc_local_by_remote_bitfield(const rtems_assoc_t *, uint32_t );