summaryrefslogtreecommitdiffstats
path: root/unwind.c
diff options
context:
space:
mode:
Diffstat (limited to 'unwind.c')
-rw-r--r--unwind.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/unwind.c b/unwind.c
index 7e35c937..5d358e42 100644
--- a/unwind.c
+++ b/unwind.c
@@ -260,6 +260,12 @@ val uw_exception_subtype_p(val sub, val sup)
val uw_throw(val sym, val args)
{
uw_frame_t *ex;
+ static int reentry_count = 0;
+
+ if (++reentry_count > 1) {
+ fprintf(stderr, "txr: invalid re-entry of exception handling logic\n");
+ abort();
+ }
if (!listp(args))
args = cons(args, nil);
@@ -334,6 +340,7 @@ val uw_throw(val sym, val args)
ex->ca.sym = sym;
ex->ca.args = args;
uw_exit_point = ex;
+ reentry_count--;
uw_unwind_to_exit_point();
abort();
}