From cf388ecb038f32c79b124e2852a4cb1ecad69ea2 Mon Sep 17 00:00:00 2001 From: Martin Erik Werner Date: Tue, 19 Aug 2025 16:06:05 +0200 Subject: [PATCH] cpukit: Reword chain get wait routine->directive Based on discord comment from Sebastian Huber suggesting that directive would be appropriate terminology for referring to an "RTEMS API function". --- cpukit/include/rtems/chain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpukit/include/rtems/chain.h b/cpukit/include/rtems/chain.h index 6f36a16535..9e31aad9d2 100644 --- a/cpukit/include/rtems/chain.h +++ b/cpukit/include/rtems/chain.h @@ -141,7 +141,7 @@ rtems_status_code rtems_chain_get_with_notification( * @brief Gets the first @a node from the @a chain with an @a events wait if * empty. * - * This routine gets the first @a node of the @a chain if it is available, + * This directive gets the first @a node of the @a chain if it is available, * otherwise it waits for the calling task to receive all @a events and then * tries to get the first node again. The get and wait is retried indefinitely * until either a node is available or the event receive times out.