--- old/src/share/vm/logging/logConfiguration.hpp 2015-11-05 23:45:59.475466133 +0900 +++ new/src/share/vm/logging/logConfiguration.hpp 2015-11-05 23:45:59.023467305 +0900 @@ -39,6 +39,7 @@ private: static LogOutput** _outputs; static size_t _n_outputs; + static bool _post_initialized; // Create a new output. Returns NULL if failed. static LogOutput* new_output(char* name, const char* options = NULL); @@ -85,6 +86,13 @@ // Prints usage help for command line log configuration. static void print_command_line_help(FILE* out); + + static bool is_post_initialized() { + return _post_initialized; + } + + // Rotates all LogOutput + static void rotate_all_outputs(); }; #endif // SHARE_VM_LOGGING_LOGCONFIGURATION_HPP