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
|
#ifndef _DMEMORY_H
#define _DMEMORY_H
// clang-format off
#include <stdio.h>
// if DEBUG_MEMORY is defined setenv MEMORY_DEBUG to debug memory
#define DEBUG_MEMORY
#ifndef WITH_FUNCTION_NAME
#define WITH_FUNCTION_NAME
#endif
#ifdef __cplusplus
extern "C" {
#endif
extern size_t memTotal(void);
extern void memDebug(int debug);
extern void memExitOnError(void);
extern void *memRealloc(void *ptr, size_t size, const char *file, const char *functionname, int line);
extern void *memCalloc(size_t nobjs, size_t size, const char *file, const char *functionname, int line);
extern void *memMalloc(size_t size, const char *file, const char *functionname, int line);
extern void memFree(void *ptr, const char *file, const char *functionname, int line);
#ifdef __cplusplus
}
#endif
#ifdef DEBUG_MEMORY
#ifdef WITH_FUNCTION_NAME
#define Realloc(p, s) memRealloc((p), (s), __FILE__, __func__, __LINE__)
#define Calloc(n, s) memCalloc((n), (s), __FILE__, __func__, __LINE__)
#define Malloc(s) memMalloc((s), __FILE__, __func__, __LINE__)
#define Free(p) memFree((p), __FILE__, __func__, __LINE__)
#else
#define Realloc(p, s) memRealloc((p), (s), __FILE__, (void *) NULL, __LINE__)
#define Calloc(n, s) memCalloc((n), (s), __FILE__, (void *) NULL, __LINE__)
#define Malloc(s) memMalloc((s), __FILE__, (void *) NULL, __LINE__)
#define Free(p) memFree((p), __FILE__, (void *) NULL, __LINE__)
#endif
#else
#include <stdlib.h>
#define Realloc(p, s) realloc((p), (s))
#define Calloc(n, s) calloc((n), (s))
#define Malloc(s) malloc((s))
#define Free(p) free((p))
#endif /* DEBUG_MEMORY */
// clang-format on
#endif /* _DMEMORY_H */
/*
* Local Variables:
* c-file-style: "Java"
* c-basic-offset: 2
* indent-tabs-mode: nil
* show-trailing-whitespace: t
* require-trailing-newline: t
* End:
*/
|