diff options
author | 2014-05-15 12:09:20 +0000 | |
---|---|---|
committer | 2014-05-15 12:09:20 +0000 | |
commit | 36ad612f608726a3981bdc3d8f85db27a3304e26 (patch) | |
tree | 29ae7358a58c01405721747f8a953622629608fe /src/lib/util/corealloc.c | |
parent | 175dedacfc1aecfaf2b8c79232ea991f29372d62 (diff) |
corealloc adjustments:
- re-enabled default memory initialization in DEBUG builds (should make random crashes less random)
- moved defines from header to source since they are only used locally and not globally
- added file/line information to global_free* and fixed src/emu/sound/spu.c compilation
Diffstat (limited to 'src/lib/util/corealloc.c')
-rw-r--r-- | src/lib/util/corealloc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/util/corealloc.c b/src/lib/util/corealloc.c index c1bc9185def..2d1c70d68d9 100644 --- a/src/lib/util/corealloc.c +++ b/src/lib/util/corealloc.c @@ -18,6 +18,14 @@ #define LOG_ALLOCS (0) +// define this to initialize allocated memory to a fixed non-0 value +#ifdef MAME_DEBUG +#define INITIALIZE_ALLOCATED_MEMORY +#endif + +// define this to zap memory to a fixed non-0 value before freeing +//#define OVERWRITE_FREED_MEMORY + //************************************************************************** |