Comment vPortEnterCritical/vPortExitCritical functions

This commit is contained in:
Angus Gratton 2015-05-21 12:13:18 +10:00
parent df9e9bf9a4
commit 8e174aa518
2 changed files with 7 additions and 17 deletions
FreeRTOS/Source/portable/esp8266

View file

@ -4,23 +4,6 @@
#include <string.h>
#include "FreeRTOS.h"
/* Enable/Disable Interrupts
Called from many of the linked libraries to protect critical sections.
*/
/*
void vPortEnterCritical( void )
{
portDISABLE_INTERRUPTS();
}
void vPortExitCritical( void )
{
portEXIT_CRITICAL();
}
*/
/* libc memory management functions.
Many of these are linked from the RTOS SDK blob libraries.