summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/src/sysinitverbose.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add system initialization step for target hashSebastian Huber2021-02-261-1/+9
| | | | Update #4267.
* config: Adjust stack allocator initializationSebastian Huber2021-02-241-1/+10
| | | | | | | Use the right system initialization step for the stack allocator initialization. Do the stack allocator initialization before the workspace initialization so that _Memory_Allocate() can be used to get memory for the allocator.
* sapi: Canonicalize @defgroup and @file commentsSebastian Huber2020-12-021-2/+11
| | | | | | | Adjust group identifier and names to be in line with a common pattern. Use common phrases for the group and file brief descriptions. Update #3706.
* libio: Add POSIX user environment pointer to TCBSebastian Huber2020-02-251-1/+9
| | | | | | | | | | The IO library used a POSIX key to store an optional POSIX user environment pointer. This pulled in the POSIX keys support in every application configuration. Add a user environment pointer to the thread control block (TCB) instead. Applications which do not need the POSIX user environment will just get an overhead of one pointer per thread. Close #3882.
* sysinit: Add RTEMS_SYSINIT_ZERO_MEMORYSebastian Huber2020-02-061-1/+9
| | | | | | | | 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.
* config: Add CONFIGURE_VERBOSE_SYSTEM_INITIALIZATIONSebastian Huber2020-02-041-0/+557
Update #3861.