src/share/vm/utilities/events.cpp

changeset 8720
6bed084fd02f
parent 6782
f73af4455d7d
child 8856
ac27a9c85bea
     1.1 --- a/src/share/vm/utilities/events.cpp	Tue Feb 14 20:51:31 2017 -0500
     1.2 +++ b/src/share/vm/utilities/events.cpp	Wed Feb 15 17:39:29 2017 +0000
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -36,6 +36,7 @@
    1.11  EventLog* Events::_logs = NULL;
    1.12  StringEventLog* Events::_messages = NULL;
    1.13  StringEventLog* Events::_exceptions = NULL;
    1.14 +StringEventLog* Events::_redefinitions = NULL;
    1.15  StringEventLog* Events::_deopt_messages = NULL;
    1.16  
    1.17  EventLog::EventLog() {
    1.18 @@ -65,6 +66,7 @@
    1.19    if (LogEvents) {
    1.20      _messages = new StringEventLog("Events");
    1.21      _exceptions = new StringEventLog("Internal exceptions");
    1.22 +    _redefinitions = new StringEventLog("Classes redefined");
    1.23      _deopt_messages = new StringEventLog("Deoptimization events");
    1.24    }
    1.25  }

mercurial