summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/mallocinfo.c
blob: 505dbb3374e7c2e2e8987944e73b6e8ae7863d86 (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
/**
 *  @file
 *
 *  @brief RTEMS Malloc Get Status Information
 *  @ingroup libcsupport
 */

/*
 *  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.org/license/LICENSE.
 */

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

#include <rtems/malloc.h>
#include <rtems/score/protectedheap.h>

int malloc_info(
  Heap_Information_block *the_info
)
{
  if ( !the_info )
    return -1;

  _Protected_heap_Get_information( RTEMS_Malloc_Heap, the_info );
  return 0;
}