diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-01-04 18:57:37 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-01-04 18:57:37 +0000 |
commit | e9fcd84ff513ccb23ed5260f7404fa51634e21d5 (patch) | |
tree | 054aab1b68f4c85da6c84ae2d077e70c3d9afcb1 | |
parent | 050de0c31f3daa64b86616ac85464d8171f73489 (diff) | |
download | ruby-e9fcd84ff513ccb23ed5260f7404fa51634e21d5.tar.gz ruby-e9fcd84ff513ccb23ed5260f7404fa51634e21d5.tar.xz ruby-e9fcd84ff513ccb23ed5260f7404fa51634e21d5.zip |
FLUSH_REGISTER_WINDOWS must not be empty. Set to NULL instead.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | defines.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ Sun Jan 5 03:43:47 2003 Akinori MUSHA <knu@iDaemons.org> * defines.h (FLUSH_REGISTER_WINDOWS): Make the flushw call an - inline function instead so it can be used as an expression. + inline function so it can be used as an expression. * eval.c (EXEC_TAG, THREAD_SAVE_CONTEXT): Consistently call FLUSH_REGISTER_WINDOWS before calling setjmp(). (I suspect that @@ -151,7 +151,7 @@ flush_register_windows(void) } #define FLUSH_REGISTER_WINDOWS flush_register_windows() #else /* Not a sparc, so */ -#define FLUSH_REGISTER_WINDOWS /* empty -- nothing to do here */ +#define FLUSH_REGISTER_WINDOWS NULL #endif #if defined(DOSISH) |