summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/malloc_p.h
blob: 1bca6e0d1839bf73f1240489a918b158704f41a0 (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
45
46
47
48
49
50
51
52
53
54
55
/*
 *  RTEMS Malloc Family Internal Header
 *
 *  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$
 */

#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
#include <rtems.h>
#include <rtems/libcsupport.h>
#include <rtems/score/protectedheap.h>
#include <rtems/malloc.h>

#ifdef RTEMS_NEWLIB
#include <sys/reent.h>
#endif

#include <stdint.h>
#include <inttypes.h>
#include <rtems/chain.h>

#ifndef HAVE_UINTMAX_T
  /* Fall back to unsigned long if uintmax_t is not available */
  #define unsigned long uintmax_t

  #ifndef PRIuMAX
    #define PRIuMAX		"lu"
  #endif
#endif

/*
 * Basic management data
 */
extern Heap_Control  RTEMS_Malloc_Heap;

/*
 *  Malloc Statistics Structure
 */
extern rtems_malloc_statistics_t rtems_malloc_statistics;

#define MSBUMP(_f,_n)    rtems_malloc_statistics._f += (_n)

/*
 *  Process deferred free operations
 */
boolean malloc_is_system_state_OK(void);
void malloc_deferred_frees_initialize(void);
void malloc_deferred_frees_process(void);
void malloc_deferred_free(void *);