diff options
author | Aaron Patterson <[email protected]> | 2019-05-14 08:18:43 -0700 |
---|---|---|
committer | Aaron Patterson <[email protected]> | 2019-05-14 08:18:43 -0700 |
commit | 2ca537ba4b620d0a657b7da433df92f876974015 (patch) | |
tree | c1f7bb1a1cee3c001fdcc7c97b6745801637c2b3 /internal.h | |
parent | b5a3ec7f18761cbe30a90aa585b59ab05d926d2d (diff) |
Fixing function name
This function is used for marking / pinning vm stack values, so it
should have "vm" in the function name to be more clear.
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal.h b/internal.h index 4d3a5061d2..22b893a24e 100644 --- a/internal.h +++ b/internal.h @@ -2357,7 +2357,7 @@ void rb_gc_verify_internal_consistency(void); #define RB_OBJ_GC_FLAGS_MAX 6 size_t rb_obj_gc_flags(VALUE, ID[], size_t); void rb_gc_mark_values(long n, const VALUE *values); -void rb_gc_mark_stack_values(long n, const VALUE *values); +void rb_gc_mark_vm_stack_values(long n, const VALUE *values); #if IMEMO_DEBUG VALUE rb_imemo_new_debug(enum imemo_type type, VALUE v1, VALUE v2, VALUE v3, VALUE v0, const char *file, int line); |