diff options
author | Samuel Williams <[email protected]> | 2019-06-20 15:30:29 +1200 |
---|---|---|
committer | Samuel Williams <[email protected]> | 2019-06-20 15:30:29 +1200 |
commit | c26c51449461e3c8ee9bb4e1800933fb3d3caf67 (patch) | |
tree | ec9566fe256fc77cbaf4d1cf685fccafb8fadd0a /vm_core.h | |
parent | 7d9d1ed463323fe28f24d0b94212c2cb7ad109bd (diff) |
Revert failed attempt at fixing invalid usage of vm_stack.
Diffstat (limited to 'vm_core.h')
-rw-r--r-- | vm_core.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -907,10 +907,6 @@ void rb_ec_set_vm_stack(rb_execution_context_t *ec, VALUE *stack, size_t size); // @param size the size of the stack, as in `VALUE stack[size]`. void rb_ec_initialize_vm_stack(rb_execution_context_t *ec, VALUE *stack, size_t size); -// Clear (set to `NULL`) the vm_stack pointer and frame pointer in the execution context. -// @param ec the execution context to update. -void rb_ec_clear_vm_stack(rb_execution_context_t *ec); - typedef struct rb_thread_struct { struct list_node vmlt_node; VALUE self; |