diff options
author | Aaron Patterson <[email protected]> | 2019-05-31 13:25:24 -0700 |
---|---|---|
committer | Aaron Patterson <[email protected]> | 2019-06-11 09:16:14 -0700 |
commit | 6db2d6d8520f88e25d97af77495eb6c879f90b21 (patch) | |
tree | 25c42ae8e1a14a019a37401d65ad32f10aa506c6 /vm_core.h | |
parent | c4cbaef216ffcc9bda70cc328a805ad679ccaa8c (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.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |