ruby-changes:46066
From: usa <ko1@a...>
Date: Sun, 26 Mar 2017 13:12:29 +0900 (JST)
Subject: [ruby-changes:46066] usa:r58137 (ruby_2_2): * thread.c (rb_thread_sleep_deadly_allow_spurious_wakeup): need to
usa 2017-03-26 13:11:55 +0900 (Sun, 26 Mar 2017) New Revision: 58137 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=58137 Log: * thread.c (rb_thread_sleep_deadly_allow_spurious_wakeup): need to mark as exported. this may fix the load error introduced at r58115. Modified files: branches/ruby_2_2/ChangeLog branches/ruby_2_2/thread.c branches/ruby_2_2/version.h Index: ruby_2_2/ChangeLog =================================================================== --- ruby_2_2/ChangeLog (revision 58136) +++ ruby_2_2/ChangeLog (revision 58137) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_2/ChangeLog#L1 +Sun Mar 26 13:07:21 2017 NAKAMURA Usaku <usa@r...> + + * thread.c (rb_thread_sleep_deadly_allow_spurious_wakeup): need to + mark as exported. this may fix the load error introduced at r58115. + Sun Mar 26 03:55:45 2017 Marcus Stollsteimer <sto.mar@w...> docs for creating arrays Index: ruby_2_2/thread.c =================================================================== --- ruby_2_2/thread.c (revision 58136) +++ ruby_2_2/thread.c (revision 58137) @@ -1127,7 +1127,7 @@ rb_thread_sleep_deadly(void) https://github.com/ruby/ruby/blob/trunk/ruby_2_2/thread.c#L1127 sleep_forever(GET_THREAD(), TRUE, TRUE); } -void +RUBY_FUNC_EXPORTED void rb_thread_sleep_deadly_allow_spurious_wakeup(void) { thread_debug("rb_thread_sleep_deadly_allow_spurious_wakeup\n"); Index: ruby_2_2/version.h =================================================================== --- ruby_2_2/version.h (revision 58136) +++ ruby_2_2/version.h (revision 58137) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_2/version.h#L1 #define RUBY_VERSION "2.2.7" #define RUBY_RELEASE_DATE "2017-03-26" -#define RUBY_PATCHLEVEL 464 +#define RUBY_PATCHLEVEL 465 #define RUBY_RELEASE_YEAR 2017 #define RUBY_RELEASE_MONTH 3 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/