Changes between Initial Version and Version 1 of Ticket #4678


Ignore:
Timestamp:
07/15/22 06:26:19 (21 months ago)
Author:
Sebastian Huber
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4678 – Description

    initial v1  
    11Since RTEMS 5, the objects based on Objects_Control are statically allocated in the .bss sections.  The zero-initialization is unnecessary since each object is fully initialized after allocation by an object-specific initialization routine. The memory for objects is statically allocated or allocated from the workspace if the unlimited objects configuration option is used. Workspace memory is uninitialized by default. Optimize the static allocation to place the object controls, local tables, and thread queue heads into a .noinit section.
     2
     3The longer system initialization time compared to RTEMS 4.11 may lead to hardware watchdog problems.