summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-01-05 20:19:51 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-01-05 20:19:51 +0000
commit8b3416f97e933377f3d446bf595507d5805e81b5 (patch)
tree525b9061e5a74a901880321dcfb296d5d65aa566 /cpukit
parent2009-01-05 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-8b3416f97e933377f3d446bf595507d5805e81b5.tar.bz2
2009-01-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* posix/include/rtems/posix/key.h: Remove redundant prototypes for inlines.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/posix/include/rtems/posix/key.h42
2 files changed, 5 insertions, 42 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 0ef8126c8c..db5a0a6543 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,10 @@
2009-01-05 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * posix/include/rtems/posix/key.h: Remove redundant prototypes for
+ inlines.
+
+2009-01-05 Joel Sherrill <joel.sherrill@oarcorp.com>
+
PR 1351/cpukit
* sapi/include/confdefs.h: Mask off unlimited object bit before using
configured number in calculations.
diff --git a/cpukit/posix/include/rtems/posix/key.h b/cpukit/posix/include/rtems/posix/key.h
index c20ad1a5bc..b8a8881137 100644
--- a/cpukit/posix/include/rtems/posix/key.h
+++ b/cpukit/posix/include/rtems/posix/key.h
@@ -72,17 +72,6 @@ void _POSIX_Keys_Run_destructors(
);
/*
- * _POSIX_Keys_Allocate
- *
- * DESCRIPTION:
- *
- * This function allocates a keys control block from
- * the inactive chain of free keys control blocks.
- */
-
-RTEMS_INLINE_ROUTINE POSIX_Keys_Control *_POSIX_Keys_Allocate( void );
-
-/*
* _POSIX_Keys_Free
*
* DESCRIPTION:
@@ -95,37 +84,6 @@ RTEMS_INLINE_ROUTINE void _POSIX_Keys_Free (
POSIX_Keys_Control *the_key
);
-/*
- * _POSIX_Keys_Get
- *
- * DESCRIPTION:
- *
- * This function maps key IDs to key control blocks.
- * If ID corresponds to a local keys, then it returns
- * the_key control pointer which maps to ID and location
- * is set to OBJECTS_LOCAL. if the keys ID is global and
- * resides on a remote node, then location is set to OBJECTS_REMOTE,
- * and the_key is undefined. Otherwise, location is set
- * to OBJECTS_ERROR and the_key is undefined.
- */
-
-RTEMS_INLINE_ROUTINE POSIX_Keys_Control *_POSIX_Keys_Get (
- Objects_Id id,
- Objects_Locations *location
-);
-
-/*
- * _POSIX_Keys_Is_null
- *
- * DESCRIPTION:
- *
- * This function returns TRUE if the_key is NULL and FALSE otherwise.
- */
-
-RTEMS_INLINE_ROUTINE bool _POSIX_Keys_Is_null (
- POSIX_Keys_Control *the_key
-);
-
#include <rtems/posix/key.inl>
#ifdef __cplusplus