< prev index next >

src/share/vm/runtime/globals.cpp

Print this page

        

*** 21,39 **** * questions. * */ #include "precompiled.hpp" #include "memory/allocation.inline.hpp" #include "oops/oop.inline.hpp" #include "runtime/arguments.hpp" #include "runtime/globals.hpp" #include "runtime/globals_extension.hpp" #include "utilities/ostream.hpp" #include "utilities/macros.hpp" #include "utilities/top.hpp" - #include "trace/tracing.hpp" #if INCLUDE_ALL_GCS #include "gc_implementation/g1/g1_globals.hpp" #endif // INCLUDE_ALL_GCS #ifdef COMPILER1 #include "c1/c1_globals.hpp" --- 21,39 ---- * questions. * */ #include "precompiled.hpp" + #include "jfr/jfrEvents.hpp" #include "memory/allocation.inline.hpp" #include "oops/oop.inline.hpp" #include "runtime/arguments.hpp" #include "runtime/globals.hpp" #include "runtime/globals_extension.hpp" #include "utilities/ostream.hpp" #include "utilities/macros.hpp" #include "utilities/top.hpp" #if INCLUDE_ALL_GCS #include "gc_implementation/g1/g1_globals.hpp" #endif // INCLUDE_ALL_GCS #ifdef COMPILER1 #include "c1/c1_globals.hpp"
*** 608,619 **** template<class E, class T> static void trace_flag_changed(const char* name, const T old_value, const T new_value, const Flag::Flags origin) { E e; e.set_name(name); ! e.set_old_value(old_value); ! e.set_new_value(new_value); e.set_origin(origin); e.commit(); } bool CommandLineFlags::boolAt(const char* name, size_t len, bool* value) { --- 608,619 ---- template<class E, class T> static void trace_flag_changed(const char* name, const T old_value, const T new_value, const Flag::Flags origin) { E e; e.set_name(name); ! e.set_oldValue(old_value); ! e.set_newValue(new_value); e.set_origin(origin); e.commit(); } bool CommandLineFlags::boolAt(const char* name, size_t len, bool* value) {
< prev index next >