mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Removed unwanted white space at the end of a macro continuation.
This commit is contained in:
parent
aa8a0d04b9
commit
90ac00641c
|
@ -131,7 +131,7 @@ from within the interrupts. */
|
||||||
uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); \
|
uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); \
|
||||||
{ \
|
{ \
|
||||||
uxValueForNormallyFullQueue++; \
|
uxValueForNormallyFullQueue++; \
|
||||||
xQueueSendFromISR( xNormallyFullQueue, ( void * ) &uxValueForNormallyFullQueue, &xHigherPriorityTaskWoken ); \
|
xQueueSendFromISR( xNormallyFullQueue, ( void * ) &uxValueForNormallyFullQueue, &xHigherPriorityTaskWoken ); \
|
||||||
} \
|
} \
|
||||||
portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); \
|
portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); \
|
||||||
} \
|
} \
|
||||||
|
@ -419,7 +419,7 @@ portBASE_TYPE xQueueStatus;
|
||||||
portENTER_CRITICAL();
|
portENTER_CRITICAL();
|
||||||
{
|
{
|
||||||
uxValueForNormallyEmptyQueue++;
|
uxValueForNormallyEmptyQueue++;
|
||||||
uxValue = uxValueForNormallyEmptyQueue;
|
uxValue = uxValueForNormallyEmptyQueue;
|
||||||
}
|
}
|
||||||
portEXIT_CRITICAL();
|
portEXIT_CRITICAL();
|
||||||
|
|
||||||
|
@ -449,7 +449,7 @@ portBASE_TYPE xQueueStatus;
|
||||||
portENTER_CRITICAL();
|
portENTER_CRITICAL();
|
||||||
{
|
{
|
||||||
uxValueForNormallyFullQueue++;
|
uxValueForNormallyFullQueue++;
|
||||||
uxValueToTx = uxValueForNormallyFullQueue;
|
uxValueToTx = uxValueForNormallyFullQueue;
|
||||||
}
|
}
|
||||||
portEXIT_CRITICAL();
|
portEXIT_CRITICAL();
|
||||||
|
|
||||||
|
@ -461,7 +461,7 @@ portBASE_TYPE xQueueStatus;
|
||||||
portENTER_CRITICAL();
|
portENTER_CRITICAL();
|
||||||
{
|
{
|
||||||
uxValueForNormallyFullQueue++;
|
uxValueForNormallyFullQueue++;
|
||||||
uxValueToTx = uxValueForNormallyFullQueue;
|
uxValueToTx = uxValueForNormallyFullQueue;
|
||||||
}
|
}
|
||||||
portEXIT_CRITICAL();
|
portEXIT_CRITICAL();
|
||||||
|
|
||||||
|
@ -539,7 +539,7 @@ portBASE_TYPE xQueueStatus;
|
||||||
portENTER_CRITICAL();
|
portENTER_CRITICAL();
|
||||||
{
|
{
|
||||||
uxValueForNormallyFullQueue++;
|
uxValueForNormallyFullQueue++;
|
||||||
uxValueToTx = uxValueForNormallyFullQueue;
|
uxValueToTx = uxValueForNormallyFullQueue;
|
||||||
}
|
}
|
||||||
portEXIT_CRITICAL();
|
portEXIT_CRITICAL();
|
||||||
|
|
||||||
|
@ -551,7 +551,7 @@ portBASE_TYPE xQueueStatus;
|
||||||
portENTER_CRITICAL();
|
portENTER_CRITICAL();
|
||||||
{
|
{
|
||||||
uxValueForNormallyFullQueue++;
|
uxValueForNormallyFullQueue++;
|
||||||
uxValueToTx = uxValueForNormallyFullQueue;
|
uxValueToTx = uxValueForNormallyFullQueue;
|
||||||
}
|
}
|
||||||
portEXIT_CRITICAL();
|
portEXIT_CRITICAL();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue