summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/mallocfreespace.c
blob: 26f4f3494462f296a7b9b92fe5e42f1556e52de2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 *  RTEMS Malloc Get Status Information
 *
 *
 *  COPYRIGHT (c) 1989-2000.
 *  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.OARcorp.com/rtems/license.html.
 *
 *  $Id$
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
#include <rtems.h>
#include <rtems/libcsupport.h>

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <assert.h>
#include <errno.h>
#include <string.h>

extern rtems_id RTEMS_Malloc_Heap;

/*
 *  Find amount of free heap remaining
 */

size_t malloc_free_space( void )
{
  region_information_block   heap_info;

  if ( rtems_region_get_information( RTEMS_Malloc_Heap, &heap_info ) ) {
    return (size_t) heap_info.free_size;
  }
  return (size_t) -1;
}