From 2c0ab5ba0b501ebb813d14f222213b9b39771f6e Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 17 Jun 2024 11:17:54 +0200 Subject: [PATCH] rtems: Format typedef parameters in comments --- cpukit/include/rtems/extension.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cpukit/include/rtems/extension.h b/cpukit/include/rtems/extension.h index 31fb18de65..46cf11d2e8 100644 --- a/cpukit/include/rtems/extension.h +++ b/cpukit/include/rtems/extension.h @@ -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