mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-24 17:49:06 +08:00
* libcsupport/src/free.c, libcsupport/src/malloc.c, libcsupport/src/malloc_initialize.c, libcsupport/src/malloc_p.h, libcsupport/src/malloc_sbrk_helpers.c, libcsupport/src/malloc_statistics_helpers.c, libcsupport/src/malloc_walk.c, libcsupport/src/mallocfreespace.c, libcsupport/src/mallocinfo.c, libcsupport/src/realloc.c, libcsupport/src/rtems_memalign.c, sapi/include/confdefs.h, score/inline/rtems/score/thread.inl: Add support for optionally having a unified work area. In other words, the RTEMS Workspace and C Program Heap are the same pool of memory.
40 lines
750 B
C
40 lines
750 B
C
/*
|
|
* RTEMS Malloc Get Status Information
|
|
*
|
|
*
|
|
* COPYRIGHT (c) 1989-2007.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
|
|
#include <rtems.h>
|
|
#include <rtems/libcsupport.h>
|
|
#include <rtems/score/protectedheap.h>
|
|
|
|
extern Heap_Control *RTEMS_Malloc_Heap;
|
|
|
|
/*
|
|
* Find amount of free heap remaining
|
|
*/
|
|
|
|
int malloc_info(
|
|
Heap_Information_block *the_info
|
|
)
|
|
{
|
|
if ( !the_info )
|
|
return -1;
|
|
|
|
_Protected_heap_Get_information( RTEMS_Malloc_Heap, the_info );
|
|
return 0;
|
|
}
|