37#ifndef _RTEMS_SCORE_WKSPACEINITONE_H
38#define _RTEMS_SCORE_WKSPACEINITONE_H
45#include <rtems/config.h>
60static inline void _Workspace_Initialize_for_one_area(
void )
63 uintptr_t wkspace_size;
64 uintptr_t wkspace_size_with_overhead;
68 uintptr_t available_size;
70 page_size = CPU_HEAP_ALIGNMENT;
72 wkspace_size_with_overhead = wkspace_size + _Heap_Area_overhead( page_size );
75 _Assert( _Memory_Get_count( mem ) == 1 );
77 area = _Memory_Get_area( mem, 0 );
78 free_size = _Memory_Get_free_size( area );
81 wkspace_size < wkspace_size_with_overhead &&
82 free_size >= wkspace_size_with_overhead
89 size = wkspace_size_with_overhead;
94 _Memory_Get_free_begin( area ),
99 _Memory_Consume( area, size );
108 if ( wkspace_size > available_size ) {
This header file provides the interfaces of the Assert Handler.
This header file provides the interfaces of the Memory Handler.
#define rtems_configuration_get_unified_work_area()
Indicates if the RTEMS Workspace and C Program Heap are configured to be unified for this application...
Definition: config.h:768
#define rtems_configuration_get_work_space_size()
Gets the RTEMS Workspace size in bytes configured for this application.
Definition: config.h:838
#define _Assert(_e)
Assertion similar to assert() controlled via RTEMS_DEBUG instead of NDEBUG and static analysis runs.
Definition: assert.h:96
uintptr_t _Heap_Initialize(Heap_Control *heap, void *area_begin, uintptr_t area_size, uintptr_t page_size)
Initializes the heap control block.
Definition: heap.c:225
RTEMS_NO_RETURN void _Internal_error(Internal_errors_Core_list core_error)
Terminates the system with an INTERNAL_ERROR_CORE fatal source and the specified core error code.
Definition: interr.c:61
const Memory_Information * _Memory_Get(void)
Return the memory information of this platform.
Definition: bspgetworkarea.c:227
Heap_Control _Workspace_Area
Executive workspace control.
Definition: wkspace.c:44
This header file provides interfaces of the Barrier Handler which are only used by the implementation...
This header file provides the interfaces of the Internal Error Handler.
This header file provides interfaces of the Workspace Handler which are only used by the implementati...
The memory area description.
Definition: memory.h:63