--- /dev/null 2017-11-09 09:38:01.297999907 +0100 +++ new/src/hotspot/share/trace/tracePeriodic.xsl 2018-04-09 15:32:53.792671180 +0200 @@ -0,0 +1,64 @@ + + + + + + + + + + +#ifndef JFRFILES_JFRPERIODICEVENTSET_HPP +#define JFRFILES_JFRPERIODICEVENTSET_HPP + +#include "utilities/macros.hpp" +#if INCLUDE_TRACE +#include "memory/allocation.hpp" +#include "tracefiles/traceEventIds.hpp" + +class JfrPeriodicEventSet : public AllStatic { + public: + static void requestEvent(TraceEventId id) { + switch(id) { + + case TraceEvent: + request(); + break; + + default: + break; + } + } + + private: + + static void request(void); + +}; + +#endif // INCLUDE_TRACE +#endif // JFRFILES_JFRPERIODICEVENTSET_HPP + +