summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems/src')
-rw-r--r--cpukit/rtems/src/partreturnbuffer.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/cpukit/rtems/src/partreturnbuffer.c b/cpukit/rtems/src/partreturnbuffer.c
index 73d5438225..9afda8f85e 100644
--- a/cpukit/rtems/src/partreturnbuffer.c
+++ b/cpukit/rtems/src/partreturnbuffer.c
@@ -21,6 +21,15 @@
#endif
#include <rtems/rtems/partimpl.h>
+#include <rtems/score/chainimpl.h>
+
+static void _Partition_Free_buffer(
+ Partition_Control *the_partition,
+ void *the_buffer
+)
+{
+ _Chain_Append_unprotected( &the_partition->Memory, the_buffer );
+}
rtems_status_code rtems_partition_return_buffer(
rtems_id id,