aboutsummaryrefslogtreecommitdiffstats
path: root/yarvcore.h
diff options
context:
space:
mode:
Diffstat (limited to 'yarvcore.h')
-rw-r--r--yarvcore.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/yarvcore.h b/yarvcore.h
index b03e7f0fb2..f755e21790 100644
--- a/yarvcore.h
+++ b/yarvcore.h
@@ -304,8 +304,6 @@ typedef struct rb_iseq_struct rb_iseq_t;
#define GetVMPtr(obj, ptr) \
Data_Get_Struct(obj, rb_vm_t, ptr)
-struct rb_thread_struct;
-
typedef struct rb_vm_struct {
VALUE self;
@@ -379,12 +377,10 @@ struct rb_vm_tag {
struct rb_vm_tag *prev;
};
-typedef void rb_unblock_function_t(struct rb_thread_struct *);
-
#define RUBY_VM_VALUE_CACHE_SIZE 0x1000
#define USE_VALUE_CACHE 1
-typedef struct rb_thread_struct
+struct rb_thread_struct
{
VALUE self;
rb_vm_t *vm;
@@ -459,7 +455,7 @@ typedef struct rb_thread_struct
/* misc */
int method_missing_reason;
int abort_on_exception;
-} rb_thread_t;
+};
/** node -> yarv instruction sequence object */
VALUE rb_iseq_compile(VALUE self, NODE *node);