#ifndef TRACEFILES_JFREVENTIDS_HPP #define TRACEFILES_JFREVENTIDS_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 MaxTraceEventId }; /** * Struct types in the JVM */ enum TraceStructId { MaxTraceStructId }; typedef enum TraceEventId TraceEventId; typedef enum TraceStructId TraceStructId; #endif #endif