summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/vm_core.h b/vm_core.h
index b5c1bf0ad9..2174613156 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -307,6 +307,8 @@ typedef struct rb_vm_struct {
VALUE verbose, debug, progname;
VALUE coverages;
+ struct unlinked_method_entry_list_entry *unlinked_method_entry_list;
+
#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
struct rb_objspace *objspace;
#endif
@@ -387,6 +389,9 @@ typedef struct rb_thread_struct
/* for rb_iterate */
const rb_block_t *passed_block;
+ /* for bmethod */
+ const rb_method_entry_t *passed_me;
+
/* for load(true) */
VALUE top_self;
VALUE top_wrapper;