diff options
| author | Mattias EngdegÄrd | 2022-04-08 15:34:57 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2022-04-08 15:34:57 +0200 |
| commit | c2d78d09c1eca4df0836d0fb41562ac0ae1071d6 (patch) | |
| tree | df15aa90d882bc016f8ed6f3e5f7d770d69ee191 /src/thread.c | |
| parent | 13c8cc58bbd829ca4616dea09cb050dc977db9ae (diff) | |
| download | emacs-c2d78d09c1eca4df0836d0fb41562ac0ae1071d6.tar.gz emacs-c2d78d09c1eca4df0836d0fb41562ac0ae1071d6.zip | |
Rename mark_stack to mark_c_stack
This is the function that marks the C stack. Avoid confusion with the
new mark stack, a stack used in the GC mark phase.
* src/alloc.c (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK)
(mark_stack, mark_c_stack):
* src/lisp.h:
* src/thread.c (mark_one_thread): Rename mark_stack to mark_c_stack.
Diffstat (limited to 'src/thread.c')
| -rw-r--r-- | src/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.c b/src/thread.c index c6742341fb8..626d14aad0a 100644 --- a/src/thread.c +++ b/src/thread.c | |||
| @@ -655,7 +655,7 @@ mark_one_thread (struct thread_state *thread) | |||
| 655 | 655 | ||
| 656 | mark_specpdl (thread->m_specpdl, thread->m_specpdl_ptr); | 656 | mark_specpdl (thread->m_specpdl, thread->m_specpdl_ptr); |
| 657 | 657 | ||
| 658 | mark_stack (thread->m_stack_bottom, stack_top); | 658 | mark_c_stack (thread->m_stack_bottom, stack_top); |
| 659 | 659 | ||
| 660 | for (struct handler *handler = thread->m_handlerlist; | 660 | for (struct handler *handler = thread->m_handlerlist; |
| 661 | handler; handler = handler->next) | 661 | handler; handler = handler->next) |