source: rtems/cpukit/libcsupport/src/malloc_p.h @ 5d478af

5
Last change on this file since 5d478af was 01557b0, checked in by Sebastian Huber <sebastian.huber@…>, on 11/27/14 at 10:44:48

libcsupport: Delete malloc statistics

Use the heap handler statistics instead. Add heap walk option to MALLOC
shell command.

close #1367

  • Property mode set to 100644
File size: 667 bytes
Line 
1/*
2 *  RTEMS Malloc Family Internal Header
3 *
4 *  COPYRIGHT (c) 1989-2007.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.org/license/LICENSE.
10 */
11
12#include <rtems.h>
13#include <rtems/libcsupport.h>
14#include <rtems/score/protectedheap.h>
15#include <rtems/malloc.h>
16
17#ifdef RTEMS_NEWLIB
18#include <sys/reent.h>
19#endif
20
21#include <stdint.h>
22#include <rtems/chain.h>
23
24/*
25 *  Process deferred free operations
26 */
27bool malloc_is_system_state_OK(void);
28void malloc_deferred_frees_process(void);
29void malloc_deferred_free(void *);
Note: See TracBrowser for help on using the repository browser.