diff options
| author | Keith Packard <keithp@keithp.com> | 2016-11-18 21:12:50 -0800 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2017-02-20 11:16:52 -0800 | 
| commit | 4c812b8c903bd7e689572f8800ecc092af9cfe18 (patch) | |
| tree | e3907d08755773b13c2909b54fc7d5ffd59df84c | |
| parent | e600fc409c577eec02af612a36431c477a9c875e (diff) | |
altos/lisp: Make DBG settings global
This avoids having different values in different files, which wasn't useful.
Signed-off-by: Keith Packard <keithp@keithp.com>
| -rw-r--r-- | src/lisp/ao_lisp.h | 8 | ||||
| -rw-r--r-- | src/lisp/ao_lisp_eval.c | 1 | ||||
| -rw-r--r-- | src/lisp/ao_lisp_lambda.c | 1 | 
3 files changed, 7 insertions, 3 deletions
diff --git a/src/lisp/ao_lisp.h b/src/lisp/ao_lisp.h index a8e1715a..cea834fc 100644 --- a/src/lisp/ao_lisp.h +++ b/src/lisp/ao_lisp.h @@ -15,6 +15,9 @@  #ifndef _AO_LISP_H_  #define _AO_LISP_H_ +#define DBG_MEM		0 +#define DBG_EVAL	0 +  #include <stdint.h>  #include <string.h>  //#include <stdio.h> @@ -326,6 +329,10 @@ ao_lisp_poly_other(ao_poly poly) {  static inline uint8_t  ao_lisp_other_type(void *other) { +#if DBG_MEM +	if ((*((uint8_t *) other) & AO_LISP_OTHER_TYPE_MASK) >= AO_LISP_NUM_TYPE) +		ao_lisp_abort(); +#endif  	return *((uint8_t *) other) & AO_LISP_OTHER_TYPE_MASK;  } @@ -743,7 +750,6 @@ ao_lisp_frames_dump(void)  #define DBG_FRAMES()  #endif -#define DBG_MEM		0  #define DBG_MEM_START	1  #if DBG_MEM diff --git a/src/lisp/ao_lisp_eval.c b/src/lisp/ao_lisp_eval.c index 2460a32a..3be7c9c4 100644 --- a/src/lisp/ao_lisp_eval.c +++ b/src/lisp/ao_lisp_eval.c @@ -12,7 +12,6 @@   * General Public License for more details.   */ -#define DBG_EVAL 0  #include "ao_lisp.h"  #include <assert.h> diff --git a/src/lisp/ao_lisp_lambda.c b/src/lisp/ao_lisp_lambda.c index 656936cb..67ad24ee 100644 --- a/src/lisp/ao_lisp_lambda.c +++ b/src/lisp/ao_lisp_lambda.c @@ -15,7 +15,6 @@   * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.   */ -#define DBG_EVAL 0  #include "ao_lisp.h"  int  | 
