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