From 961f557a7bb0bbaf1cd8271c58cd69cf98166ae2 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 24 Feb 2007 09:41:41 +0000 Subject: * intern.h (rb_thread_blocking_region): add prototype. * thread.c (BLOCKING_REGION): restore previous UBF. * thread.c (rb_thread_blocking_region): default UBF to interrupt in system dependent way by RB_UBF_DFL. + ubf_select() on posix system + ubf_handle() on Win32 + none on cygwin git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11861 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 99fc2a322..a48e5b388 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,17 @@ -Sat Feb 24 18:39:15 2007 Nobuyoshi Nakada +Sat Feb 24 18:41:30 2007 Nobuyoshi Nakada + + * intern.h (rb_thread_blocking_region): add prototype. * thread.c (rb_thread_debug): added runtime debugging flag. + * thread.c (BLOCKING_REGION): restore previous UBF. + + * thread.c (rb_thread_blocking_region): default UBF to interrupt + in system dependent way by RB_UBF_DFL. + + ubf_select() on posix system + + ubf_handle() on Win32 + + none on cygwin + Sat Feb 24 17:45:48 2007 Minero Aoki * parse.y (f_arg, opt_f_block_arg): ripper should export VALUE. -- cgit