зеркало из https://github.com/github/ruby.git
* gc.c (rb_objspace_alloc): this function is needed only when
ENABLE_VM_OBJSPACE macro is defined. * vm.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16848 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
437af4f46f
Коммит
5e9b9ff9cb
|
@ -1,3 +1,10 @@
|
|||
Thu Jun 5 23:40:08 2008 Yusuke Endoh <mame@tsg.ne.jp>
|
||||
|
||||
* gc.c (rb_objspace_alloc): this function is needed only when
|
||||
ENABLE_VM_OBJSPACE macro is defined.
|
||||
|
||||
* vm.c: ditto.
|
||||
|
||||
Thu Jun 5 23:31:21 2008 Yusuke Endoh <mame@tsg.ne.jp>
|
||||
|
||||
* test/stringio/test_stringio.rb: add tests to achieve over 95% test
|
||||
|
|
2
gc.c
2
gc.c
|
@ -201,6 +201,7 @@ static rb_objspace_t rb_objspace = {{GC_MALLOC_LIMIT}, {HEAP_MIN_SLOTS}};
|
|||
#define mark_stack_overflow objspace->markstack.overflow
|
||||
#define global_List objspace->global_list
|
||||
|
||||
#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
|
||||
rb_objspace_t *
|
||||
rb_objspace_alloc(void)
|
||||
{
|
||||
|
@ -210,6 +211,7 @@ rb_objspace_alloc(void)
|
|||
|
||||
return objspace;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* tiny heap size */
|
||||
/* 32KB */
|
||||
|
|
2
vm.c
2
vm.c
|
@ -1728,7 +1728,9 @@ Init_VM(void)
|
|||
vm_init_redefined_flag();
|
||||
}
|
||||
|
||||
#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
|
||||
struct rb_objspace *rb_objspace_alloc(void);
|
||||
#endif
|
||||
|
||||
void
|
||||
Init_BareVM(void)
|
||||
|
|
Загрузка…
Ссылка в новой задаче