summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-26 04:11:55 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-26 04:11:55 +0000
commit7b9fffe6a4e8f7eed531178fc737a36a2122da78 (patch)
tree3d80c3d001b9fb1ed9af6e9c5eb1cdec36ab11eb
parent9c3d2ca6ae27df08c353d7a23b539ae535867089 (diff)
* thread.c (rb_thread_sleep_deadly_allow_spurious_wakeup): need to
mark as exported. this may fix the load error introduced at r58115. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@58137 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--thread.c2
-rw-r--r--version.h2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 532a733eae..d2519545be 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Mar 26 13:07:21 2017 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * 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@web.de>
docs for creating arrays
diff --git a/thread.c b/thread.c
index 09765e5cad..d769402105 100644
--- a/thread.c
+++ b/thread.c
@@ -1127,7 +1127,7 @@ rb_thread_sleep_deadly(void)
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");
diff --git a/version.h b/version.h
index 00e9302f62..31d2f74e48 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#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