Skip to content

Commit 419409b

Browse files
committed
8301337: Remove unused os::_polling_page
Reviewed-by: coleenp, dnsimon
1 parent d583767 commit 419409b

File tree

4 files changed

+0
-10
lines changed

4 files changed

+0
-10
lines changed

src/hotspot/share/jvmci/vmStructs_jvmci.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,6 @@
270270
volatile_nonstatic_field(oopDesc, _mark, markWord) \
271271
volatile_nonstatic_field(oopDesc, _metadata._klass, Klass*) \
272272
\
273-
static_field(os, _polling_page, address) \
274-
\
275273
static_field(StubRoutines, _verify_oop_count, jint) \
276274
\
277275
static_field(StubRoutines, _throw_delayed_StackOverflowError_entry, address) \

src/hotspot/share/runtime/os.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@
8181
# include <errno.h>
8282

8383
OSThread* os::_starting_thread = nullptr;
84-
address os::_polling_page = nullptr;
8584
volatile unsigned int os::_rand_seed = 1234567;
8685
int os::_processor_count = 0;
8786
int os::_initial_active_processor_count = 0;

src/hotspot/share/runtime/os.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ class os: AllStatic {
188188

189189
private:
190190
static OSThread* _starting_thread;
191-
static address _polling_page;
192191
static PageSizes _page_sizes;
193192

194193
static char* pd_reserve_memory(size_t bytes, bool executable);

src/hotspot/share/runtime/vmStructs.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -380,12 +380,6 @@
380380
static_field(CompressedKlassPointers, _narrow_klass._base, address) \
381381
static_field(CompressedKlassPointers, _narrow_klass._shift, int) \
382382
\
383-
/******/ \
384-
/* os */ \
385-
/******/ \
386-
\
387-
static_field(os, _polling_page, address) \
388-
\
389383
/**********/ \
390384
/* Memory */ \
391385
/**********/ \

0 commit comments

Comments
 (0)