From 19a95b5413e9be0661534d24329a228b4a429b95 Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Thu, 17 Oct 2019 17:55:48 -0500 Subject: [PATCH] Update JoeyLib Definitions --- JoeyLib-Definitions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JoeyLib-Definitions.md b/JoeyLib-Definitions.md index 330c174..8ad3e76 100644 --- a/JoeyLib-Definitions.md +++ b/JoeyLib-Definitions.md @@ -1,5 +1,5 @@ #### JOEY_DEBUG -If defined in `joey.h`, enables several debugging functions. JoeyLib memory management operations will be double-checked and tracked. In addition, after the program exits, JoeyLib will generate a file named `JLSTATS` containing allocation statistics and the contents of `why` that was passed to `jlDie()`. Recommended to use this when bracketing debug code in your apps that use JoeyLib. +If defined in `joey.h`, enables several debugging functions. JoeyLib memory management operations will be double-checked and tracked. In addition, after the program exits, JoeyLib will generate a file named `JLSTATS` containing allocation statistics and the contents of `why` that was passed to `jlUtilDie()`. Recommended to use this when bracketing debug code in your apps that use JoeyLib. #### JOEY_MEM_BLOCKS In `joey.h` this controls how many concurrent allocations the JoeyLib memory debugging routines will track. If you receive an error about being out of blocks, increase this value. A fixed number of memory block entries is currently used instead of re-implementing the stack code without JoeyLib.