< prev index next >

src/share/vm/trace/traceEventIds.xsl

Print this page
rev 8910 : full patch for jfr

*** 1,8 **** <?xml version="1.0" encoding="utf-8"?> <!-- ! Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. --- 1,8 ---- <?xml version="1.0" encoding="utf-8"?> <!-- ! Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved. DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation.
*** 32,51 **** #ifndef TRACEFILES_TRACEEVENTIDS_HPP #define TRACEFILES_TRACEEVENTIDS_HPP #include "utilities/macros.hpp" #if INCLUDE_TRACE ! #include "trace/traceDataTypes.hpp" /** * Enum of the event types in the JVM */ enum TraceEventId { _traceeventbase = (NUM_RESERVED_EVENTS-1), // Make sure we start at right index. // Events -> enum entry ! <xsl:for-each select="trace/events/event"> <xsl:value-of select="concat(' Trace', @id, 'Event,', $newline)"/> </xsl:for-each> MaxTraceEventId }; --- 32,51 ---- #ifndef TRACEFILES_TRACEEVENTIDS_HPP #define TRACEFILES_TRACEEVENTIDS_HPP #include "utilities/macros.hpp" #if INCLUDE_TRACE ! #include "tracefiles/traceTypes.hpp" /** * Enum of the event types in the JVM */ enum TraceEventId { _traceeventbase = (NUM_RESERVED_EVENTS-1), // Make sure we start at right index. // Events -> enum entry ! <xsl:for-each select="trace/events/*"> <xsl:value-of select="concat(' Trace', @id, 'Event,', $newline)"/> </xsl:for-each> MaxTraceEventId };
< prev index next >