From 6f088f38bd8ec794671c018ca9c6e79e580c2acb Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 8 Feb 2007 11:51:40 +0000 Subject: * yarvcore.h, thread.c: fix to use pthread on cygwin. * yarvcore.h, thread.c: move GVL_UNLOCK_BEGIN() and GVL_UNLOCK_END() from yarvcore.h to thread.c. * thread.c: change GVL_UNLOCK_RANGE() arguments (adding ubf as 2nd argument). * thread.c: fix to use polling in select on cygwin and mswin32. * thread.c, thread_pthread.ci, thread_win32.ci, yarvcore.h: rename: * rb_thread_t#interrupt_function -> unblock_function * rb_interrupt_function_t -> rb_unblock_function * some interrupt function name -> ubf_* * yarv_* -> * git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11662 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index eb70a84c8..d4c4723bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,22 @@ +Thu Feb 8 15:48:44 2007 Koichi Sasada + + * yarvcore.h, thread.c: fix to use pthread on cygwin. + + * yarvcore.h, thread.c: move GVL_UNLOCK_BEGIN() and GVL_UNLOCK_END() + from yarvcore.h to thread.c. + + * thread.c: change GVL_UNLOCK_RANGE() arguments + (adding ubf as 2nd argument). + + * thread.c: fix to use polling in select on cygwin and mswin32. + + * thread.c, thread_pthread.ci, thread_win32.ci, yarvcore.h: + rename: + * rb_thread_t#interrupt_function -> unblock_function + * rb_interrupt_function_t -> rb_unblock_function + * some interrupt function name -> ubf_* + * yarv_* -> * + Thu Feb 8 16:08:02 2007 Koichi Sasada * common.mk: fix to use RUNRUBY instead of BASERUBY if possible. -- cgit