summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2019-05-31 13:25:24 -0700
committerAaron Patterson <tenderlove@ruby-lang.org>2019-06-11 09:16:14 -0700
commit6db2d6d8520f88e25d97af77495eb6c879f90b21 (patch)
tree25c42ae8e1a14a019a37401d65ad32f10aa506c6 /vm_core.h
parentc4cbaef216ffcc9bda70cc328a805ad679ccaa8c (diff)
Add compaction support for more types.
This commit adds compaction support for: * Fibers * Continuations * Autoload Constants
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm_core.h b/vm_core.h
index 95cd2d87d9..a0f9388df7 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -1815,6 +1815,7 @@ void rb_threadptr_unlock_all_locking_mutexes(rb_thread_t *th);
void rb_threadptr_pending_interrupt_clear(rb_thread_t *th);
void rb_threadptr_pending_interrupt_enque(rb_thread_t *th, VALUE v);
void rb_ec_error_print(rb_execution_context_t * volatile ec, volatile VALUE errinfo);
+void rb_execution_context_update(const rb_execution_context_t *ec);
void rb_execution_context_mark(const rb_execution_context_t *ec);
void rb_fiber_close(rb_fiber_t *fib);
void Init_native_thread(rb_thread_t *th);