c-user: Harmonize header file references

This commit is contained in:
Sebastian Huber 2023-02-14 16:05:31 +01:00
parent 63e175f65c
commit ee8e1fe7ac
3 changed files with 10 additions and 10 deletions

View File

@ -178,8 +178,8 @@ This configuration option is an integer define.
.. rubric:: DEFAULT VALUE:
If this configuration option is undefined, then the RTEMS Workspace and task
stack space size is calculated by ``<rtems/confdefs.h>`` based on the values
configuration options.
stack space size is calculated by ``<rtems/confdefs.h>`` based on the
values configuration options.
.. rubric:: DESCRIPTION:

View File

@ -217,8 +217,8 @@ from the RTEMS Workspace or through a custom IDLE task stack allocator.
If this configuration option is specified, then the task storage areas for
the :term:`IDLE tasks <IDLE task>` are statically allocated by
<rtems/confdefs.h>. The value of this configuration option defines the size
in bytes of the task storage area of each IDLE task in the system.
``<rtems/confdefs.h>``. The value of this configuration option defines the
size in bytes of the task storage area of each IDLE task in the system.
.. rubric:: NOTES:
@ -239,9 +239,9 @@ with the :ref:`INTERNAL_ERROR_CORE <FatalErrorSources>` fatal source and the
system initialization.
The value of this configuration option is passed to
:ref:`InterfaceRTEMSTASKSTORAGESIZE` by <rtems/confdefs.h> to determine the
actual size of the statically allocated area to take architecture-specific
overheads into account.
:ref:`InterfaceRTEMSTASKSTORAGESIZE` by ``<rtems/confdefs.h>`` to determine
the actual size of the statically allocated area to take
architecture-specific overheads into account.
The

View File

@ -407,9 +407,9 @@ An application based solely on static allocation can avoid any runtime memory
allocators. This can simplify the application architecture as well as any
analysis that may be required.
The stack space estimate done by <rtems/confdefs.h> assumes that all tasks are
created by :ref:`InterfaceRtemsTaskCreate`. The estimate can be adjusted to
take user-provided task storage areas into account through the
The stack space estimate done by ``<rtems/confdefs.h>`` assumes that all tasks
are created by :ref:`InterfaceRtemsTaskCreate`. The estimate can be adjusted
to take user-provided task storage areas into account through the
:ref:`CONFIGURE_MINIMUM_TASKS_WITH_USER_PROVIDED_STORAGE` application
configuration option.