summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score/wkspace.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/include/rtems/score/wkspace.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/cpukit/include/rtems/score/wkspace.h b/cpukit/include/rtems/score/wkspace.h
index 8428c9f957..8d0d3bc114 100644
--- a/cpukit/include/rtems/score/wkspace.h
+++ b/cpukit/include/rtems/score/wkspace.h
@@ -24,6 +24,7 @@
#include <rtems/score/heap.h>
#include <rtems/score/interr.h>
+#include <rtems/score/memory.h>
#ifdef __cplusplus
extern "C" {
@@ -53,14 +54,12 @@ extern Heap_Control _Workspace_Area;
*
* This routine performs the initialization necessary for this handler.
*
- * @param areas The heap area for the new workspace.
- * @param area_count The number of areas for the allocation.
+ * @param mem The memory information
* @param extend The extension handler for the new workspace.
*/
void _Workspace_Handler_initialization(
- Heap_Area *areas,
- size_t area_count,
- Heap_Initialization_or_extend_handler extend
+ const Memory_Information *mem,
+ Heap_Initialization_or_extend_handler extend
);
/**