summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libcsupport/include/rtems/assoc.h12
2 files changed, 11 insertions, 6 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 250efadf42..d1825e5f4d 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,10 @@
2008-01-24 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * libcsupport/include/rtems/assoc.h: rtems_assoc_ptr_by_local should be
+ in public API.
+
+2008-01-24 Joel Sherrill <joel.sherrill@oarcorp.com>
+
* score/include/rtems/score/object.h,
score/src/objectextendinformation.c,
score/src/objectinitializeinformation.c,
diff --git a/cpukit/libcsupport/include/rtems/assoc.h b/cpukit/libcsupport/include/rtems/assoc.h
index 7fe7a23301..bfcc467e41 100644
--- a/cpukit/libcsupport/include/rtems/assoc.h
+++ b/cpukit/libcsupport/include/rtems/assoc.h
@@ -87,6 +87,11 @@ uint32_t rtems_assoc_local_by_remote_bitfield(
uint32_t
);
+const rtems_assoc_t *rtems_assoc_ptr_by_local(
+ const rtems_assoc_t *ap,
+ uint32_t local_value
+);
+
#if defined(INSIDE_ASSOC)
#define rtems_assoc_is_default(_ap) \
@@ -100,12 +105,7 @@ uint32_t rtems_assoc_local_by_remote_bitfield(
const char *rtems_assoc_name_bad(
uint32_t bad_value
);
-
-const rtems_assoc_t *rtems_assoc_ptr_by_local(
- const rtems_assoc_t *ap,
- uint32_t local_value
-);
-
#endif
+
#endif /* ! _INCLUDE_ASSOC_H */