From: richardbarry Date: Wed, 30 Jul 2008 09:35:03 +0000 (+0000) Subject: Just remove a comment. X-Git-Tag: V5.0.3~5 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d7aca3fb1a9e816ec8f33cf0aab6c22fb4abd11a;p=freertos Just remove a comment. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@422 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- 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()