mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-24 15:31:56 -04:00
Just remove a comment.
This commit is contained in:
parent
6eed669d06
commit
56d5f4ac9b
|
@ -47,13 +47,6 @@
|
||||||
licensing and training services.
|
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
|
#ifndef PORTMACRO_H
|
||||||
#define PORTMACRO_H
|
#define PORTMACRO_H
|
||||||
|
@ -113,8 +106,8 @@ extern void vPortExitCritical( void );
|
||||||
extern void vPortSetInterruptMask( void );
|
extern void vPortSetInterruptMask( void );
|
||||||
extern void vPortClearInterruptMask( void );
|
extern void vPortClearInterruptMask( void );
|
||||||
|
|
||||||
#define portDISABLE_INTERRUPTS() vPortSetInterruptMask();
|
#define portDISABLE_INTERRUPTS() vPortSetInterruptMask()
|
||||||
#define portENABLE_INTERRUPTS() vPortClearInterruptMask();
|
#define portENABLE_INTERRUPTS() vPortClearInterruptMask()
|
||||||
#define portENTER_CRITICAL() vPortEnterCritical()
|
#define portENTER_CRITICAL() vPortEnterCritical()
|
||||||
#define portEXIT_CRITICAL() vPortExitCritical()
|
#define portEXIT_CRITICAL() vPortExitCritical()
|
||||||
#define portSET_INTERRUPT_MASK_FROM_ISR() 0;vPortSetInterruptMask()
|
#define portSET_INTERRUPT_MASK_FROM_ISR() 0;vPortSetInterruptMask()
|
||||||
|
|
Loading…
Reference in a new issue