diff -r 62d18722a58d -r ca5216a2a2cc src/hotspot/share/services/attachListener.cpp --- a/src/hotspot/share/services/attachListener.cpp Mon Apr 23 11:37:46 2018 -0700 +++ b/src/hotspot/share/services/attachListener.cpp Mon Apr 23 14:51:16 2018 -0500 @@ -31,7 +31,6 @@ #include "oops/typeArrayOop.inline.hpp" #include "prims/jvmtiExport.hpp" #include "runtime/arguments.hpp" -#include "runtime/flags/jvmFlag.hpp" #include "runtime/globals.hpp" #include "runtime/handles.inline.hpp" #include "runtime/java.hpp" @@ -276,9 +275,9 @@ FormatBuffer<80> err_msg("%s", ""); - int ret = WriteableFlags::set_flag(op->arg(0), op->arg(1), JVMFlag::ATTACH_ON_DEMAND, err_msg); - if (ret != JVMFlag::SUCCESS) { - if (ret == JVMFlag::NON_WRITABLE) { + int ret = WriteableFlags::set_flag(op->arg(0), op->arg(1), Flag::ATTACH_ON_DEMAND, err_msg); + if (ret != Flag::SUCCESS) { + if (ret == Flag::NON_WRITABLE) { // if the flag is not manageable try to change it through // the platform dependent implementation return AttachListener::pd_set_flag(op, out); @@ -299,7 +298,7 @@ out->print_cr("flag name is missing"); return JNI_ERR; } - JVMFlag* f = JVMFlag::find_flag((char*)name, strlen(name)); + Flag* f = Flag::find_flag((char*)name, strlen(name)); if (f) { f->print_as_flag(out); out->cr();