More exception stuff

This commit is contained in:
2026-09-03 11:33:44 -07:00
parent dc313fafa0
commit 2533b0db7d
15 changed files with 200 additions and 76 deletions
+4
View File
@@ -15,6 +15,7 @@ enum StackFrameKind {
};
#define LISP_STACK_MAX_DEPTH 4096
#define LISP_STACK_SOFT_MAX_DEPTH 4000
#define LOCAL_REFERENCES_BLOCK_LENGTH 64
#define LISP_LONGJMP_FOR_UNWIND 1
@@ -231,4 +232,7 @@ DECLARE_FUNCTION(backtrace, (void) );
} \
};
DECLARE_SYMBOL(excessive_lisp_nesting_error);
MAKE_CONDITION_CLASS(excessive_lisp_nesting_error);
#endif