[前][次][番号順一覧][スレッド一覧]

ruby-changes:48562

From: ko1 <ko1@a...>
Date: Tue, 7 Nov 2017 13:04:22 +0900 (JST)
Subject: [ruby-changes:48562] ko1:r60677 (trunk): rename because it doesn't receive `th`.

ko1	2017-11-07 13:04:18 +0900 (Tue, 07 Nov 2017)

  New Revision: 60677

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=60677

  Log:
    rename because it doesn't receive `th`.

  Modified files:
    trunk/vm_trace.c
Index: vm_trace.c
===================================================================
--- vm_trace.c	(revision 60676)
+++ vm_trace.c	(revision 60677)
@@ -299,7 +299,7 @@ exec_hooks_protected(rb_execution_contex https://github.com/ruby/ruby/blob/trunk/vm_trace.c#L299
 }
 
 static void
-rb_threadptr_exec_event_hooks_orig(rb_trace_arg_t *trace_arg, int pop_p)
+rb_exec_event_hooks_orig(rb_trace_arg_t *trace_arg, int pop_p)
 {
     rb_execution_context_t *ec = trace_arg->ec;
     rb_vm_t *vm = rb_ec_vm_ptr(ec);
@@ -365,13 +365,13 @@ rb_threadptr_exec_event_hooks_orig(rb_tr https://github.com/ruby/ruby/blob/trunk/vm_trace.c#L365
 void
 rb_threadptr_exec_event_hooks_and_pop_frame(rb_trace_arg_t *trace_arg)
 {
-    rb_threadptr_exec_event_hooks_orig(trace_arg, 1);
+    rb_exec_event_hooks_orig(trace_arg, 1);
 }
 
 void
 rb_threadptr_exec_event_hooks(rb_trace_arg_t *trace_arg)
 {
-    rb_threadptr_exec_event_hooks_orig(trace_arg, 0);
+    rb_exec_event_hooks_orig(trace_arg, 0);
 }
 
 VALUE

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]