Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[travis] detect linux as we should
[simgrid.git] / include / xbt / mmalloc.h
1 /* Copyright (c) 2010-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 /* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
8    This file was then part of the GNU C Library. */
9
10 #ifndef MMALLOC_H
11 #define MMALLOC_H 1
12
13 #include <simgrid_config.h>
14 #ifdef HAVE_MMALLOC
15
16 #ifdef HAVE_STDDEF_H
17 #  include <stddef.h>
18 #else
19 #  include <sys/types.h>        /* for size_t */
20 #  include <stdio.h>            /* for NULL */
21 #endif
22
23 #include "xbt/dynar.h"
24 #include "xbt/dict.h"
25 #include "mc/mc_forward.h"
26
27 SG_BEGIN_DECL()
28
29 /* Datatype representing a separate heap. The whole point of the mmalloc module
30  * is to allow several such heaps in the process. It thus works by redefining
31  * all the classical memory management functions (malloc and friends) with an
32  * extra first argument: the heap in which the memory is to be taken.
33  *
34  * The heap structure itself is an opaque object that shouldnt be messed with.
35  */
36 typedef struct mdesc s_xbt_mheap_t;
37 typedef struct mdesc *xbt_mheap_t;
38
39 /* Allocate SIZE bytes of memory (and memset it to 0).  */
40 XBT_PUBLIC( void ) *mmalloc(xbt_mheap_t md, size_t size);
41
42 /* Allocate SIZE bytes of memory (and don't mess with it) */
43 void *mmalloc_no_memset(xbt_mheap_t mdp, size_t size);
44
45 /* Re-allocate the previously allocated block in void*, making the new block
46    SIZE bytes long.  */
47
48 XBT_PUBLIC( void ) *mrealloc(xbt_mheap_t md, void *ptr, size_t size);
49
50 /* Free a block allocated by `mmalloc', `mrealloc' or `mcalloc'.  */
51 XBT_PUBLIC( void ) mfree(xbt_mheap_t md, void *ptr);
52
53 XBT_PUBLIC( xbt_mheap_t ) xbt_mheap_new(int fd, void *baseaddr);
54
55 #define XBT_MHEAP_OPTION_MEMSET 1
56
57 XBT_PUBLIC( xbt_mheap_t ) xbt_mheap_new_options(int fd, void *baseaddr, int options);
58
59 XBT_PUBLIC( void ) xbt_mheap_destroy_no_free(xbt_mheap_t md);
60
61 XBT_PUBLIC( void ) *xbt_mheap_destroy(xbt_mheap_t md);
62
63 /* return the heap used when NULL is passed as first argument to any mm* function */
64 XBT_PUBLIC( xbt_mheap_t ) mmalloc_get_default_md(void);
65
66 /* To change the heap used when using the legacy version malloc/free/realloc and such */
67 xbt_mheap_t mmalloc_set_current_heap(xbt_mheap_t new_heap);
68 xbt_mheap_t mmalloc_get_current_heap(void);
69
70 int mmalloc_compare_heap(mc_snapshot_t snapshot1, mc_snapshot_t snapshot2);
71 int mmalloc_linear_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2);
72 int init_heap_information(xbt_mheap_t heap1, xbt_mheap_t heap2, xbt_dynar_t to_ignore1, xbt_dynar_t to_ignore2);
73 int compare_heap_area(int process_index, const void *area1, const void* area2, mc_snapshot_t snapshot1, mc_snapshot_t snapshot2, xbt_dynar_t previous, mc_type_t type, int pointer_level);
74 void reset_heap_information(void);
75
76 size_t mmalloc_get_bytes_used(xbt_mheap_t);
77 ssize_t mmalloc_get_busy_size(xbt_mheap_t, void *ptr);
78
79 void* malloc_no_memset(size_t n);
80
81 SG_END_DECL()
82
83 #endif
84 #endif                          /* MMALLOC_H */