src/share/vm/services/management.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/services/management.hpp	Fri Sep 21 10:50:02 2012
--- new/src/share/vm/services/management.hpp	Fri Sep 21 10:50:01 2012

*** 56,75 **** --- 56,76 ---- public: static void init(); static void initialize(TRAPS); ! static jlong ticks_to_ms(jlong ticks) NOT_MANAGEMENT_RETURN_(0L); ! static jlong timestamp() NOT_MANAGEMENT_RETURN_(0L); ! static void oops_do(OopClosure* f) NOT_MANAGEMENT_RETURN; static void* get_jmm_interface(int version); static void get_optional_support(jmmOptionalSupport* support); static void get_loaded_classes(JavaThread* cur_thread, GrowableArray<KlassHandle>* klass_handle_array); - static void record_vm_startup_time(jlong begin, jlong duration); + NOT_MANAGEMENT_RETURN; static void record_vm_init_completed() { // Initialize the timestamp to get the current time _vm_init_done_time->set_value(os::javaTimeMillis()); // Update the timestamp to the vm init done time
*** 83,100 **** --- 84,106 ---- return _vm_init_done_time->get_value(); } // methods to return a Klass*. static Klass* java_lang_management_ThreadInfo_klass(TRAPS); - static Klass* java_lang_management_MemoryUsage_klass(TRAPS); + NOT_MANAGEMENT_RETURN_(NULL); static Klass* java_lang_management_MemoryPoolMXBean_klass(TRAPS); static Klass* java_lang_management_MemoryManagerMXBean_klass(TRAPS); static Klass* java_lang_management_GarbageCollectorMXBean_klass(TRAPS); - static Klass* sun_management_Sensor_klass(TRAPS); ! static Klass* sun_management_ManagementFactory_klass(TRAPS); ! static Klass* sun_management_GarbageCollectorImpl_klass(TRAPS); ! static Klass* com_sun_management_GcInfo_klass(TRAPS); ! NOT_MANAGEMENT_RETURN_(NULL); ! static Klass* sun_management_ManagementFactory_klass(TRAPS) ! NOT_MANAGEMENT_RETURN_(NULL); + static Klass* sun_management_GarbageCollectorImpl_klass(TRAPS) + NOT_MANAGEMENT_RETURN_(NULL); + static Klass* com_sun_management_GcInfo_klass(TRAPS) + NOT_MANAGEMENT_RETURN_(NULL); static instanceOop create_thread_info_instance(ThreadSnapshot* snapshot, TRAPS); static instanceOop create_thread_info_instance(ThreadSnapshot* snapshot, objArrayHandle monitors_array, typeArrayHandle depths_array, objArrayHandle synchronizers_array, TRAPS); };

src/share/vm/services/management.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File