summaryrefslogtreecommitdiff
path: root/FreeRTOS/Source/include/semphr.h
diff options
context:
space:
mode:
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2016-03-29 11:08:42 +0000
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2016-03-29 11:08:42 +0000
commitd89df385fe8b2f1dd85e2220892e509b8f98b0f1 (patch)
tree3485add6e012993996e61a37991174b1fb99cefc /FreeRTOS/Source/include/semphr.h
parenta641cacba155cb6002566ceddd1bfcae9e2332d1 (diff)
downloadfreertos-d89df385fe8b2f1dd85e2220892e509b8f98b0f1.tar.gz
- Rework the StaticAllocation.c common demo file to reflect the changes to the static allocation object create functions from the previous check-in.
- Correct various typos in comments. - Add xTimerGetPeriod() function (feature request). git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@2431 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS/Source/include/semphr.h')
-rw-r--r--FreeRTOS/Source/include/semphr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/FreeRTOS/Source/include/semphr.h b/FreeRTOS/Source/include/semphr.h
index 29a0f98f5..eff0bfd30 100644
--- a/FreeRTOS/Source/include/semphr.h
+++ b/FreeRTOS/Source/include/semphr.h
@@ -1152,11 +1152,11 @@ typedef QueueHandle_t SemaphoreHandle_t;
/**
* semphr.h
- * <pre>TaskHandle_t xSemaphoreGetCount( SemaphoreHandle_t xMutex );</pre>
+ * <pre>UBaseType_t uxSemaphoreGetCount( SemaphoreHandle_t xMutex );</pre>
*
- * If the semaphore is a counting semaphore then xSemaphoreGetCount() returns
+ * If the semaphore is a counting semaphore then uxSemaphoreGetCount() returns
* its current count value. If the semaphore is a binary semaphore then
- * xSemaphoreGetCount() returns 1 if the semaphore is available, and 0 if the
+ * uxSemaphoreGetCount() returns 1 if the semaphore is available, and 0 if the
* semaphore is not available.
*
*/