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

ruby-changes:25884

From: ko1 <ko1@a...>
Date: Wed, 28 Nov 2012 22:58:03 +0900 (JST)
Subject: [ruby-changes:25884] ko1:r37941 (trunk): * thread_win32.c: catch up latest change of BLOCKING_REGION.

ko1	2012-11-28 22:57:52 +0900 (Wed, 28 Nov 2012)

  New Revision: 37941

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

  Log:
    * thread_win32.c: catch up latest change of BLOCKING_REGION.

  Modified files:
    trunk/ChangeLog
    trunk/thread_win32.c

Index: thread_win32.c
===================================================================
--- thread_win32.c	(revision 37940)
+++ thread_win32.c	(revision 37941)
@@ -240,7 +240,7 @@
     int ret;
 
     BLOCKING_REGION(ret = rb_w32_wait_events_blocking(events, num, timeout),
-		    ubf_handle, ruby_thread_from_native());
+		    ubf_handle, ruby_thread_from_native(), FALSE);
     return ret;
 }
 
@@ -294,7 +294,7 @@
     int ret;
 
     BLOCKING_REGION(ret = rb_w32_sleep(msec),
-		    ubf_handle, ruby_thread_from_native());
+		    ubf_handle, ruby_thread_from_native(), FALSE);
     return ret;
 }
 
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 37940)
+++ ChangeLog	(revision 37941)
@@ -1,3 +1,7 @@
+Wed Nov 28 22:57:23 2012  Koichi Sasada  <ko1@a...>
+
+	* thread_win32.c: catch up latest change of BLOCKING_REGION.
+
 Wed Nov 28 22:54:21 2012  Koichi Sasada  <ko1@a...>
 
 	* vm_insnhelper.c (vm_call_method): fix undefined behavior.

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

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