aboutsummaryrefslogtreecommitdiffstats
path: root/src/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread.h')
-rw-r--r--src/thread.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/thread.h b/src/thread.h
index a29af702d13..ddba1a2d994 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -35,9 +35,11 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
35 35
36/* Byte-code interpreter thread state. */ 36/* Byte-code interpreter thread state. */
37struct bc_thread_state { 37struct bc_thread_state {
38 Lisp_Object *fp; /* current frame pointer (see bytecode.c) */ 38 struct bc_frame *fp; /* current frame pointer */
39 Lisp_Object *stack; 39
40 Lisp_Object *stack_end; 40 /* start and end of allocated bytecode stack */
41 char *stack;
42 char *stack_end;
41}; 43};
42 44
43struct thread_state 45struct thread_state