Declare vApplicationMallocFailedHook function in task.h instead in each C heap file (#483)

vApplicationMallocFailedHook was declared in each Heap file. which forces users to declare it and can cause problems if the prototype of the function changes.

Co-authored-by: Pierre-Noel Bouteville <pnb990@gmail.com>
This commit is contained in:
pierrenoel-bouteville-act 2022-04-13 19:44:14 +02:00 committed by GitHub
parent b00250372e
commit e73fabce9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 14 additions and 5 deletions

View file

@ -279,7 +279,6 @@ void * pvPortMalloc( size_t xWantedSize )
{
if( pvReturn == NULL )
{
extern void vApplicationMallocFailedHook( void );
vApplicationMallocFailedHook();
}
else