FreeRTOS Support Archive
The FreeRTOS support forum is used to obtain active support directly from Real
Time Engineers Ltd. In return for using our top quality software and services for
free, we request you play fair and do your bit to help others too! Sign up
to receive notifications of new support topics then help where you can.
This is a read only archive of threads posted to the FreeRTOS support forum.
The archive is updated every week, so will not always contain the very latest posts.
Use these archive pages to search previous posts. Use the Live FreeRTOS Forum
link to reply to a post, or start a new support thread.
[FreeRTOS Home] [Live FreeRTOS Forum] [FAQ] [Archive Top] [November 2005 Threads] Add Realloc and CallocPosted by enrico_entity on November 23, 2005 Is it possible to add in future release realloc and calloc function? It is sufficient to add this code:
void *pvPortCalloc( size_t nmemb, size_t size ) { void *pvReturn;
vTaskSuspendAll(); { pvReturn = calloc( nmemb, size ); } xTaskResumeAll();
return pvReturn; }
void *pvPortRealloc( void *pv, size_t size ) { void *pvReturn;
vTaskSuspendAll(); { pvReturn = realloc( pv, size ); } xTaskResumeAll();
return pvReturn; }
in heap_3.c source file and add these declarations:
void *pvPortCalloc( size_t nmemb, size_t size ); void *pvPortRealloc( void *pv, size_t size );
in portable.h header file.
Thank you.
RE: Add Realloc and CallocPosted by Nobody/Anonymous on November 23, 2005 The memory schemes are just examples. The prototypes should be included in the header, this way users can add your code if they wish. It would be harder for the heap_1 and heap_2 schemes.
Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.
|