mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* gc.c (STACK_LENGTH) [SPARC] : 0x80 offset removed. [ruby-dev:33857]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@15548 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
27b302811d
commit
c90f8f0918
2 changed files with 5 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Feb 19 18:34:32 2008 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
* gc.c (STACK_LENGTH) [SPARC] : 0x80 offset removed. [ruby-dev:33857]
|
||||||
|
|
||||||
Tue Feb 19 14:27:32 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Tue Feb 19 14:27:32 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* ext/readline/readline.c (readline_event): prevent polling. based on
|
* ext/readline/readline.c (readline_event): prevent polling. based on
|
||||||
|
|
4
gc.c
4
gc.c
|
@ -453,9 +453,7 @@ stack_end_address(VALUE **stack_end_p)
|
||||||
# endif
|
# endif
|
||||||
# define STACK_END (stack_end)
|
# define STACK_END (stack_end)
|
||||||
#endif
|
#endif
|
||||||
#if defined(sparc) || defined(__sparc__)
|
#if STACK_GROW_DIRECTION < 0
|
||||||
# define STACK_LENGTH (rb_gc_stack_start - STACK_END + 0x80)
|
|
||||||
#elif STACK_GROW_DIRECTION < 0
|
|
||||||
# define STACK_LENGTH (rb_gc_stack_start - STACK_END)
|
# define STACK_LENGTH (rb_gc_stack_start - STACK_END)
|
||||||
#elif STACK_GROW_DIRECTION > 0
|
#elif STACK_GROW_DIRECTION > 0
|
||||||
# define STACK_LENGTH (STACK_END - rb_gc_stack_start + 1)
|
# define STACK_LENGTH (STACK_END - rb_gc_stack_start + 1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue