/* A block time of 0 means 'don't block'. */\r
#define intsemNO_BLOCK 0\r
\r
+/* The maximum count value for the counting semaphore given from an\r
+interrupt. */\r
+#define intsemMAX_COUNT 3\r
+\r
/*-----------------------------------------------------------*/\r
\r
/*\r
static void vInterruptMutexSlaveTask( void *pvParameters );\r
static void vInterruptMutexMasterTask( void *pvParameters );\r
\r
+/*\r
+ * A test whereby the master takes the shared and interrupt mutexes in that\r
+ * order, then gives them back in the same order, ensuring the priority\r
+ * inheritance is behaving as expected at each step.\r
+ */\r
+static void prvTakeAndGiveInTheSameOrder( void );\r
+\r
+/*\r
+ * A test whereby the master takes the shared and interrupt mutexes in that\r
+ * order, then gives them back in the opposite order to which they were taken,\r
+ * ensuring the priority inheritance is behaving as expected at each step.\r
+ */\r
+static void prvTakeAndGiveInTheOppositeOrder( void );\r
+\r
+/*\r
+ * A simple task that interacts with an interrupt using a counting semaphore,\r
+ * primarily for code coverage purposes.\r
+ */\r
+static void vInterruptCountingSemaphoreTask( void *pvParameters );\r
+\r
/*-----------------------------------------------------------*/\r
\r
/* Flag that will be latched to pdTRUE should any unexpected behaviour be\r
\r
/* Counters that are incremented on each cycle of a test. This is used to\r
detect a stalled task - a test that is no longer running. */\r
-static volatile uint32_t ulMasterLoops = 0;\r
+static volatile uint32_t ulMasterLoops = 0, ulCountingSemaphoreLoops = 0;\r
\r
/* Handles of the test tasks that must be accessed from other test tasks. */\r
static TaskHandle_t xSlaveHandle;\r
there are some circumstances when it may be desirable. */\r
static SemaphoreHandle_t xISRMutex = NULL;\r
\r
+/* A counting semaphore which is given from an interrupt. */\r
+static SemaphoreHandle_t xISRCountingSemaphore = NULL;\r
+\r
/* A mutex which is shared between the master and slave tasks - the master\r
does both sharing of this mutex with the slave and receiving a mutex from the\r
interrupt. */\r
/* Flag that allows the master task to control when the interrupt gives or does\r
not give the mutex. There is no mutual exclusion on this variable, but this is\r
only test code and it should be fine in the 32=bit test environment. */\r
-static BaseType_t xOkToGiveMutex = pdFALSE;\r
+static BaseType_t xOkToGiveMutex = pdFALSE, xOkToGiveCountingSemaphore = pdFALSE;\r
+\r
+/* Used to coordinate timing between tasks and the interrupt. */\r
+const TickType_t xInterruptGivePeriod = pdMS_TO_TICKS( intsemINTERRUPT_MUTEX_GIVE_PERIOD_MS );\r
\r
/*-----------------------------------------------------------*/\r
\r
void vStartInterruptSemaphoreTasks( void )\r
{\r
- /* Create the mutex that is given from an interrupt. */\r
+ /* Create the semaphores that are given from an interrupt. */\r
xISRMutex = xSemaphoreCreateMutex();\r
configASSERT( xISRMutex );\r
+ xISRCountingSemaphore = xSemaphoreCreateCounting( intsemMAX_COUNT, 0 );\r
+ configASSERT( xISRCountingSemaphore );\r
\r
/* Create the mutex that is shared between the master and slave tasks (the\r
master receives a mutex from an interrupt and shares a mutex with the\r
/* Create the tasks that share mutexes between then and with interrupts. */\r
xTaskCreate( vInterruptMutexSlaveTask, "IntMuS", configMINIMAL_STACK_SIZE, NULL, intsemSLAVE_PRIORITY, &xSlaveHandle );\r
xTaskCreate( vInterruptMutexMasterTask, "IntMuM", configMINIMAL_STACK_SIZE, NULL, intsemMASTER_PRIORITY, NULL );\r
+\r
+ /* Create the task that blocks on the counting semaphore. */\r
+ xTaskCreate( vInterruptCountingSemaphoreTask, "IntCnt", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
}\r
/*-----------------------------------------------------------*/\r
\r
static void vInterruptMutexMasterTask( void *pvParameters )\r
{\r
-const TickType_t xInterruptGivePeriod = pdMS_TO_TICKS( intsemINTERRUPT_MUTEX_GIVE_PERIOD_MS );\r
-\r
/* Just to avoid compiler warnings. */\r
( void ) pvParameters;\r
\r
for( ;; )\r
{\r
- /* Ensure the slave is suspended, and that this task is running at the\r
- lower priority as expected as the start conditions. */\r
- #if( INCLUDE_eTaskGetState == 1 )\r
- {\r
- configASSERT( eTaskGetState( xSlaveHandle ) == eSuspended );\r
- }\r
- #endif /* INCLUDE_eTaskGetState */\r
+ prvTakeAndGiveInTheSameOrder();\r
\r
- if( uxTaskPriorityGet( NULL ) != intsemMASTER_PRIORITY )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+ /* Ensure not to starve out other tests. */\r
+ ulMasterLoops++;\r
+ vTaskDelay( intsemINTERRUPT_MUTEX_GIVE_PERIOD_MS );\r
\r
- /* Take the semaphore that is shared with the slave. */\r
- if( xSemaphoreTake( xMasterSlaveMutex, intsemNO_BLOCK ) != pdPASS )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+ prvTakeAndGiveInTheOppositeOrder();\r
\r
- /* This task now has the mutex. Unsuspend the slave so it too\r
- attempts to take the mutex. */\r
- vTaskResume( xSlaveHandle );\r
+ /* Ensure not to starve out other tests. */\r
+ ulMasterLoops++;\r
+ vTaskDelay( intsemINTERRUPT_MUTEX_GIVE_PERIOD_MS );\r
+ }\r
+}\r
+/*-----------------------------------------------------------*/\r
\r
- /* The slave has the higher priority so should now have executed and\r
- blocked on the semaphore. */\r
- #if( INCLUDE_eTaskGetState == 1 )\r
- {\r
- configASSERT( eTaskGetState( xSlaveHandle ) == eBlocked );\r
- }\r
- #endif /* INCLUDE_eTaskGetState */\r
+static void prvTakeAndGiveInTheSameOrder( void )\r
+{\r
+ /* Ensure the slave is suspended, and that this task is running at the\r
+ lower priority as expected as the start conditions. */\r
+ #if( INCLUDE_eTaskGetState == 1 )\r
+ {\r
+ configASSERT( eTaskGetState( xSlaveHandle ) == eSuspended );\r
+ }\r
+ #endif /* INCLUDE_eTaskGetState */\r
\r
- /* This task should now have inherited the priority of the slave\r
- task. */\r
- if( uxTaskPriorityGet( NULL ) != intsemSLAVE_PRIORITY )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+ if( uxTaskPriorityGet( NULL ) != intsemMASTER_PRIORITY )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
\r
- /* Now wait a little longer than the time between ISR gives to also\r
- obtain the ISR mutex. */\r
- xOkToGiveMutex = pdTRUE;\r
- if( xSemaphoreTake( xISRMutex, ( xInterruptGivePeriod * 2 ) ) != pdPASS )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
- xOkToGiveMutex = pdFALSE;\r
+ /* Take the semaphore that is shared with the slave. */\r
+ if( xSemaphoreTake( xMasterSlaveMutex, intsemNO_BLOCK ) != pdPASS )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
\r
- /* Attempting to take again immediately should fail as the mutex is\r
- already held. */\r
- if( xSemaphoreTake( xISRMutex, intsemNO_BLOCK ) != pdFAIL )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+ /* This task now has the mutex. Unsuspend the slave so it too\r
+ attempts to take the mutex. */\r
+ vTaskResume( xSlaveHandle );\r
\r
- /* Should still be at the priority of the slave task. */\r
- if( uxTaskPriorityGet( NULL ) != intsemSLAVE_PRIORITY )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+ /* The slave has the higher priority so should now have executed and\r
+ blocked on the semaphore. */\r
+ #if( INCLUDE_eTaskGetState == 1 )\r
+ {\r
+ configASSERT( eTaskGetState( xSlaveHandle ) == eBlocked );\r
+ }\r
+ #endif /* INCLUDE_eTaskGetState */\r
\r
- /* Give back the ISR semaphore to ensure the priority is not\r
- disinherited as the shared mutex (which the higher priority task is\r
- attempting to obtain) is still held. */\r
- if( xSemaphoreGive( xISRMutex ) != pdPASS )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+ /* This task should now have inherited the priority of the slave\r
+ task. */\r
+ if( uxTaskPriorityGet( NULL ) != intsemSLAVE_PRIORITY )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
\r
- if( uxTaskPriorityGet( NULL ) != intsemSLAVE_PRIORITY )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+ /* Now wait a little longer than the time between ISR gives to also\r
+ obtain the ISR mutex. */\r
+ xOkToGiveMutex = pdTRUE;\r
+ if( xSemaphoreTake( xISRMutex, ( xInterruptGivePeriod * 2 ) ) != pdPASS )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+ xOkToGiveMutex = pdFALSE;\r
\r
- /* Finally give back the shared mutex. This time the higher priority\r
- task should run before this task runs again - so this task should have\r
- disinherited the priority and the higher priority task should be in the\r
- suspended state again. */\r
- if( xSemaphoreGive( xMasterSlaveMutex ) != pdPASS )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+ /* Attempting to take again immediately should fail as the mutex is\r
+ already held. */\r
+ if( xSemaphoreTake( xISRMutex, intsemNO_BLOCK ) != pdFAIL )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
\r
- if( uxTaskPriorityGet( NULL ) != intsemMASTER_PRIORITY )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+ /* Should still be at the priority of the slave task. */\r
+ if( uxTaskPriorityGet( NULL ) != intsemSLAVE_PRIORITY )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
\r
- #if( INCLUDE_eTaskGetState == 1 )\r
- {\r
- configASSERT( eTaskGetState( xSlaveHandle ) == eSuspended );\r
- }\r
- #endif /* INCLUDE_eTaskGetState */\r
+ /* Give back the ISR semaphore to ensure the priority is not\r
+ disinherited as the shared mutex (which the higher priority task is\r
+ attempting to obtain) is still held. */\r
+ if( xSemaphoreGive( xISRMutex ) != pdPASS )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
\r
- /* Ensure not to starve out other tests. */\r
- ulMasterLoops++;\r
- vTaskDelay( intsemINTERRUPT_MUTEX_GIVE_PERIOD_MS );\r
+ if( uxTaskPriorityGet( NULL ) != intsemSLAVE_PRIORITY )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
\r
+ /* Finally give back the shared mutex. This time the higher priority\r
+ task should run before this task runs again - so this task should have\r
+ disinherited the priority and the higher priority task should be in the\r
+ suspended state again. */\r
+ if( xSemaphoreGive( xMasterSlaveMutex ) != pdPASS )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
\r
- /* Repeat exactly up to the point where the mutexes are given back.\r
- This time the shared mutex is given back first. */\r
- if( xSemaphoreTake( xMasterSlaveMutex, intsemNO_BLOCK ) != pdPASS )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+ if( uxTaskPriorityGet( NULL ) != intsemMASTER_PRIORITY )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
\r
- vTaskResume( xSlaveHandle );\r
+ #if( INCLUDE_eTaskGetState == 1 )\r
+ {\r
+ configASSERT( eTaskGetState( xSlaveHandle ) == eSuspended );\r
+ }\r
+ #endif /* INCLUDE_eTaskGetState */\r
\r
- #if( INCLUDE_eTaskGetState == 1 )\r
- {\r
- configASSERT( eTaskGetState( xSlaveHandle ) == eBlocked );\r
- }\r
- #endif /* INCLUDE_eTaskGetState */\r
+ /* Reset the mutex ready for the next round. */\r
+ xQueueReset( xISRMutex );\r
+}\r
+/*-----------------------------------------------------------*/\r
\r
- if( uxTaskPriorityGet( NULL ) != intsemSLAVE_PRIORITY )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+static void prvTakeAndGiveInTheOppositeOrder( void )\r
+{\r
+ /* Ensure the slave is suspended, and that this task is running at the\r
+ lower priority as expected as the start conditions. */\r
+ #if( INCLUDE_eTaskGetState == 1 )\r
+ {\r
+ configASSERT( eTaskGetState( xSlaveHandle ) == eSuspended );\r
+ }\r
+ #endif /* INCLUDE_eTaskGetState */\r
\r
- xOkToGiveMutex = pdTRUE;\r
- if( xSemaphoreTake( xISRMutex, ( xInterruptGivePeriod * 2 ) ) != pdPASS )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
- xOkToGiveMutex = pdFALSE;\r
+ if( uxTaskPriorityGet( NULL ) != intsemMASTER_PRIORITY )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
\r
- if( uxTaskPriorityGet( NULL ) != intsemSLAVE_PRIORITY )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+ /* Take the semaphore that is shared with the slave. */\r
+ if( xSemaphoreTake( xMasterSlaveMutex, intsemNO_BLOCK ) != pdPASS )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
\r
- /* This is where the differences start as this time the shared mutex is\r
- given back first. This time to the higher priority task should run\r
- before this task gets to the point of releasing the interrupt mutex - so\r
- this task should have disinherited the priority and the higher priority\r
- task should be in the suspended state again. */\r
- if( xSemaphoreGive( xMasterSlaveMutex ) != pdPASS )\r
- {\r
- xErrorDetected = pdTRUE;\r
- }\r
+ /* This task now has the mutex. Unsuspend the slave so it too\r
+ attempts to take the mutex. */\r
+ vTaskResume( xSlaveHandle );\r
\r
- /* Give back the interrupt semaphore too, so the mutex held count goes\r
- back to 0. The mutex will then have to be reset so the ISR can give it\r
- in the next cycle. */\r
- xSemaphoreGive( xISRMutex );\r
- xQueueReset( ( QueueHandle_t ) xISRMutex );\r
+ /* The slave has the higher priority so should now have executed and\r
+ blocked on the semaphore. */\r
+ #if( INCLUDE_eTaskGetState == 1 )\r
+ {\r
+ configASSERT( eTaskGetState( xSlaveHandle ) == eBlocked );\r
+ }\r
+ #endif /* INCLUDE_eTaskGetState */\r
\r
- /* Ensure not to starve out other tests. */\r
- ulMasterLoops++;\r
- vTaskDelay( intsemINTERRUPT_MUTEX_GIVE_PERIOD_MS );\r
+ /* This task should now have inherited the priority of the slave\r
+ task. */\r
+ if( uxTaskPriorityGet( NULL ) != intsemSLAVE_PRIORITY )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+\r
+ /* Now wait a little longer than the time between ISR gives to also\r
+ obtain the ISR mutex. */\r
+ xOkToGiveMutex = pdTRUE;\r
+ if( xSemaphoreTake( xISRMutex, ( xInterruptGivePeriod * 2 ) ) != pdPASS )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+ xOkToGiveMutex = pdFALSE;\r
+\r
+ /* Attempting to take again immediately should fail as the mutex is\r
+ already held. */\r
+ if( xSemaphoreTake( xISRMutex, intsemNO_BLOCK ) != pdFAIL )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+\r
+ /* Should still be at the priority of the slave task. */\r
+ if( uxTaskPriorityGet( NULL ) != intsemSLAVE_PRIORITY )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+\r
+ /* Give back the shared semaphore to ensure the priority is not disinherited\r
+ as the ISR mutex is still held. The higher priority slave task should run\r
+ before this task runs again. */\r
+ if( xSemaphoreGive( xMasterSlaveMutex ) != pdPASS )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+\r
+ /* Should still be at the priority of the slave task as this task still\r
+ holds one semaphore (this is a simplification in the priority inheritance\r
+ mechanism. */\r
+ if( uxTaskPriorityGet( NULL ) != intsemSLAVE_PRIORITY )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
}\r
+\r
+ /* Give back the ISR semaphore, which should result in the priority being\r
+ disinherited as it was the last mutex held. */\r
+ if( xSemaphoreGive( xISRMutex ) != pdPASS )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+\r
+ if( uxTaskPriorityGet( NULL ) != intsemMASTER_PRIORITY )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+\r
+ /* Reset the mutex ready for the next round. */\r
+ xQueueReset( xISRMutex );\r
}\r
/*-----------------------------------------------------------*/\r
\r
}\r
/*-----------------------------------------------------------*/\r
\r
+static void vInterruptCountingSemaphoreTask( void *pvParameters )\r
+{\r
+BaseType_t xCount;\r
+const TickType_t xDelay = pdMS_TO_TICKS( intsemINTERRUPT_MUTEX_GIVE_PERIOD_MS ) * ( intsemMAX_COUNT + 1 );\r
+\r
+ ( void ) pvParameters;\r
+\r
+ for( ;; )\r
+ {\r
+ /* Expect to start with the counting semaphore empty. */\r
+ if( uxQueueMessagesWaiting( ( QueueHandle_t ) xISRCountingSemaphore ) != 0 )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+\r
+ /* Wait until it is expected that the interrupt will have filled the\r
+ counting semaphore. */\r
+ xOkToGiveCountingSemaphore = pdTRUE;\r
+ vTaskDelay( xDelay );\r
+ xOkToGiveCountingSemaphore = pdFALSE;\r
+\r
+ /* Now it is expected that the counting semaphore is full. */\r
+ if( uxQueueMessagesWaiting( ( QueueHandle_t ) xISRCountingSemaphore ) != intsemMAX_COUNT )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+\r
+ if( uxQueueSpacesAvailable( ( QueueHandle_t ) xISRCountingSemaphore ) != 0 )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+\r
+ ulCountingSemaphoreLoops++;\r
+\r
+ /* Expect to be able to take the counting semaphore intsemMAX_COUNT\r
+ times. A block time of 0 is used as the semaphore should already be\r
+ there. */\r
+ xCount = 0;\r
+ while( xSemaphoreTake( xISRCountingSemaphore, 0 ) == pdPASS )\r
+ {\r
+ xCount++;\r
+ }\r
+\r
+ if( xCount != intsemMAX_COUNT )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+\r
+ /* Now raise the priority of this task so it runs immediately that the\r
+ semaphore is given from the interrupt. */\r
+ vTaskPrioritySet( NULL, configMAX_PRIORITIES - 1 );\r
+\r
+ /* Block to wait for the semaphore to be given from the interrupt. */\r
+ xOkToGiveCountingSemaphore = pdTRUE;\r
+ xSemaphoreTake( xISRCountingSemaphore, portMAX_DELAY );\r
+ xSemaphoreTake( xISRCountingSemaphore, portMAX_DELAY );\r
+ xOkToGiveCountingSemaphore = pdFALSE;\r
+\r
+ /* Reset the priority so as not to disturbe other tests too much. */\r
+ vTaskPrioritySet( NULL, tskIDLE_PRIORITY );\r
+\r
+ ulCountingSemaphoreLoops++;\r
+ }\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
void vInterruptSemaphorePeriodicTest( void )\r
{\r
static TickType_t xLastGiveTime = 0;\r
+BaseType_t xHigherPriorityTaskWoken = pdFALSE;\r
TickType_t xTimeNow;\r
\r
/* No mutual exclusion on xOkToGiveMutex, but this is only test code (and\r
configASSERT( xISRMutex );\r
if( xOkToGiveMutex != pdFALSE )\r
{\r
+ /* Null is used as the second parameter in this give, and non-NULL\r
+ in the other gives for code coverage reasons. */\r
xSemaphoreGiveFromISR( xISRMutex, NULL );\r
\r
/* Second give attempt should fail. */\r
- configASSERT( xSemaphoreGiveFromISR( xISRMutex, NULL ) == pdFAIL );\r
+ configASSERT( xSemaphoreGiveFromISR( xISRMutex, &xHigherPriorityTaskWoken ) == pdFAIL );\r
+ }\r
+\r
+ if( xOkToGiveCountingSemaphore != pdFALSE )\r
+ {\r
+ xSemaphoreGiveFromISR( xISRCountingSemaphore, &xHigherPriorityTaskWoken );\r
}\r
xLastGiveTime = xTimeNow;\r
}\r
+\r
+ /* Remove compiler warnings about the value being set but not used. */\r
+ ( void ) xHigherPriorityTaskWoken;\r
}\r
/*-----------------------------------------------------------*/\r
\r
/* This is called to check that all the created tasks are still running. */\r
BaseType_t xAreInterruptSemaphoreTasksStillRunning( void )\r
{\r
-static uint32_t ulLastMasterLoopCounter = 0;\r
+static uint32_t ulLastMasterLoopCounter = 0, ulLastCountingSemaphoreLoops = 0;\r
\r
/* If the demo tasks are running then it is expected that the loop counters\r
will have changed since this function was last called. */\r
\r
ulLastMasterLoopCounter = ulMasterLoops;\r
\r
+ if( ulLastCountingSemaphoreLoops == ulCountingSemaphoreLoops )\r
+ {\r
+ xErrorDetected = pdTRUE;\r
+ }\r
+\r
+ ulLastCountingSemaphoreLoops = ulCountingSemaphoreLoops++;\r
+\r
/* Errors detected in the task itself will have latched xErrorDetected\r
to true. */\r
\r
{\r
traceQUEUE_SEND_FROM_ISR( pxQueue );\r
\r
- if( prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ) != pdFALSE )\r
+ /* A task can only have an inherited priority if it is a mutex\r
+ holder - and if there is a mutex holder then the mutex cannot be\r
+ given from an ISR. Therefore, unlike the xQueueGenericGive()\r
+ function, there is no need to determine the need for priority\r
+ disinheritance here or to clear the mutex holder TCB member. */\r
+ ( void ) prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition );\r
+\r
+ /* The event list is not altered if the queue is locked. This will\r
+ be done when the queue is unlocked later. */\r
+ if( pxQueue->xTxLock == queueUNLOCKED )\r
{\r
- /* This is a special case that can only be executed if a task\r
- holds multiple mutexes and then gives the mutexes back in an\r
- order that is different to that in which they were taken. */\r
- if( pxHigherPriorityTaskWoken != NULL )\r
+ #if ( configUSE_QUEUE_SETS == 1 )\r
{\r
- *pxHigherPriorityTaskWoken = pdTRUE;\r
+ if( pxQueue->pxQueueSetContainer != NULL )\r
+ {\r
+ if( prvNotifyQueueSetContainer( pxQueue, xCopyPosition ) == pdTRUE )\r
+ {\r
+ /* The queue is a member of a queue set, and posting\r
+ to the queue set caused a higher priority task to\r
+ unblock. A context switch is required. */\r
+ if( pxHigherPriorityTaskWoken != NULL )\r
+ {\r
+ *pxHigherPriorityTaskWoken = pdTRUE;\r
+ }\r
+ else\r
+ {\r
+ mtCOVERAGE_TEST_MARKER();\r
+ }\r
+ }\r
+ else\r
+ {\r
+ mtCOVERAGE_TEST_MARKER();\r
+ }\r
+ }\r
+ else\r
+ {\r
+ if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
+ {\r
+ if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
+ {\r
+ /* The task waiting has a higher priority so\r
+ record that a context switch is required. */\r
+ if( pxHigherPriorityTaskWoken != NULL )\r
+ {\r
+ *pxHigherPriorityTaskWoken = pdTRUE;\r
+ }\r
+ else\r
+ {\r
+ mtCOVERAGE_TEST_MARKER();\r
+ }\r
+ }\r
+ else\r
+ {\r
+ mtCOVERAGE_TEST_MARKER();\r
+ }\r
+ }\r
+ else\r
+ {\r
+ mtCOVERAGE_TEST_MARKER();\r
+ }\r
+ }\r
}\r
- else\r
+ #else /* configUSE_QUEUE_SETS */\r
{\r
- mtCOVERAGE_TEST_MARKER();\r
+ if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
+ {\r
+ if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
+ {\r
+ /* The task waiting has a higher priority so record that a\r
+ context switch is required. */\r
+ if( pxHigherPriorityTaskWoken != NULL )\r
+ {\r
+ *pxHigherPriorityTaskWoken = pdTRUE;\r
+ }\r
+ else\r
+ {\r
+ mtCOVERAGE_TEST_MARKER();\r
+ }\r
+ }\r
+ else\r
+ {\r
+ mtCOVERAGE_TEST_MARKER();\r
+ }\r
+ }\r
+ else\r
+ {\r
+ mtCOVERAGE_TEST_MARKER();\r
+ }\r
}\r
+ #endif /* configUSE_QUEUE_SETS */\r
}\r
+ else\r
+ {\r
+ /* Increment the lock count so the task that unlocks the queue\r
+ knows that data was posted while it was locked. */\r
+ ++( pxQueue->xTxLock );\r
+ }\r
+\r
+ xReturn = pdPASS;\r
+ }\r
+ else\r
+ {\r
+ traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue );\r
+ xReturn = errQUEUE_FULL;\r
+ }\r
+ }\r
+ portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );\r
+\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+BaseType_t xQueueGenericGiveFromISR( QueueHandle_t xQueue, BaseType_t * const pxHigherPriorityTaskWoken )\r
+{\r
+BaseType_t xReturn;\r
+UBaseType_t uxSavedInterruptStatus;\r
+Queue_t * const pxQueue = ( Queue_t * ) xQueue;\r
+\r
+ configASSERT( pxQueue );\r
+\r
+ /* xQueueGenericSendFromISR() should be used in the item size is not 0. */\r
+ configASSERT( pxQueue->uxItemSize == 0 );\r
+\r
+ /* RTOS ports that support interrupt nesting have the concept of a maximum\r
+ system call (or maximum API call) interrupt priority. Interrupts that are\r
+ above the maximum system call priority are kept permanently enabled, even\r
+ when the RTOS kernel is in a critical section, but cannot make any calls to\r
+ FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h\r
+ then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion\r
+ failure if a FreeRTOS API function is called from an interrupt that has been\r
+ assigned a priority above the configured maximum system call priority.\r
+ Only FreeRTOS functions that end in FromISR can be called from interrupts\r
+ that have been assigned a priority at or (logically) below the maximum\r
+ system call interrupt priority. FreeRTOS maintains a separate interrupt\r
+ safe API to ensure interrupt entry is as fast and as simple as possible.\r
+ More information (albeit Cortex-M specific) is provided on the following\r
+ link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */\r
+ portASSERT_IF_INTERRUPT_PRIORITY_INVALID();\r
+\r
+ /* Similar to xQueueGenericSendFromISR() but used with semaphores where the\r
+ item size is 0. Don't directly wake a task that was blocked on a queue\r
+ read, instead return a flag to say whether a context switch is required or\r
+ not (i.e. has a task with a higher priority than us been woken by this\r
+ post). */\r
+ uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();\r
+ {\r
+ /* When the queue is used to implement a semaphore no data is ever\r
+ moved through the queue but it is still valid to see if the queue 'has\r
+ space'. */\r
+ if( pxQueue->uxMessagesWaiting < pxQueue->uxLength )\r
+ {\r
+ traceQUEUE_SEND_FROM_ISR( pxQueue );\r
+\r
+ /* A task can only have an inherited priority if it is a mutex\r
+ holder - and if there is a mutex holder then the mutex cannot be\r
+ given from an ISR. Therefore, unlike the xQueueGenericGive()\r
+ function, there is no need to determine the need for priority\r
+ disinheritance here or to clear the mutex holder TCB member. */\r
+\r
+ ++( pxQueue->uxMessagesWaiting );\r
\r
/* The event list is not altered if the queue is locked. This will\r
be done when the queue is unlocked later. */\r
{\r
if( pxQueue->pxQueueSetContainer != NULL )\r
{\r
- if( prvNotifyQueueSetContainer( pxQueue, xCopyPosition ) == pdTRUE )\r
+ if( prvNotifyQueueSetContainer( pxQueue, queueSEND_TO_BACK ) == pdTRUE )\r
{\r
- /* The queue is a member of a queue set, and posting\r
- to the queue set caused a higher priority task to\r
- unblock. A context switch is required. */\r
+ /* The semaphore is a member of a queue set, and\r
+ posting to the queue set caused a higher priority\r
+ task to unblock. A context switch is required. */\r
if( pxHigherPriorityTaskWoken != NULL )\r
{\r
*pxHigherPriorityTaskWoken = pdTRUE;\r
xReturn = errQUEUE_FULL;\r
}\r
}\r
- portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );\r
+ portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); //0.36\r
\r
return xReturn;\r
}\r