< prev index next >

src/hotspot/share/gc/z/zNUMA.cpp

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -30,26 +30,13 @@
 
 void ZNUMA::initialize() {
   initialize_platform();
 
   log_info(gc, init)("NUMA Support: %s", to_string());
-  if (is_enabled()) {
+  if (_enabled) {
     log_info(gc, init)("NUMA Nodes: %u", count());
   }
 }
 
-bool ZNUMA::is_enabled() {
-  return _enabled;
-}
-
-void ZNUMA::memory_interleave(uintptr_t addr, size_t size) {
-  if (!_enabled) {
-    // NUMA support not enabled
-    return;
-  }
-
-  os::numa_make_global((char*)addr, size);
-}
-
 const char* ZNUMA::to_string() {
   return _enabled ? "Enabled" : "Disabled";
 }
< prev index next >