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

ruby-changes:17422

From: nobu <ko1@a...>
Date: Sat, 9 Oct 2010 08:16:55 +0900 (JST)
Subject: [ruby-changes:17422] Ruby:r29427 (trunk): * thread.c (rb_threadptr_remove_event_hook): fix typo.

nobu	2010-10-09 08:16:20 +0900 (Sat, 09 Oct 2010)

  New Revision: 29427

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29427

  Log:
    * thread.c (rb_threadptr_remove_event_hook): fix typo.

  Modified files:
    trunk/ChangeLog
    trunk/thread.c
    trunk/version.h

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 29426)
+++ ChangeLog	(revision 29427)
@@ -1,3 +1,7 @@
+Sat Oct  9 08:16:01 2010  Nobuyoshi Nakada  <nobu@r...>
+
+	* thread.c (rb_threadptr_remove_event_hook): fix typo.
+
 Fri Oct  8 10:52:25 2010  Nobuyoshi Nakada  <nobu@r...>
 
 	* common.mk (RBCONFIG): depends on version.h due to
Index: thread.c
===================================================================
--- thread.c	(revision 29426)
+++ thread.c	(revision 29427)
@@ -3847,7 +3847,7 @@
 }
 
 static int
-rb_threadptr_revmove_event_hook(rb_thread_t *th, rb_event_hook_func_t func)
+rb_threadptr_remove_event_hook(rb_thread_t *th, rb_event_hook_func_t func)
 {
     int ret = remove_event_hook(&th->event_hooks, func);
     thread_reset_event_flags(th);
@@ -3857,7 +3857,7 @@
 int
 rb_thread_remove_event_hook(VALUE thval, rb_event_hook_func_t func)
 {
-    return rb_threadptr_revmove_event_hook(thval2thread_t(thval), func);
+    return rb_threadptr_remove_event_hook(thval2thread_t(thval), func);
 }
 
 int
@@ -3879,7 +3879,7 @@
 {
     rb_thread_t *th;
     GetThreadPtr((VALUE)key, th);
-    rb_threadptr_revmove_event_hook(th, 0);
+    rb_threadptr_remove_event_hook(th, 0);
     return ST_CONTINUE;
 }
 
@@ -3994,7 +3994,7 @@
 {
     rb_thread_t *th;
     GetThreadPtr(obj, th);
-    rb_threadptr_revmove_event_hook(th, call_trace_func);
+    rb_threadptr_remove_event_hook(th, call_trace_func);
 
     if (NIL_P(trace)) {
 	return Qnil;
Index: version.h
===================================================================
--- version.h	(revision 29426)
+++ version.h	(revision 29427)
@@ -1,11 +1,11 @@
 #define RUBY_VERSION "1.9.3"
-#define RUBY_RELEASE_DATE "2010-10-08"
+#define RUBY_RELEASE_DATE "2010-10-09"
 #define RUBY_PATCHLEVEL -1
 #define RUBY_BRANCH_NAME "trunk"
 
 #define RUBY_RELEASE_YEAR 2010
 #define RUBY_RELEASE_MONTH 10
-#define RUBY_RELEASE_DAY 8
+#define RUBY_RELEASE_DAY 9
 
 #include "ruby/version.h"
 

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

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