From d7aca3fb1a9e816ec8f33cf0aab6c22fb4abd11a Mon Sep 17 00:00:00 2001 From: richardbarry Date: Wed, 30 Jul 2008 09:35:03 +0000 Subject: [PATCH] Just remove a comment. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@422 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Source/portable/IAR/ARM_CM3/portmacro.h | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/Source/portable/IAR/ARM_CM3/portmacro.h b/Source/portable/IAR/ARM_CM3/portmacro.h index 5ea632df7..3725c09d4 100644 --- a/Source/portable/IAR/ARM_CM3/portmacro.h +++ b/Source/portable/IAR/ARM_CM3/portmacro.h @@ -47,13 +47,6 @@ licensing and training services. */ -/* - Change from V4.2.1: - - + Introduced usage of configKERNEL_INTERRUPT_PRIORITY macro to set the - interrupt priority used by the kernel. -*/ - #ifndef PORTMACRO_H #define PORTMACRO_H @@ -113,8 +106,8 @@ extern void vPortExitCritical( void ); extern void vPortSetInterruptMask( void ); extern void vPortClearInterruptMask( void ); -#define portDISABLE_INTERRUPTS() vPortSetInterruptMask(); -#define portENABLE_INTERRUPTS() vPortClearInterruptMask(); +#define portDISABLE_INTERRUPTS() vPortSetInterruptMask() +#define portENABLE_INTERRUPTS() vPortClearInterruptMask() #define portENTER_CRITICAL() vPortEnterCritical() #define portEXIT_CRITICAL() vPortExitCritical() #define portSET_INTERRUPT_MASK_FROM_ISR() 0;vPortSetInterruptMask() -- 2.39.2