diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-11-19 07:07:42 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-11-19 07:07:42 +0000 |
commit | a8c358b7046060a007659131c40f973e85b51406 (patch) | |
tree | 242e00a21d8a55ba5053ce8c9ce4d971cb8ca7d9 | |
parent | 38e8a979fc3b7e0b1acefa5968fec32f6308ea77 (diff) | |
download | ruby-a8c358b7046060a007659131c40f973e85b51406.tar.gz |
gc.c: moved ENABLE_VM_OBJSPACE from vm_core.h
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60848 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | gc.c | 13 | ||||
-rw-r--r-- | vm_core.h | 13 |
2 files changed, 13 insertions, 13 deletions
@@ -718,6 +718,19 @@ struct heap_page { #define GET_HEAP_MARKING_BITS(x) (&GET_HEAP_PAGE(x)->marking_bits[0]) #endif +#ifndef ENABLE_VM_OBJSPACE +# ifdef _WIN32 +/* + * TODO: object space independent st_table. + * socklist and conlist will be freed exit_handler(), after object + * space destruction. + */ +# define ENABLE_VM_OBJSPACE 0 +# else +# define ENABLE_VM_OBJSPACE 1 +# endif +#endif + /* Aliases */ #if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE #define rb_objspace (*rb_objspace_of(GET_VM())) @@ -74,19 +74,6 @@ #include "thread_pthread.h" #endif -#ifndef ENABLE_VM_OBJSPACE -#ifdef _WIN32 -/* - * TODO: object space independent st_table. - * socklist and conlist will be freed exit_handler(), after object - * space destruction. - */ -#define ENABLE_VM_OBJSPACE 0 -#else -#define ENABLE_VM_OBJSPACE 1 -#endif -#endif - #include <setjmp.h> #include <signal.h> |