* gc.c: STACK_LEVEL_MAX=65535 on mswince.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3732 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
60be770136
commit
de57d06015
@ -1,3 +1,7 @@
|
|||||||
|
Fri Apr 25 18:46:00 2003 Takaaki Uematsu <uema2x@jcom.home.ne.jp>
|
||||||
|
|
||||||
|
* gc.c: STACK_LEVEL_MAX=65535 on mswince.
|
||||||
|
|
||||||
Fri Apr 25 18:40:07 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Fri Apr 25 18:40:07 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* io.c (argf_read): read should not span two files. [ruby-dev:20073]
|
* io.c (argf_read): read should not span two files. [ruby-dev:20073]
|
||||||
|
2
gc.c
2
gc.c
@ -347,7 +347,7 @@ rb_data_object_alloc(klass, datap, dmark, dfree)
|
|||||||
extern st_table *rb_class_tbl;
|
extern st_table *rb_class_tbl;
|
||||||
VALUE *rb_gc_stack_start = 0;
|
VALUE *rb_gc_stack_start = 0;
|
||||||
|
|
||||||
#ifdef DJGPP
|
#if defined(DJGPP) || defined(_WIN32_WCE)
|
||||||
static unsigned int STACK_LEVEL_MAX = 65535;
|
static unsigned int STACK_LEVEL_MAX = 65535;
|
||||||
#else
|
#else
|
||||||
#ifdef __human68k__
|
#ifdef __human68k__
|
||||||
|
Loading…
x
Reference in New Issue
Block a user