File tree Expand file tree Collapse file tree 4 files changed +0
-48
lines changed
src/hotspot/share/runtime Expand file tree Collapse file tree 4 files changed +0
-48
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ void classLoader_init1();
62
62
void compilationPolicy_init ();
63
63
void codeCache_init ();
64
64
void VM_Version_init ();
65
- void os_init_globals (); // depends on VM_Version_init, before universe_init
66
65
void stubRoutines_init1 ();
67
66
jint universe_init (); // depends on codeCache_init and stubRoutines_init
68
67
// depends on universe_init, must be before interpreter_init (currently only on SPARC)
@@ -114,7 +113,6 @@ jint init_globals() {
114
113
compilationPolicy_init ();
115
114
codeCache_init ();
116
115
VM_Version_init ();
117
- os_init_globals ();
118
116
stubRoutines_init1 ();
119
117
jint status = universe_init (); // dependent on codeCache_init and
120
118
// stubRoutines_init1 and metaspace_init.
Original file line number Diff line number Diff line change @@ -88,12 +88,6 @@ static size_t cur_malloc_words = 0; // current size for MallocMaxTestWords
88
88
89
89
DEBUG_ONLY (bool os::_mutex_init_done = false ;)
90
90
91
- void os_init_globals() {
92
- // Called from init_globals().
93
- // See Threads::create_vm() in thread.cpp, and init.cpp.
94
- os::init_globals ();
95
- }
96
-
97
91
static time_t get_timezone(const struct tm * time_struct) {
98
92
#if defined(_ALLBSD_SOURCE)
99
93
return time_struct->tm_gmtoff ;
Original file line number Diff line number Diff line change @@ -167,9 +167,6 @@ class os: AllStatic {
167
167
// before VM ergonomics processing.
168
168
static jint init_2 (void ); // Called after command line parsing
169
169
// and VM ergonomics processing
170
- static void init_globals (void ) { // Called from init_globals() in init.cpp
171
- init_globals_ext ();
172
- }
173
170
174
171
// unset environment variable
175
172
static bool unsetenv (const char * name);
@@ -832,9 +829,6 @@ class os: AllStatic {
832
829
// support for mapping non-volatile memory using MAP_SYNC
833
830
static bool supports_map_sync ();
834
831
835
- // Extensions
836
- #include " runtime/os_ext.hpp"
837
-
838
832
public:
839
833
class CrashProtectionCallback : public StackObj {
840
834
public:
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments