aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/FreeRTOS/MapleFreeRTOS.cpp
blob: da06b3d891be60c74c65d6dff5dfac89e3415336 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "MapleFreeRTOS.h"

extern "C" {

void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed char *pcTaskName )
{
	/* This function will get called if a task overflows its stack.   If the
	parameters are corrupt then inspect pxCurrentTCB to find which was the
	offending task. */

	( void ) pxTask;
	( void ) pcTaskName;

	for( ;; );
}

}