summaryrefslogtreecommitdiff
path: root/FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c
diff options
context:
space:
mode:
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2020-02-06 18:52:35 +0000
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2020-02-06 18:52:35 +0000
commitfe846d63c4f03fcbf15edf6a414b55c3a48d68be (patch)
tree649149d5b2f747a564e2e1505a47bc54eb1bc5d3 /FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c
parentbc71fa28d535d5214634f4d85dc026cb5adbd9d7 (diff)
downloadfreertos-fe846d63c4f03fcbf15edf6a414b55c3a48d68be.tar.gz
Update libraries and sundry check-ins ready for the V10.3.0 kernel release.
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@2817 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c')
-rw-r--r--FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c b/FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c
index be659fd4f..79e8b4d46 100644
--- a/FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c
+++ b/FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c
@@ -248,11 +248,11 @@ void vPortEnterCritical( void )
void vPortExitCritical( void )
{
configASSERT( uxCriticalNesting );
- uxCriticalNesting--;
- if( uxCriticalNesting == 0 )
- {
- portENABLE_INTERRUPTS();
- }
+ uxCriticalNesting--;
+ if( uxCriticalNesting == 0 )
+ {
+ portENABLE_INTERRUPTS();
+ }
}
/*-----------------------------------------------------------*/