summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems/partimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-10-14 10:22:18 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-11-23 10:43:19 +0100
commit3c029026da74700c2fd4780333f13a649152b7b8 (patch)
tree17242a012f22c93f814c42cb719ba3eeeae9d4a1 /cpukit/include/rtems/rtems/partimpl.h
parentrtems: Move _Partition_Free_buffer() (diff)
downloadrtems-3c029026da74700c2fd4780333f13a649152b7b8.tar.bz2
rtems: Remove _Partition_Free()
It was a trivial function call wrapper used only in one place.
Diffstat (limited to 'cpukit/include/rtems/rtems/partimpl.h')
-rw-r--r--cpukit/include/rtems/rtems/partimpl.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/cpukit/include/rtems/rtems/partimpl.h b/cpukit/include/rtems/rtems/partimpl.h
index 599db29c13..55de7b113d 100644
--- a/cpukit/include/rtems/rtems/partimpl.h
+++ b/cpukit/include/rtems/rtems/partimpl.h
@@ -137,20 +137,6 @@ RTEMS_INLINE_ROUTINE void _Partition_Destroy(
}
/**
- * @brief Frees a partition control block to the
- * inactive chain of free partition control blocks.
- *
- * This routine frees a partition control block to the
- * inactive chain of free partition control blocks.
- */
-RTEMS_INLINE_ROUTINE void _Partition_Free (
- Partition_Control *the_partition
-)
-{
- _Objects_Free( &_Partition_Information, &the_partition->Object );
-}
-
-/**
* @brief Calls _Objects_Get() using the ::_Partition_Information.
*
* @param id is the object identifier.