aboutsummaryrefslogtreecommitdiffstats
path: root/cont.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-07 23:14:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-07 23:14:07 +0000
commit8818c79e4194f377949bfa653f59b47d4aa1d622 (patch)
treec06ac368eafc6516075e75d9532a5a692083ad24 /cont.c
parent81041d78bd19b01c6032c861458353e92fe71876 (diff)
downloadruby-8818c79e4194f377949bfa653f59b47d4aa1d622.tar.gz
cont.c: refined error message
* cont.c (fiber_machine_stack_alloc): refined the error message on failure at setting a guard page. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63351 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/cont.c b/cont.c
index a748b4e098..096873f280 100644
--- a/cont.c
+++ b/cont.c
@@ -769,6 +769,8 @@ fiber_entry(void *arg)
#define FIBER_STACK_FLAGS (MAP_PRIVATE | MAP_ANON)
#endif
+#define ERRNOMSG strerror(errno)
+
static char*
fiber_machine_stack_alloc(size_t size)
{
@@ -793,13 +795,13 @@ fiber_machine_stack_alloc(size_t size)
errno = 0;
ptr = mmap(NULL, size, PROT_READ | PROT_WRITE, FIBER_STACK_FLAGS, -1, 0);
if (ptr == MAP_FAILED) {
- rb_raise(rb_eFiberError, "can't alloc machine stack to fiber: %s", strerror(errno));
+ rb_raise(rb_eFiberError, "can't alloc machine stack to fiber: %s", ERRNOMSG);
}
/* guard page setup */
page = ptr + STACK_DIR_UPPER(size - RB_PAGE_SIZE, 0);
if (mprotect(page, RB_PAGE_SIZE, PROT_NONE) < 0) {
- rb_raise(rb_eFiberError, "mprotect failed");
+ rb_raise(rb_eFiberError, "can't set a guard page: %s", ERRNOMSG);
}
}