summaryrefslogtreecommitdiff
path: root/libguile/threads.h
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/threads.h')
-rw-r--r--libguile/threads.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libguile/threads.h b/libguile/threads.h
index 733b6dbf2..99a3cfd07 100644
--- a/libguile/threads.h
+++ b/libguile/threads.h
@@ -99,9 +99,11 @@ struct scm_thread {
SCM continuation_root;
SCM_STACKITEM *continuation_base;
+ /* Stack base. Used when checking for C stack overflow. */
+ SCM_STACKITEM *base;
+
/* VM state for this thread. */
struct scm_vm vm;
- SCM_STACKITEM *base;
};
#define SCM_I_IS_THREAD(x) SCM_SMOB_PREDICATE (scm_tc16_thread, x)