mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-07 13:45:00 -05:00
Reverted parameter name for Static version of function by mistake
This commit is contained in:
parent
d76e206308
commit
5969ed45c7
1 changed files with 2 additions and 2 deletions
|
|
@ -2826,7 +2826,7 @@
|
||||||
|
|
||||||
#if ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )
|
#if ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )
|
||||||
|
|
||||||
QueueHandle_t MPU_xQueueCreateCountingSemaphore( UBaseType_t uxMaxCount,
|
QueueHandle_t MPU_xQueueCreateCountingSemaphore( UBaseType_t uxCountValue,
|
||||||
UBaseType_t uxInitialCount ) /* PRIVILEGED_FUNCTION */
|
UBaseType_t uxInitialCount ) /* PRIVILEGED_FUNCTION */
|
||||||
{
|
{
|
||||||
QueueHandle_t xInternalQueueHandle = NULL;
|
QueueHandle_t xInternalQueueHandle = NULL;
|
||||||
|
|
@ -2858,7 +2858,7 @@
|
||||||
|
|
||||||
#if ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) )
|
#if ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) )
|
||||||
|
|
||||||
QueueHandle_t MPU_xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxCountValue,
|
QueueHandle_t MPU_xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount,
|
||||||
const UBaseType_t uxInitialCount,
|
const UBaseType_t uxInitialCount,
|
||||||
StaticQueue_t * pxStaticQueue ) /* PRIVILEGED_FUNCTION */
|
StaticQueue_t * pxStaticQueue ) /* PRIVILEGED_FUNCTION */
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue