summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score/memory.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-20Update company nameSebastian Huber1-1/+1
The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
2022-09-19Do not use RTEMS_INLINE_ROUTINESebastian Huber1-13/+13
Directly use "static inline" which is available in C99 and later. This brings the RTEMS implementation closer to standard C. Close #3935.
2022-07-15score: Extend memory dirty/zero actionsSebastian Huber1-1/+13
Dirty or zero also the part of the .noinit section used by RTEMS. Close #4678.
2020-12-02score: Canonicalize Doxygen @file commentsSebastian Huber1-1/+2
Use common phrases for the file brief descriptions. Update #3706.
2020-12-02score: Canonicalize Doxygen groupsSebastian Huber1-2/+4
Adjust group identifier and names to be in line with a common pattern. Use common phrases for the group brief descriptions. Update #3706.
2020-02-06config: Add CONFIGURE_DIRTY_MEMORYSebastian Huber1-0/+5
Replace the BSP_DIRTY_MEMORY BSP option with a CONFIGURE_DIRTY_MEMORY configuration option. Update #3843.
2020-02-06sysinit: Add RTEMS_SYSINIT_ZERO_MEMORYSebastian Huber1-0/+13
Use a dedicate system initialization step to zero the memory used for the workspace and C program heap. This avoids dead code in case CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY is not configured.
2020-02-04score: Add _Memory_Fill()Sebastian Huber1-1/+10
Update #3838.
2020-02-04score: Add Memory HandlerSebastian Huber1-0/+331
Update #3838.