< prev index next >

src/share/vm/logging/logOutput.hpp

Print this page
rev 8933 : 8046148.01

@@ -21,20 +21,21 @@
  * questions.
  *
  */
 #ifndef SHARE_VM_LOGGING_LOGOUTPUT_HPP
 #define SHARE_VM_LOGGING_LOGOUTPUT_HPP
+
 #include "logging/logDecorators.hpp"
 #include "memory/allocation.hpp"
 #include "utilities/globalDefinitions.hpp"
 
 class LogDecorations;
 
 // The base class/interface for log outputs.
 // Keeps track of the latest configuration string,
 // and its selected decorators.
-class LogOutput : public CHeapObj<mtInternal> {
+class LogOutput : public CHeapObj<mtLogging> {
  protected:
   LogDecorators _decorators;
   char* _config_string;
 
  public:

@@ -62,6 +63,6 @@
   virtual const char* name() const = 0;
   virtual bool initialize(const char* options) = 0;
   virtual int write(const LogDecorations &decorations, const char* msg) = 0;
 };
 
-#endif
+#endif // SHARE_VM_LOGGING_LOGOUTPUT_HPP
< prev index next >