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

ruby-changes:3627

From: ko1@a...
Date: Sat, 19 Jan 2008 00:18:24 +0900 (JST)
Subject: [ruby-changes:3627] usa - Ruby:r15116 (trunk): * thread_win32.c (w32_wait_events): shouldn't invoke interrupt handle

usa	2008-01-19 00:15:40 +0900 (Sat, 19 Jan 2008)

  New Revision: 15116

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

  Log:
    * thread_win32.c (w32_wait_events): shouldn't invoke interrupt handle
      by timer_thread.
    


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/version.h?r1=15116&r2=15115&diff_format=u
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=15116&r2=15115&diff_format=u
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/thread_win32.c?r1=15116&r2=15115&diff_format=u

Index: thread_win32.c
===================================================================
--- thread_win32.c	(revision 15115)
+++ thread_win32.c	(revision 15116)
@@ -103,7 +103,7 @@
 		 events, count, timeout, th);
     if (th && (intr = th->native_thread_data.interrupt_event)) {
 	w32_reset_event(intr);
-	if (th->interrupt_flag) {
+	if (RUBY_VM_INTERRUPTED(th)) {
 	    w32_set_event(intr);
 	}
 
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 15115)
+++ ChangeLog	(revision 15116)
@@ -1,3 +1,8 @@
+Sat Jan 19 00:13:19 2008  NAKAMURA Usaku  <usa@r...>
+
+	* thread_win32.c (w32_wait_events): shouldn't invoke interrupt handle
+	  by timer_thread.
+
 Fri Jan 18 23:49:41 2008  Nobuyoshi Nakada  <nobu@r...>
 
 	* thread.c (thread_create_core): set thread group before creating
Index: version.h
===================================================================
--- version.h	(revision 15115)
+++ version.h	(revision 15116)
@@ -1,7 +1,7 @@
 #define RUBY_VERSION "1.9.0"
-#define RUBY_RELEASE_DATE "2008-01-18"
+#define RUBY_RELEASE_DATE "2008-01-19"
 #define RUBY_VERSION_CODE 190
-#define RUBY_RELEASE_CODE 20080118
+#define RUBY_RELEASE_CODE 20080119
 #define RUBY_PATCHLEVEL 0
 
 #define RUBY_VERSION_MAJOR 1
@@ -9,7 +9,7 @@
 #define RUBY_VERSION_TEENY 0
 #define RUBY_RELEASE_YEAR 2008
 #define RUBY_RELEASE_MONTH 1
-#define RUBY_RELEASE_DAY 18
+#define RUBY_RELEASE_DAY 19
 
 #ifdef RUBY_EXTERN
 RUBY_EXTERN const char ruby_version[];

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

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