rtems: Format typedef parameters in comments

This commit is contained in:
Sebastian Huber
2024-06-17 11:17:54 +02:00
parent 20a663ccef
commit 2c0ab5ba0b

View File

@@ -572,16 +572,16 @@ typedef User_extensions_thread_start_extension rtems_task_start_extension;
*
* Where the system was built with SMP support disabled, the task switch
* extensions are invoked before the context switch from the currently
* executing thread to the heir thread. The executing is a pointer to the TCB
* of the currently executing thread. The heir is a pointer to the TCB of the
* heir thread. The context switch initiated through the multitasking start is
* not covered by the task switch extensions.
* executing thread to the heir thread. The ``executing`` is a pointer to the
* TCB of the currently executing thread. The ``heir`` is a pointer to the TCB
* of the heir thread. The context switch initiated through the multitasking
* start is not covered by the task switch extensions.
*
* Where the system was built with SMP support enabled, the task switch
* extensions are invoked after the context switch to the heir thread. The
* executing is a pointer to the TCB of the previously executing thread.
* Despite the name, this is not the currently executing thread. The heir is a
* pointer to the TCB of the newly executing thread. This is the currently
* ``executing`` is a pointer to the TCB of the previously executing thread.
* Despite the name, this is not the currently executing thread. The ``heir``
* is a pointer to the TCB of the newly executing thread. This is the currently
* executing thread. The context switches initiated through the multitasking
* start are covered by the task switch extensions. The reason for the
* differences to uniprocessor configurations is that the context switch may