summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2019-08-26 15:53:57 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2019-08-27 15:52:26 +0900
commite3fc30564e9466d6926f9d25a090dcf787bd5c33 (patch)
treed18de0bd0a65d94cf71789d05888e46fd924fcd1 /vm_core.h
parentbc3e7924bc66d3ef77b219c72f3e59cc154550a3 (diff)
rb_thread_create now free from ANYARGS
After 5e86b005c0f2ef30df2f9906c7e2f3abefe286a2, I now think ANYARGS is dangerous and should be extinct. This commit deletes ANYARGS from rb_thread_create, which seems very safe to do.
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index 74700f37f0..cb22fc4115 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -975,7 +975,7 @@ typedef struct rb_thread_struct {
VALUE args;
} proc;
struct {
- VALUE (*func)(ANYARGS);
+ VALUE (*func)(void *);
void *arg;
} func;
} invoke_arg;