Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Jackson <115876528+ericbj29@users.noreply.github.com>2024-01-03 22:49:02 +0300
committerGitHub <noreply@github.com>2024-01-03 22:49:02 +0300
commit4568507507f6d34c20beb2b2f7c462f042f8b3ca (patch)
tree6ec1bcf86c15493cfc91eef7ba0b88ddbea3a197
parentbe880a1fc8ed4e9bc8110e85bbc827952a13a087 (diff)
Fix documentation for xQueueTakeMutexRecursive (#943)
-rw-r--r--include/queue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/queue.h b/include/queue.h
index c6497b5b6..e892ed3d5 100644
--- a/include/queue.h
+++ b/include/queue.h
@@ -1522,8 +1522,8 @@ BaseType_t xQueueSemaphoreTake( QueueHandle_t xQueue,
#endif
/*
- * For internal use only. Use xSemaphoreTakeMutexRecursive() or
- * xSemaphoreGiveMutexRecursive() instead of calling these functions directly.
+ * For internal use only. Use xSemaphoreTakeRecursive() or
+ * xSemaphoreGiveRecursive() instead of calling these functions directly.
*/
BaseType_t xQueueTakeMutexRecursive( QueueHandle_t xMutex,
TickType_t xTicksToWait ) PRIVILEGED_FUNCTION;