aboutsummaryrefslogtreecommitdiffstats
path: root/DebugMemory.h
blob: a67a5f2b16f5591c9ad529fe517e20b6b76379a5 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/* Do not edit this file. It was automatically generated. */

#ifndef HEADER_DebugMemory
#define HEADER_DebugMemory

#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <assert.h>

#undef strdup
#undef malloc
#undef realloc
#undef calloc
#undef free



typedef struct DebugMemoryItem_ DebugMemoryItem;

struct DebugMemoryItem_ {
   int magic;
   void* data;
   char* file;
   int line;
   DebugMemoryItem* next;
};

typedef struct DebugMemory_ {
   DebugMemoryItem* first;
   int allocations;
   int deallocations;
   int size;
   bool totals;
   FILE* file;
} DebugMemory;


#if defined(DEBUG)

void DebugMemory_new();

void* DebugMemory_malloc(int size, char* file, int line, char* str);

void* DebugMemory_calloc(int a, int b, char* file, int line);

void* DebugMemory_realloc(void* ptr, int size, char* file, int line, char* str);

void* DebugMemory_strdup(const char* str, char* file, int line);

void DebugMemory_free(void* data, char* file, int line);

void DebugMemory_assertSize();

int DebugMemory_getBlockCount();

void DebugMemory_registerAllocation(void* data, char* file, int line);

void DebugMemory_registerDeallocation(void* data, char* file, int line);

void DebugMemory_report();

#elif defined(DEBUGLITE)

//#include "efence.h"

#endif

#endif

© 2014-2024 Faster IT GmbH | imprint | privacy policy