summaryrefslogtreecommitdiffstats
path: root/cpukit/doxygen (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-10-25rtems: Regenerate for IDLE task allocator optionSebastian Huber1-1/+27
Update #4524.
2021-04-30appl-config: Add missing "the"Sebastian Huber1-11/+10
2021-04-30appl-config: CONFIGURE_BSP_PREREQUISITE_DRIVERSSebastian Huber1-2/+2
Replace copy and paste with a proper description.
2021-04-30appl-config: Reformat option constraintsSebastian Huber1-120/+209
If only one constraint is present, then use a single sentence, otherwise use a list for the constraints. Format the constraints so that the line length limit is maintained.
2021-03-05CONFIGURE_MAXIMUM_THREAD_LOCAL_STORAGE_SIZESebastian Huber1-3/+11
Ensure that CONFIGURE_MAXIMUM_THREAD_LOCAL_STORAGE_SIZE meets the task storage alignment requirement.
2021-01-25Improve file header comment in generated filesSebastian Huber1-3/+7
2020-11-27config: CONFIGURE_INIT_TASK_CONSTRUCT_STORAGE_SIZESebastian Huber1-2/+4
Fix the documentation. Update #4181.
2020-11-26config: CONFIGURE_INIT_TASK_CONSTRUCT_STORAGE_SIZESebastian Huber1-0/+63
In order to better support applications which use the new rtems_task_construct() directive add the CONFIGURE_INIT_TASK_CONSTURCT_STORAGE_SIZE configuration option. If this option is specified, then the Classic API initialization task is constructed with rtems_task_construct(). Update #4181.
2020-11-23doxygen: Use common syntax for groupsSebastian Huber1-3/+4
2020-11-23doxygen: Rename Internal to ImplementationSebastian Huber1-2/+2
Use a top-level implementation group to gather implementation related files. The use of "Impl" is shorter and matches with the *impl.h file names.
2020-11-12Improve automatically generated warningSebastian Huber1-5/+4
2020-10-08doxygen: Add "Generated from ..." commentsSebastian Huber1-4/+339
Improve file header comment. Update #3994.
2020-09-28doxygen: Fix use of getchark() and rtems_putc()Sebastian Huber1-6/+6
2020-09-18doxygen: Wrap long linesSebastian Huber1-10/+20
2020-09-17validation: Add general purpose test suiteSebastian Huber1-0/+6
Add a general purpose test suite for validation tests. This is the first test suite generated from a specification item in the rtems-central repository. Update #3959.
2020-09-17doxygen: Move top-level group definitionsSebastian Huber1-0/+44
Update #3959.
2020-09-17rtems: Add rtems_task_construct()Sebastian Huber1-0/+22
In contrast to rtems_task_create() this function constructs a task with a user-provided task storage area. The new directive uses a configuration structure instead of individual parameters. Add RTEMS_TASK_STORAGE_SIZE() to calculate the recommended size of a task storage area based on the task attributes and the size dedicated to the task stack and thread-local storage. This macro may allow future extensions without breaking the API. Add application configuration option CONFIGURE_MINIMUM_TASKS_WITH_USER_PROVIDED_STORAGE to adjust RTEMS Workspace size estimate. Update #3959.
2020-09-17CONFIGURE_MAXIMUM_THREAD_LOCAL_STORAGE_SIZESebastian Huber1-0/+37
Add this application configuration option. This configuration option can be used to reserve space for the dynamic linking of modules with thread-local storage objects. Add RTEMS_TASK_STORAGE_ALIGNMENT to define the minium alignment of a thread-local storage size. Update #4074.
2020-08-07Document application configuration optionsSebastian Huber1-0/+4191
Add a new directory for Doxygen-specific documentation content. Add a Doxygen only header file containing documentation of the application configuration options. The header file is generated from specification items. Close #3994.