hotspot/src/share/vm/logging/logTagSet.hpp
author mlarsson
Mon, 09 May 2016 15:46:12 +0200
changeset 38263 a7488329ad27
parent 37463 a4581cbe32cd
child 38292 73a0be9b2f47
permissions -rw-r--r--
8145934: Make ttyLocker equivalent for Unified Logging framework Reviewed-by: rprotacio, stuefe, jrose
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     1
/*
37247
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
     2
 * Copyright (c) 2015, 2016 Oracle and/or its affiliates. All rights reserved.
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     4
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     7
 * published by the Free Software Foundation.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     8
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    13
 * accompanied this code).
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    14
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    18
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    21
 * questions.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    22
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    23
 */
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    24
#ifndef SHARE_VM_LOGGING_LOGTAGSET_HPP
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    25
#define SHARE_VM_LOGGING_LOGTAGSET_HPP
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    26
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    27
#include "logging/logDecorators.hpp"
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    28
#include "logging/logLevel.hpp"
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    29
#include "logging/logOutputList.hpp"
37247
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
    30
#include "logging/logPrefix.hpp"
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    31
#include "logging/logTag.hpp"
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    32
#include "utilities/globalDefinitions.hpp"
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    33
38263
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 37463
diff changeset
    34
class LogMessageBuffer;
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 37463
diff changeset
    35
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    36
// The tagset represents a combination of tags that occur in a log call somewhere.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    37
// Tagsets are created automatically by the LogTagSetMappings and should never be
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    38
// instantiated directly somewhere else.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    39
class LogTagSet VALUE_OBJ_CLASS_SPEC {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    40
 private:
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    41
  static LogTagSet* _list;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    42
  static size_t     _ntagsets;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    43
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    44
  LogTagSet* const  _next;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    45
  size_t            _ntags;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    46
  LogTagType        _tag[LogTag::MaxTags];
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    47
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    48
  LogOutputList     _output_list;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    49
  LogDecorators     _decorators;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    50
37247
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
    51
  typedef size_t (*PrefixWriter)(char* buf, size_t size);
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
    52
  PrefixWriter      _write_prefix;
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
    53
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    54
  // Keep constructor private to prevent incorrect instantiations of this class.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    55
  // Only LogTagSetMappings can create/contain instances of this class.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    56
  // The constructor links all tagsets together in a global list of tagsets.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    57
  // This list is used during configuration to be able to update all tagsets
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    58
  // and their configurations to reflect the new global log configuration.
37247
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
    59
  LogTagSet(PrefixWriter prefix_writer, LogTagType t0, LogTagType t1, LogTagType t2, LogTagType t3, LogTagType t4);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    60
37247
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
    61
  template <LogTagType T0, LogTagType T1, LogTagType T2, LogTagType T3, LogTagType T4, LogTagType GuardTag>
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    62
  friend class LogTagSetMapping;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    63
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    64
 public:
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    65
  static LogTagSet* first() {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    66
    return _list;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    67
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    68
37463
a4581cbe32cd 8153731: Increase max tag combinations for UL expression (config)
rehn
parents: 37247
diff changeset
    69
  static size_t ntagsets() {
a4581cbe32cd 8153731: Increase max tag combinations for UL expression (config)
rehn
parents: 37247
diff changeset
    70
    return _ntagsets;
a4581cbe32cd 8153731: Increase max tag combinations for UL expression (config)
rehn
parents: 37247
diff changeset
    71
  }
a4581cbe32cd 8153731: Increase max tag combinations for UL expression (config)
rehn
parents: 37247
diff changeset
    72
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    73
  LogTagSet* next() {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    74
    return _next;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    75
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    76
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    77
  size_t ntags() const {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    78
    return _ntags;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    79
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    80
37200
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 34316
diff changeset
    81
  LogTagType tag(size_t idx) const {
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 34316
diff changeset
    82
    return _tag[idx];
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 34316
diff changeset
    83
  }
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 34316
diff changeset
    84
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    85
  bool contains(LogTagType tag) const {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    86
    for (size_t i = 0; _tag[i] != LogTag::__NO_TAG; i++) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    87
      if (tag == _tag[i]) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    88
        return true;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    89
      }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    90
    }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    91
    return false;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    92
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    93
34316
4d876653d940 8142952: Unified Logging framework does not allow multiple -Xlog: arguments.
mlarsson
parents: 33097
diff changeset
    94
  LogLevelType level_for(const LogOutput* output) const {
4d876653d940 8142952: Unified Logging framework does not allow multiple -Xlog: arguments.
mlarsson
parents: 33097
diff changeset
    95
    return _output_list.level_for(output);
4d876653d940 8142952: Unified Logging framework does not allow multiple -Xlog: arguments.
mlarsson
parents: 33097
diff changeset
    96
  }
4d876653d940 8142952: Unified Logging framework does not allow multiple -Xlog: arguments.
mlarsson
parents: 33097
diff changeset
    97
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    98
  void set_output_level(LogOutput* output, LogLevelType level) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    99
    _output_list.set_output_level(output, level);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   100
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   101
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   102
  // Refresh the decorators for this tagset to contain the decorators for all
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   103
  // of its current outputs combined with the given decorators.
34316
4d876653d940 8142952: Unified Logging framework does not allow multiple -Xlog: arguments.
mlarsson
parents: 33097
diff changeset
   104
  void update_decorators(const LogDecorators& decorator = LogDecorators::None);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   105
34316
4d876653d940 8142952: Unified Logging framework does not allow multiple -Xlog: arguments.
mlarsson
parents: 33097
diff changeset
   106
  int label(char *buf, size_t len, const char* separator = ",") const;
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   107
  bool has_output(const LogOutput* output);
37241
b9961c99c356 8152538: UL doesn't inline the LogTagSet::is_level check
stefank
parents: 37200
diff changeset
   108
b9961c99c356 8152538: UL doesn't inline the LogTagSet::is_level check
stefank
parents: 37200
diff changeset
   109
  // The implementation of this function is put here to ensure
b9961c99c356 8152538: UL doesn't inline the LogTagSet::is_level check
stefank
parents: 37200
diff changeset
   110
  // that it is inline:able by the log_is_enabled(level, ...) macro.
b9961c99c356 8152538: UL doesn't inline the LogTagSet::is_level check
stefank
parents: 37200
diff changeset
   111
  bool is_level(LogLevelType level) const {
b9961c99c356 8152538: UL doesn't inline the LogTagSet::is_level check
stefank
parents: 37200
diff changeset
   112
    return _output_list.is_level(level);
b9961c99c356 8152538: UL doesn't inline the LogTagSet::is_level check
stefank
parents: 37200
diff changeset
   113
  }
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   114
  void log(LogLevelType level, const char* msg);
38263
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 37463
diff changeset
   115
  void log(const LogMessageBuffer& msg);
37247
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   116
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   117
  ATTRIBUTE_PRINTF(3, 4)
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   118
  void write(LogLevelType level, const char* fmt, ...);
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   119
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   120
  template <LogLevelType Level>
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   121
  ATTRIBUTE_PRINTF(2, 3)
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   122
  void write(const char* fmt, ...) {
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   123
    va_list args;
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   124
    va_start(args, fmt);
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   125
    vwrite(Level, fmt, args);
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   126
    va_end(args);
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   127
  }
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   128
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   129
  ATTRIBUTE_PRINTF(3, 0)
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   130
  void vwrite(LogLevelType level, const char* fmt, va_list args);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   131
};
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   132
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   133
template <LogTagType T0, LogTagType T1 = LogTag::__NO_TAG, LogTagType T2 = LogTag::__NO_TAG,
37247
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   134
          LogTagType T3 = LogTag::__NO_TAG, LogTagType T4 = LogTag::__NO_TAG,
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   135
          LogTagType GuardTag = LogTag::__NO_TAG>
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   136
class LogTagSetMapping : public AllStatic {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   137
private:
37247
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   138
  // Verify number of logging tags does not exceed maximum supported.
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   139
  STATIC_ASSERT(GuardTag == LogTag::__NO_TAG);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   140
  static LogTagSet _tagset;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   141
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   142
public:
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   143
  static LogTagSet& tagset() {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   144
    return _tagset;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   145
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   146
};
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   147
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   148
// Instantiate the static field _tagset for all tagsets that are used for logging somewhere.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   149
// (This must be done here rather than the .cpp file because it's a template.)
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   150
// Each combination of tags used as template arguments to the Log class somewhere (via macro or not)
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   151
// will instantiate the LogTagSetMapping template, which in turn creates the static field for that
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   152
// tagset. This _tagset contains the configuration for those tags.
37247
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   153
template <LogTagType T0, LogTagType T1, LogTagType T2, LogTagType T3, LogTagType T4, LogTagType GuardTag>
bdbfe42632cb 8153254: Delegate (v)write from Log to LogTagSet
rehn
parents: 37241
diff changeset
   154
LogTagSet LogTagSetMapping<T0, T1, T2, T3, T4, GuardTag>::_tagset(&LogPrefix<T0, T1, T2, T3, T4>::prefix, T0, T1, T2, T3, T4);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   155
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
   156
#endif // SHARE_VM_LOGGING_LOGTAGSET_HPP