mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Continue to add the ability to create RTOS objects using static rather than dynamic memory allocation - now including all the semaphore types.
Update the StaticAllocation.c standard demo file to exercise the new static allocation functions.
This commit is contained in:
parent
cf0ed4e2ac
commit
68fced741d
|
@ -145,6 +145,28 @@ static void prvCreateAndDeleteStaticallyAllocatedQueues( void );
|
||||||
*/
|
*/
|
||||||
static void prvCreateAndDeleteStaticallyAllocatedBinarySemaphores( void );
|
static void prvCreateAndDeleteStaticallyAllocatedBinarySemaphores( void );
|
||||||
|
|
||||||
|
/*
|
||||||
|
* A function that demonstrates and tests the xSemaphoreCreateMutexStatic() API
|
||||||
|
* macro by creating and then deleting mutexes with both dynamically and
|
||||||
|
* statically allocated semaphore structures.
|
||||||
|
*/
|
||||||
|
static void prvCreateAndDeleteStaticallyAllocatedMutexes( void );
|
||||||
|
|
||||||
|
/*
|
||||||
|
* A function that demonstrates and tests the xSemaphoreCreateCountingStatic()
|
||||||
|
* API macro by creating and then deleting counting semaphores with both
|
||||||
|
* dynamically and statically allocated semaphore structures.
|
||||||
|
*/
|
||||||
|
static void prvCreateAndDeleteStaticallyAllocatedCountingSemaphores( void );
|
||||||
|
|
||||||
|
/*
|
||||||
|
* A function that demonstrates and tests the
|
||||||
|
* xSemaphoreCreateRecursiveMutexStatic() API macro by creating and then
|
||||||
|
* deleting recursive mutexes with both dynamically and statically allocated
|
||||||
|
* semaphore structures.
|
||||||
|
*/
|
||||||
|
static void prvCreateAndDeleteStaticallyAllocatedRecursiveMutexes( void );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The task that creates and deletes other tasks has to delay occasionally to
|
* The task that creates and deletes other tasks has to delay occasionally to
|
||||||
* ensure lower priority tasks are not starved of processing time. A pseudo
|
* ensure lower priority tasks are not starved of processing time. A pseudo
|
||||||
|
@ -158,6 +180,11 @@ static TickType_t prvGetNextDelayTime( void );
|
||||||
*/
|
*/
|
||||||
static void prvCheckQueueFunction( QueueHandle_t xQueue );
|
static void prvCheckQueueFunction( QueueHandle_t xQueue );
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Checks the basic operation of a recursive mutex after it has been created.
|
||||||
|
*/
|
||||||
|
static void prvCheckRecursiveSemaphoreFunction( SemaphoreHandle_t xSemaphore );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Checks the basic operation of a binary semaphore after it has been created.
|
* Checks the basic operation of a binary semaphore after it has been created.
|
||||||
*/
|
*/
|
||||||
|
@ -218,9 +245,15 @@ static void prvStaticallyAllocatedCreator( void *pvParameters )
|
||||||
|
|
||||||
for( ;; )
|
for( ;; )
|
||||||
{
|
{
|
||||||
|
/* Loop, running functions that create and delete the various objects
|
||||||
|
that can be optionally created using either static or dynamic memory
|
||||||
|
allocation. */
|
||||||
prvCreateAndDeleteStaticallyAllocatedTasks();
|
prvCreateAndDeleteStaticallyAllocatedTasks();
|
||||||
prvCreateAndDeleteStaticallyAllocatedQueues();
|
prvCreateAndDeleteStaticallyAllocatedQueues();
|
||||||
prvCreateAndDeleteStaticallyAllocatedBinarySemaphores();
|
prvCreateAndDeleteStaticallyAllocatedBinarySemaphores();
|
||||||
|
prvCreateAndDeleteStaticallyAllocatedCountingSemaphores();
|
||||||
|
prvCreateAndDeleteStaticallyAllocatedMutexes();
|
||||||
|
prvCreateAndDeleteStaticallyAllocatedRecursiveMutexes();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
@ -363,6 +396,162 @@ BaseType_t xReturned, xLoop;
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
static void prvCheckRecursiveSemaphoreFunction( SemaphoreHandle_t xSemaphore )
|
||||||
|
{
|
||||||
|
const BaseType_t xLoops = 5;
|
||||||
|
BaseType_t x, xReturned;
|
||||||
|
|
||||||
|
/* A very basic test that the recursive semaphore behaved like a recursive
|
||||||
|
semaphore. First the semaphore should not be able to be given, as it has not
|
||||||
|
yet been taken. */
|
||||||
|
xReturned = xSemaphoreGiveRecursive( xSemaphore );
|
||||||
|
|
||||||
|
if( xReturned != pdFAIL )
|
||||||
|
{
|
||||||
|
xErrorOccurred = pdTRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Now it should be possible to take the mutex a number of times. */
|
||||||
|
for( x = 0; x < xLoops; x++ )
|
||||||
|
{
|
||||||
|
xReturned = xSemaphoreTakeRecursive( xSemaphore, staticDONT_BLOCK );
|
||||||
|
|
||||||
|
if( xReturned != pdPASS )
|
||||||
|
{
|
||||||
|
xErrorOccurred = pdTRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Should be possible to give the semaphore the same number of times as it
|
||||||
|
was given in the loop above. */
|
||||||
|
for( x = 0; x < xLoops; x++ )
|
||||||
|
{
|
||||||
|
xReturned = xSemaphoreGiveRecursive( xSemaphore );
|
||||||
|
|
||||||
|
if( xReturned != pdPASS )
|
||||||
|
{
|
||||||
|
xErrorOccurred = pdTRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* No more gives should be possible though. */
|
||||||
|
xReturned = xSemaphoreGiveRecursive( xSemaphore );
|
||||||
|
|
||||||
|
if( xReturned != pdFAIL )
|
||||||
|
{
|
||||||
|
xErrorOccurred = pdTRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
static void prvCreateAndDeleteStaticallyAllocatedCountingSemaphores( void )
|
||||||
|
{
|
||||||
|
SemaphoreHandle_t xSemaphore;
|
||||||
|
const UBaseType_t uxMaxCount = ( UBaseType_t ) 10;
|
||||||
|
|
||||||
|
/* StaticSemaphore_t is a publicly accessible structure that has the same size
|
||||||
|
and alignment requirements as the real semaphore structure. It is provided as a
|
||||||
|
mechanism for applications to know the size of the semaphore (which is dependent
|
||||||
|
on the architecture and configuration file settings) without breaking the strict
|
||||||
|
data hiding policy by exposing the real semaphore internals. This
|
||||||
|
StaticSemaphore_t variable is passed into the xSemaphoreCreateCountingStatic()
|
||||||
|
function calls within this function. NOTE: In most usage scenarios now it is
|
||||||
|
faster and more memory efficient to use a direct to task notification instead of
|
||||||
|
a counting semaphore. http://www.freertos.org/RTOS-task-notifications.html */
|
||||||
|
static StaticSemaphore_t xSemaphoreBuffer; /* Static so it doesn't use too much stack space. */
|
||||||
|
|
||||||
|
/* Create the semaphore. xSemaphoreCreateCountingStatic() has one more
|
||||||
|
parameter than the usual xSemaphoreCreateCounting() function. The paraemter
|
||||||
|
is a pointer to the pre-allocated StaticSemaphore_t structure, which will
|
||||||
|
hold information on the semaphore in an anonymous way. If the pointer is
|
||||||
|
passed as NULL then the structure will be allocated dynamically, just as
|
||||||
|
when xSemaphoreCreateCounting() is called. */
|
||||||
|
xSemaphore = xSemaphoreCreateCountingStatic( uxMaxCount, 0, &xSemaphoreBuffer );
|
||||||
|
|
||||||
|
/* The semaphore handle should equal the static semaphore structure passed
|
||||||
|
into the xSemaphoreCreateBinaryStatic() function. */
|
||||||
|
configASSERT( xSemaphore == ( SemaphoreHandle_t ) &xSemaphoreBuffer );
|
||||||
|
|
||||||
|
/* Ensure the semaphore passes a few sanity checks as a valid semaphore. */
|
||||||
|
prvCheckSemaphoreFunction( xSemaphore, uxMaxCount );
|
||||||
|
|
||||||
|
/* Delete the semaphore again so the buffers can be reused. */
|
||||||
|
vSemaphoreDelete( xSemaphore );
|
||||||
|
|
||||||
|
|
||||||
|
/* The semaphore created above had a statically allocated semaphore
|
||||||
|
structure. Repeat the above using NULL as the third
|
||||||
|
xSemaphoreCreateCountingStatic() parameter so the semaphore structure is
|
||||||
|
instead allocated dynamically. */
|
||||||
|
xSemaphore = xSemaphoreCreateCountingStatic( uxMaxCount, 0, NULL );
|
||||||
|
|
||||||
|
/* Ensure the semaphore passes a few sanity checks as a valid semaphore. */
|
||||||
|
prvCheckSemaphoreFunction( xSemaphore, uxMaxCount );
|
||||||
|
|
||||||
|
/* Delete the semaphore again so the buffers can be reused. */
|
||||||
|
vSemaphoreDelete( xSemaphore );
|
||||||
|
|
||||||
|
/* Ensure lower priority tasks get CPU time. */
|
||||||
|
vTaskDelay( prvGetNextDelayTime() );
|
||||||
|
|
||||||
|
/* Just to show the check task that this task is still executing. */
|
||||||
|
uxCycleCounter++;
|
||||||
|
}
|
||||||
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
static void prvCreateAndDeleteStaticallyAllocatedRecursiveMutexes( void )
|
||||||
|
{
|
||||||
|
SemaphoreHandle_t xSemaphore;
|
||||||
|
|
||||||
|
/* StaticSemaphore_t is a publicly accessible structure that has the same size
|
||||||
|
and alignment requirements as the real semaphore structure. It is provided as a
|
||||||
|
mechanism for applications to know the size of the semaphore (which is dependent
|
||||||
|
on the architecture and configuration file settings) without breaking the strict
|
||||||
|
data hiding policy by exposing the real semaphore internals. This
|
||||||
|
StaticSemaphore_t variable is passed into the
|
||||||
|
xSemaphoreCreateRecursiveMutexStatic() function calls within this function. */
|
||||||
|
static StaticSemaphore_t xSemaphoreBuffer; /* Static so it doesn't use too much stack space. */
|
||||||
|
|
||||||
|
/* Create the semaphore. xSemaphoreCreateRecursiveMutexStatic() has one
|
||||||
|
more parameter than the usual xSemaphoreCreateRecursiveMutex() function.
|
||||||
|
The parameter is a pointer to the pre-allocated StaticSemaphore_t structure,
|
||||||
|
which will hold information on the semaphore in an anonymous way. If the
|
||||||
|
pointer is passed as NULL then the structure will be allocated dynamically,
|
||||||
|
just as when xSemaphoreCreateRecursiveMutex() is called. */
|
||||||
|
xSemaphore = xSemaphoreCreateRecursiveMutexStatic( &xSemaphoreBuffer );
|
||||||
|
|
||||||
|
/* The semaphore handle should equal the static semaphore structure passed
|
||||||
|
into the xSemaphoreCreateBinaryStatic() function. */
|
||||||
|
configASSERT( xSemaphore == ( SemaphoreHandle_t ) &xSemaphoreBuffer );
|
||||||
|
|
||||||
|
/* Ensure the semaphore passes a few sanity checks as a valid
|
||||||
|
recursive semaphore. */
|
||||||
|
prvCheckRecursiveSemaphoreFunction( xSemaphore );
|
||||||
|
|
||||||
|
/* Delete the semaphore again so the buffers can be reused. */
|
||||||
|
vSemaphoreDelete( xSemaphore );
|
||||||
|
|
||||||
|
|
||||||
|
/* The semaphore created above had a statically allocated semaphore
|
||||||
|
structure. Repeat the above using NULL as the
|
||||||
|
xSemaphoreCreateRecursiveMutexStatic() parameter so the semaphore structure
|
||||||
|
is instead allocated dynamically. */
|
||||||
|
xSemaphore = xSemaphoreCreateRecursiveMutexStatic( NULL );
|
||||||
|
|
||||||
|
/* Ensure the semaphore passes a few sanity checks as a valid semaphore. */
|
||||||
|
prvCheckRecursiveSemaphoreFunction( xSemaphore );
|
||||||
|
|
||||||
|
/* Delete the semaphore again so the buffers can be reused. */
|
||||||
|
vSemaphoreDelete( xSemaphore );
|
||||||
|
|
||||||
|
/* Ensure lower priority tasks get CPU time. */
|
||||||
|
vTaskDelay( prvGetNextDelayTime() );
|
||||||
|
|
||||||
|
/* Just to show the check task that this task is still executing. */
|
||||||
|
uxCycleCounter++;
|
||||||
|
}
|
||||||
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
static void prvCreateAndDeleteStaticallyAllocatedQueues( void )
|
static void prvCreateAndDeleteStaticallyAllocatedQueues( void )
|
||||||
{
|
{
|
||||||
QueueHandle_t xQueue;
|
QueueHandle_t xQueue;
|
||||||
|
@ -448,6 +637,76 @@ static uint8_t ucQueueStorageArea[ staticQUEUE_LENGTH_IN_ITEMS * sizeof( uint64_
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
static void prvCreateAndDeleteStaticallyAllocatedMutexes( void )
|
||||||
|
{
|
||||||
|
SemaphoreHandle_t xSemaphore;
|
||||||
|
BaseType_t xReturned;
|
||||||
|
|
||||||
|
/* StaticSemaphore_t is a publicly accessible structure that has the same size
|
||||||
|
and alignment requirements as the real semaphore structure. It is provided as a
|
||||||
|
mechanism for applications to know the size of the semaphore (which is dependent
|
||||||
|
on the architecture and configuration file settings) without breaking the strict
|
||||||
|
data hiding policy by exposing the real semaphore internals. This
|
||||||
|
StaticSemaphore_t variable is passed into the xSemaphoreCreateMutexStatic()
|
||||||
|
function calls within this function. */
|
||||||
|
static StaticSemaphore_t xSemaphoreBuffer; /* Static so it doesn't use too much stack space. */
|
||||||
|
|
||||||
|
/* Create the semaphore. xSemaphoreCreateMutexStatic() has one more
|
||||||
|
parameter than the usual xSemaphoreCreateMutex() function. The paraemter
|
||||||
|
is a pointer to the pre-allocated StaticSemaphore_t structure, which will
|
||||||
|
hold information on the semaphore in an anonymous way. If the pointer is
|
||||||
|
passed as NULL then the structure will be allocated dynamically, just as
|
||||||
|
when xSemaphoreCreateMutex() is called. */
|
||||||
|
xSemaphore = xSemaphoreCreateMutexStatic( &xSemaphoreBuffer );
|
||||||
|
|
||||||
|
/* The semaphore handle should equal the static semaphore structure passed
|
||||||
|
into the xSemaphoreCreateMutexStatic() function. */
|
||||||
|
configASSERT( xSemaphore == ( SemaphoreHandle_t ) &xSemaphoreBuffer );
|
||||||
|
|
||||||
|
/* Take the mutex so the mutex is in the state expected by the
|
||||||
|
prvCheckSemaphoreFunction() function. */
|
||||||
|
xReturned = xSemaphoreTake( xSemaphore, staticDONT_BLOCK );
|
||||||
|
|
||||||
|
if( xReturned != pdPASS )
|
||||||
|
{
|
||||||
|
xErrorOccurred = pdTRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ensure the semaphore passes a few sanity checks as a valid semaphore. */
|
||||||
|
prvCheckSemaphoreFunction( xSemaphore, staticBINARY_SEMAPHORE_MAX_COUNT );
|
||||||
|
|
||||||
|
/* Delete the semaphore again so the buffers can be reused. */
|
||||||
|
vSemaphoreDelete( xSemaphore );
|
||||||
|
|
||||||
|
|
||||||
|
/* The semaphore created above had a statically allocated semaphore
|
||||||
|
structure. Repeat the above using NULL as the xSemaphoreCreateMutexStatic()
|
||||||
|
parameter so the semaphore structure is instead allocated dynamically. */
|
||||||
|
xSemaphore = xSemaphoreCreateMutexStatic( NULL );
|
||||||
|
|
||||||
|
/* Take the mutex so the mutex is in the state expected by the
|
||||||
|
prvCheckSemaphoreFunction() function. */
|
||||||
|
xReturned = xSemaphoreTake( xSemaphore, staticDONT_BLOCK );
|
||||||
|
|
||||||
|
if( xReturned != pdPASS )
|
||||||
|
{
|
||||||
|
xErrorOccurred = pdTRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ensure the semaphore passes a few sanity checks as a valid semaphore. */
|
||||||
|
prvCheckSemaphoreFunction( xSemaphore, staticBINARY_SEMAPHORE_MAX_COUNT );
|
||||||
|
|
||||||
|
/* Delete the semaphore again so the buffers can be reused. */
|
||||||
|
vSemaphoreDelete( xSemaphore );
|
||||||
|
|
||||||
|
/* Ensure lower priority tasks get CPU time. */
|
||||||
|
vTaskDelay( prvGetNextDelayTime() );
|
||||||
|
|
||||||
|
/* Just to show the check task that this task is still executing. */
|
||||||
|
uxCycleCounter++;
|
||||||
|
}
|
||||||
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
static void prvCreateAndDeleteStaticallyAllocatedBinarySemaphores( void )
|
static void prvCreateAndDeleteStaticallyAllocatedBinarySemaphores( void )
|
||||||
{
|
{
|
||||||
SemaphoreHandle_t xSemaphore;
|
SemaphoreHandle_t xSemaphore;
|
||||||
|
@ -457,10 +716,10 @@ and alignment requirements as the real semaphore structure. It is provided as a
|
||||||
mechanism for applications to know the size of the semaphore (which is dependent
|
mechanism for applications to know the size of the semaphore (which is dependent
|
||||||
on the architecture and configuration file settings) without breaking the strict
|
on the architecture and configuration file settings) without breaking the strict
|
||||||
data hiding policy by exposing the real semaphore internals. This
|
data hiding policy by exposing the real semaphore internals. This
|
||||||
StaticSemaphore_t variable is passed into the xSemaphoreCreateBinary() function
|
StaticSemaphore_t variable is passed into the xSemaphoreCreateBinaryStatic()
|
||||||
calls within this function. NOTE: In most usage scenarios now it is faster and
|
function calls within this function. NOTE: In most usage scenarios now it is
|
||||||
more memory efficient to use a direct to task notification instead of a binary
|
faster and more memory efficient to use a direct to task notification instead of
|
||||||
semaphore. http://www.freertos.org/RTOS-task-notifications.html */
|
a binary semaphore. http://www.freertos.org/RTOS-task-notifications.html */
|
||||||
static StaticSemaphore_t xSemaphoreBuffer; /* Static so it doesn't use too much stack space. */
|
static StaticSemaphore_t xSemaphoreBuffer; /* Static so it doesn't use too much stack space. */
|
||||||
|
|
||||||
/* Create the semaphore. xSemaphoreCreateBinaryStatic() has one more
|
/* Create the semaphore. xSemaphoreCreateBinaryStatic() has one more
|
||||||
|
@ -484,7 +743,7 @@ static StaticSemaphore_t xSemaphoreBuffer; /* Static so it doesn't use too much
|
||||||
|
|
||||||
/* The semaphore created above had a statically allocated semaphore
|
/* The semaphore created above had a statically allocated semaphore
|
||||||
structure. Repeat the above using NULL as the xSemaphoreCreateBinaryStatic()
|
structure. Repeat the above using NULL as the xSemaphoreCreateBinaryStatic()
|
||||||
parameter so the queue structure is instead allocated dynamically. */
|
parameter so the semaphore structure is instead allocated dynamically. */
|
||||||
xSemaphore = xSemaphoreCreateBinaryStatic( NULL );
|
xSemaphore = xSemaphoreCreateBinaryStatic( NULL );
|
||||||
|
|
||||||
/* Ensure the semaphore passes a few sanity checks as a valid semaphore. */
|
/* Ensure the semaphore passes a few sanity checks as a valid semaphore. */
|
||||||
|
|
|
@ -1482,8 +1482,8 @@ BaseType_t xQueueCRReceive( QueueHandle_t xQueue, void *pvBuffer, TickType_t xTi
|
||||||
* xSemaphoreCreateCounting() or xSemaphoreGetMutexHolder() instead of calling
|
* xSemaphoreCreateCounting() or xSemaphoreGetMutexHolder() instead of calling
|
||||||
* these functions directly.
|
* these functions directly.
|
||||||
*/
|
*/
|
||||||
QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType ) PRIVILEGED_FUNCTION;
|
QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) PRIVILEGED_FUNCTION;
|
||||||
QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ) PRIVILEGED_FUNCTION;
|
QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ) PRIVILEGED_FUNCTION;
|
||||||
void* xQueueGetMutexHolder( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION;
|
void* xQueueGetMutexHolder( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -699,7 +699,8 @@ typedef QueueHandle_t SemaphoreHandle_t;
|
||||||
* \defgroup vSemaphoreCreateMutex vSemaphoreCreateMutex
|
* \defgroup vSemaphoreCreateMutex vSemaphoreCreateMutex
|
||||||
* \ingroup Semaphores
|
* \ingroup Semaphores
|
||||||
*/
|
*/
|
||||||
#define xSemaphoreCreateMutex() xQueueCreateMutex( queueQUEUE_TYPE_MUTEX )
|
#define xSemaphoreCreateMutex() xQueueCreateMutex( queueQUEUE_TYPE_MUTEX, NULL )
|
||||||
|
#define xSemaphoreCreateMutexStatic( pxStaticQueue ) xQueueCreateMutex( queueQUEUE_TYPE_MUTEX, ( pxStaticQueue ) )
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -754,7 +755,8 @@ typedef QueueHandle_t SemaphoreHandle_t;
|
||||||
* \defgroup vSemaphoreCreateMutex vSemaphoreCreateMutex
|
* \defgroup vSemaphoreCreateMutex vSemaphoreCreateMutex
|
||||||
* \ingroup Semaphores
|
* \ingroup Semaphores
|
||||||
*/
|
*/
|
||||||
#define xSemaphoreCreateRecursiveMutex() xQueueCreateMutex( queueQUEUE_TYPE_RECURSIVE_MUTEX )
|
#define xSemaphoreCreateRecursiveMutex() xQueueCreateMutex( queueQUEUE_TYPE_RECURSIVE_MUTEX, NULL )
|
||||||
|
#define xSemaphoreCreateRecursiveMutexStatic( pxStaticSemaphore ) xQueueCreateMutex( queueQUEUE_TYPE_RECURSIVE_MUTEX, pxStaticSemaphore )
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* semphr. h
|
* semphr. h
|
||||||
|
@ -817,7 +819,8 @@ typedef QueueHandle_t SemaphoreHandle_t;
|
||||||
* \defgroup xSemaphoreCreateCounting xSemaphoreCreateCounting
|
* \defgroup xSemaphoreCreateCounting xSemaphoreCreateCounting
|
||||||
* \ingroup Semaphores
|
* \ingroup Semaphores
|
||||||
*/
|
*/
|
||||||
#define xSemaphoreCreateCounting( uxMaxCount, uxInitialCount ) xQueueCreateCountingSemaphore( ( uxMaxCount ), ( uxInitialCount ) )
|
#define xSemaphoreCreateCounting( uxMaxCount, uxInitialCount ) xQueueCreateCountingSemaphore( ( uxMaxCount ), ( uxInitialCount ), ( NULL ) )
|
||||||
|
#define xSemaphoreCreateCountingStatic( uxMaxCount, uxInitialCount, pxStaticSemaphore ) xQueueCreateCountingSemaphore( ( uxMaxCount ), ( uxInitialCount ), ( pxStaticSemaphore ) )
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* semphr. h
|
* semphr. h
|
||||||
|
|
|
@ -342,7 +342,7 @@ size_t xQueueSizeInBytes;
|
||||||
#if( ( configASSERT_DEFINED == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) )
|
#if( ( configASSERT_DEFINED == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) )
|
||||||
{
|
{
|
||||||
/* Sanity check that the size of the structure used to declare a
|
/* Sanity check that the size of the structure used to declare a
|
||||||
variable of type StaticQueue_t or StaticSemaphore_t equals the size of
|
variable of type StaticQueue_t or StaticSemaphore_t equals the size of
|
||||||
the real queue and semaphore structures. */
|
the real queue and semaphore structures. */
|
||||||
volatile size_t xSize = sizeof( StaticQueue_t );
|
volatile size_t xSize = sizeof( StaticQueue_t );
|
||||||
configASSERT( xSize == sizeof( Queue_t ) );
|
configASSERT( xSize == sizeof( Queue_t ) );
|
||||||
|
@ -500,51 +500,29 @@ Queue_t *pxNewQueue;
|
||||||
|
|
||||||
#if ( configUSE_MUTEXES == 1 )
|
#if ( configUSE_MUTEXES == 1 )
|
||||||
|
|
||||||
QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType )
|
QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue )
|
||||||
{
|
{
|
||||||
Queue_t *pxNewQueue;
|
Queue_t *pxNewQueue;
|
||||||
|
const UBaseType_t uxMutexLength = ( UBaseType_t ) 1, uxMutexSize = ( UBaseType_t ) 0;
|
||||||
|
|
||||||
/* Prevent compiler warnings about unused parameters if
|
/* Prevent compiler warnings about unused parameters if
|
||||||
configUSE_TRACE_FACILITY does not equal 1. */
|
configUSE_TRACE_FACILITY does not equal 1. */
|
||||||
( void ) ucQueueType;
|
( void ) ucQueueType;
|
||||||
|
|
||||||
|
pxNewQueue = ( Queue_t * ) xQueueGenericCreate( uxMutexLength, uxMutexSize, NULL, pxStaticQueue, ucQueueType );
|
||||||
|
|
||||||
/* Allocate the new queue structure. */
|
/* Allocate the new queue structure. */
|
||||||
pxNewQueue = ( Queue_t * ) pvPortMalloc( sizeof( Queue_t ) );
|
|
||||||
if( pxNewQueue != NULL )
|
if( pxNewQueue != NULL )
|
||||||
{
|
{
|
||||||
/* Information required for priority inheritance. */
|
/* xQueueGenericCreate() will set all the queue structure members
|
||||||
|
correctly for a generic queue, but this function is creating a
|
||||||
|
mutex. Overwrite those members that need to be set differently -
|
||||||
|
in particular the information required for priority inheritance. */
|
||||||
pxNewQueue->pxMutexHolder = NULL;
|
pxNewQueue->pxMutexHolder = NULL;
|
||||||
pxNewQueue->uxQueueType = queueQUEUE_IS_MUTEX;
|
pxNewQueue->uxQueueType = queueQUEUE_IS_MUTEX;
|
||||||
|
|
||||||
/* Queues used as a mutex no data is actually copied into or out
|
/* In case this is a recursive mutex. */
|
||||||
of the queue. */
|
pxNewQueue->u.uxRecursiveCallCount = 0;
|
||||||
pxNewQueue->pcWriteTo = NULL;
|
|
||||||
pxNewQueue->u.pcReadFrom = NULL;
|
|
||||||
|
|
||||||
/* Each mutex has a length of 1 (like a binary semaphore) and
|
|
||||||
an item size of 0 as nothing is actually copied into or out
|
|
||||||
of the mutex. */
|
|
||||||
pxNewQueue->uxMessagesWaiting = ( UBaseType_t ) 0U;
|
|
||||||
pxNewQueue->uxLength = ( UBaseType_t ) 1U;
|
|
||||||
pxNewQueue->uxItemSize = ( UBaseType_t ) 0U;
|
|
||||||
pxNewQueue->xRxLock = queueUNLOCKED;
|
|
||||||
pxNewQueue->xTxLock = queueUNLOCKED;
|
|
||||||
|
|
||||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
|
||||||
{
|
|
||||||
pxNewQueue->ucQueueType = ucQueueType;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ( configUSE_QUEUE_SETS == 1 )
|
|
||||||
{
|
|
||||||
pxNewQueue->pxQueueSetContainer = NULL;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Ensure the event queues start with the correct state. */
|
|
||||||
vListInitialise( &( pxNewQueue->xTasksWaitingToSend ) );
|
|
||||||
vListInitialise( &( pxNewQueue->xTasksWaitingToReceive ) );
|
|
||||||
|
|
||||||
traceCREATE_MUTEX( pxNewQueue );
|
traceCREATE_MUTEX( pxNewQueue );
|
||||||
|
|
||||||
|
@ -618,7 +596,7 @@ Queue_t *pxNewQueue;
|
||||||
uxRecursiveCallCount member. */
|
uxRecursiveCallCount member. */
|
||||||
( pxMutex->u.uxRecursiveCallCount )--;
|
( pxMutex->u.uxRecursiveCallCount )--;
|
||||||
|
|
||||||
/* Have we unwound the call count? */
|
/* Has the recursive call count unwound to 0? */
|
||||||
if( pxMutex->u.uxRecursiveCallCount == ( UBaseType_t ) 0 )
|
if( pxMutex->u.uxRecursiveCallCount == ( UBaseType_t ) 0 )
|
||||||
{
|
{
|
||||||
/* Return the mutex. This will automatically unblock any other
|
/* Return the mutex. This will automatically unblock any other
|
||||||
|
@ -691,14 +669,14 @@ Queue_t *pxNewQueue;
|
||||||
|
|
||||||
#if ( configUSE_COUNTING_SEMAPHORES == 1 )
|
#if ( configUSE_COUNTING_SEMAPHORES == 1 )
|
||||||
|
|
||||||
QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount )
|
QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue )
|
||||||
{
|
{
|
||||||
QueueHandle_t xHandle;
|
QueueHandle_t xHandle;
|
||||||
|
|
||||||
configASSERT( uxMaxCount != 0 );
|
configASSERT( uxMaxCount != 0 );
|
||||||
configASSERT( uxInitialCount <= uxMaxCount );
|
configASSERT( uxInitialCount <= uxMaxCount );
|
||||||
|
|
||||||
xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, NULL, queueQUEUE_TYPE_COUNTING_SEMAPHORE );
|
xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQueue, queueQUEUE_TYPE_COUNTING_SEMAPHORE );
|
||||||
|
|
||||||
if( xHandle != NULL )
|
if( xHandle != NULL )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue