From 7eed90933c657e7cf5de50ae39ee0672dbb3d58e Mon Sep 17 00:00:00 2001 From: kosaki Date: Fri, 10 Jun 2011 14:24:02 +0000 Subject: * ext/tk/tcltklib.c (lib_eventloop_core): replace CHECK_INTS with rb_thread_check_ints(). Because current code can't be compiled. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31986 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/tk/tcltklib.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index abb0508be6..9fc94ebd6f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Jun 10 23:18:09 2011 KOSAKI Motohiro + + * ext/tk/tcltklib.c (lib_eventloop_core): replace CHECK_INTS with + rb_thread_check_ints(). Because current code can't be compiled. + Fri Jun 10 16:38:13 2011 NARUSE, Yui * encoding.c (rb_locale_charmap): When ruby process is run as Windows diff --git a/ext/tk/tcltklib.c b/ext/tk/tcltklib.c index 7c5cc8a63b..d27af153a5 100644 --- a/ext/tk/tcltklib.c +++ b/ext/tk/tcltklib.c @@ -2530,7 +2530,7 @@ lib_eventloop_core(check_root, update_flag, check_var, interp) #ifdef RUBY_USE_NATIVE_THREAD /* if (update_flag == 0) CHECK_INTS; */ /*XXXXXXXXXXXXX TODO !!!! */ #else - if (update_flag == 0) CHECK_INTS; + if (update_flag == 0) rb_thread_check_ints(); #endif } -- cgit v1.2.3