/** * @file * * @brief RTEMS Malloc Get Free Information * @ingroup libcsupport */ /* * COPYRIGHT (c) 1989-2010. * 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.org/license/LICENSE. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include #include #include #include #include #include "malloc_p.h" /* * Find amount of free heap remaining */ size_t malloc_free_space( void ) { Heap_Information info; _Protected_heap_Get_free_information( RTEMS_Malloc_Heap, &info ); return (size_t) info.largest; }