summaryrefslogtreecommitdiff
path: root/libguile/threads.h
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2013-11-21 18:33:06 +0100
committerAndy Wingo <wingo@pobox.com>2013-11-21 18:33:06 +0100
commit3506b1521e168a6fd7fb15e07e4eb950393b4fa8 (patch)
tree34b08cf757b10c852664705e8f1e0adf73bfa2a7 /libguile/threads.h
parente7f9ababe0532c9b086ffa6b3825d0dafc9364bc (diff)
downloadguile-3506b1521e168a6fd7fb15e07e4eb950393b4fa8.tar.gz
Remove last use of SCM vm
* libguile/threads.h (scm_i_thread): Hold a struct scm_vm*, not a SCM vm. * libguile/threads.c (guilify_self_2): * libguile/vm.c (make_vm): Adapt.
Diffstat (limited to 'libguile/threads.h')
-rw-r--r--libguile/threads.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/threads.h b/libguile/threads.h
index 147e36dd8..3b67aacd4 100644
--- a/libguile/threads.h
+++ b/libguile/threads.h
@@ -110,7 +110,7 @@ typedef struct scm_i_thread {
SCM_STACKITEM *continuation_base;
/* For keeping track of the stack and registers. */
- SCM vm;
+ struct scm_vm *vp;
SCM_STACKITEM *base;
scm_i_jmp_buf regs;
#ifdef __ia64__