mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
28 lines
616 B
C
28 lines
616 B
C
#ifndef EL__UTIL_MEMDEBUG_H
|
|
#define EL__UTIL_MEMDEBUG_H
|
|
|
|
#ifdef DEBUG_MEMLEAK
|
|
|
|
/* TODO: Another file? */
|
|
|
|
struct mem_stats {
|
|
long true_amount;
|
|
long amount;
|
|
};
|
|
|
|
extern struct mem_stats mem_stats;
|
|
|
|
void *debug_mem_alloc(const unsigned char *, int, size_t);
|
|
void *debug_mem_calloc(const unsigned char *, int, size_t, size_t);
|
|
void debug_mem_free(const unsigned char *, int, void *);
|
|
void *debug_mem_realloc(const unsigned char *, int, void *, size_t);
|
|
void set_mem_comment(void *, const unsigned char *, int);
|
|
|
|
void check_memory_leaks(void);
|
|
|
|
#else
|
|
#define set_mem_comment(p, c, l)
|
|
#endif /* DEBUG_MEMLEAK */
|
|
|
|
#endif
|