diff options
author | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-10-16 07:27:26 +0000 |
---|---|---|
committer | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-10-16 07:27:26 +0000 |
commit | 5c3c2ddda2f410a25985f0e0fe7092d8c21a3657 (patch) | |
tree | 400a712b3a27fcbc80a6399e015d24f235babd9a /cont.c | |
parent | 04e5c65ff7e97fc611fb2ffe86a42f3aba41f716 (diff) | |
download | ruby-5c3c2ddda2f410a25985f0e0fe7092d8c21a3657.tar.gz |
cont.c (fiber_store): fix WIN32 fibers
[ruby-core:65745] [ruby-core:65758]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47975 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'cont.c')
-rw-r--r-- | cont.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1366,10 +1366,10 @@ fiber_store(rb_fiber_t *next_fib, rb_thread_t *th) terminated_machine_stack.ptr = NULL; terminated_machine_stack.size = 0; } +#endif /* not _WIN32 */ fib = th->fiber; if (fib->cont.argc == -1) rb_exc_raise(fib->cont.value); return fib->cont.value; -#endif /* not _WIN32 */ #else /* FIBER_USE_NATIVE */ cont_save_machine_stack(th, &fib->cont); |