From b4bf197008cd55d7bca057cd4298b0eea674f137 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 21 Dec 2007 15:24:25 +0000 Subject: 2007-12-21 Joel Sherrill PR 1268/cpukit * libcsupport/include/rtems/assoc.h: There is no rtems_assoc_ptr_by_value method. --- cpukit/ChangeLog | 6 ++++++ cpukit/libcsupport/include/rtems/assoc.h | 14 +++++++------- 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 + + PR 1268/cpukit + * libcsupport/include/rtems/assoc.h: There is no + rtems_assoc_ptr_by_value method. + 2007-11-06 Joel Sherrill 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 ); -- cgit v1.2.3