Skip to content

Commit

Permalink
* cont.c: define FIBER_USE_NATIVE as 0 in ia64.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38766 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
takano32 committed Jan 10, 2013
1 parent bd0be3c commit 8cada38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Thu Jan 10 21:03:05 2013 TAKANO `takano32' Mitsuhiro <[email protected]>

* cont.c: define FIBER_USE_NATIVE as 0 in ia64.

Thu Jan 10 19:39:05 2013 TAKANO `takano32' Mitsuhiro <[email protected]>

* thread.c: fix RB_GC_SAVE_MACHINE_REGISTER_STACK define for ia64.
Expand Down
2 changes: 1 addition & 1 deletion cont.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include "gc.h"
#include "eval_intern.h"

#if ((defined(_WIN32) && _WIN32_WINNT >= 0x0400) || (defined(HAVE_GETCONTEXT) && defined(HAVE_SETCONTEXT))) && !defined(__NetBSD__) && !defined(__sun) && !defined(FIBER_USE_NATIVE)
#if ((defined(_WIN32) && _WIN32_WINNT >= 0x0400) || (defined(HAVE_GETCONTEXT) && defined(HAVE_SETCONTEXT))) && !defined(__NetBSD__) && !defined(__sun) && !defined(__ia64) && !defined(FIBER_USE_NATIVE)
#define FIBER_USE_NATIVE 1

/* FIBER_USE_NATIVE enables Fiber performance improvement using system
Expand Down

0 comments on commit 8cada38

Please sign in to comment.