mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm_core.h (ENABLE_VM_OBJSPACE): socklist needs st_table in
rb_w32_sysinit(), before object space initialization. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a1485dbea0
commit
8892dd7257
2 changed files with 16 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Sat Sep 19 17:46:46 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* vm_core.h (ENABLE_VM_OBJSPACE): socklist needs st_table in
|
||||||
|
rb_w32_sysinit(), before object space initialization.
|
||||||
|
|
||||||
Sat Sep 19 17:32:59 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sat Sep 19 17:32:59 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* dir.c (GlobPathValue), file.c (rb_get_path_check): path names
|
* dir.c (GlobPathValue), file.c (rb_get_path_check): path names
|
||||||
|
|
11
vm_core.h
11
vm_core.h
|
@ -32,8 +32,19 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef ENABLE_VM_OBJSPACE
|
#ifndef ENABLE_VM_OBJSPACE
|
||||||
|
#ifdef _WIN32
|
||||||
|
/*
|
||||||
|
* TODO: object space indenpendent st_table.
|
||||||
|
* socklist needs st_table in rb_w32_sysinit(), before object space
|
||||||
|
* initialization.
|
||||||
|
* It is too early now to change st_hash_type, since it breaks binary
|
||||||
|
* compatibility.
|
||||||
|
*/
|
||||||
|
#define ENABLE_VM_OBJSPACE 0
|
||||||
|
#else
|
||||||
#define ENABLE_VM_OBJSPACE 1
|
#define ENABLE_VM_OBJSPACE 1
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
|
Loading…
Reference in a new issue