summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--signal.c2
-rw-r--r--version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/signal.c b/signal.c
index dc3f8abd21..c739282d6d 100644
--- a/signal.c
+++ b/signal.c
@@ -614,7 +614,7 @@ check_stack_overflow(const void *addr)
{
int ruby_stack_overflowed_p(const rb_thread_t *, const void *);
NORETURN(void ruby_thread_stack_overflow(rb_thread_t *th));
- rb_thread_t *th = GET_THREAD();
+ rb_thread_t *th = ruby_current_thread;
if (ruby_stack_overflowed_p(th, addr)) {
ruby_thread_stack_overflow(th);
}
diff --git a/version.h b/version.h
index 45fcc9b384..2eb98af54a 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.0.0"
#define RUBY_RELEASE_DATE "2014-09-17"
-#define RUBY_PATCHLEVEL 574
+#define RUBY_PATCHLEVEL 575
#define RUBY_RELEASE_YEAR 2014
#define RUBY_RELEASE_MONTH 9