Searched defs:GCCause (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_interface/
H A DgcCause.hpp37 class GCCause : public AllStatic { class in inherits:AllStatic
76 inline static bool is_user_requested_gc(GCCause::Cause cause) {
77 return (cause == GCCause::_java_lang_system_gc ||
78 cause == GCCause::_jvmti_force_gc);
81 inline static bool is_serviceability_requested_gc(GCCause::Cause
83 return (cause == GCCause::_jvmti_force_gc ||
84 cause == GCCause::_heap_inspection ||
85 cause == GCCause::_heap_dump);
88 // Return a string describing the GCCause.
89 static const char* to_string(GCCause
[all...]

Completed in 1199 milliseconds