src/share/vm/trace/noTraceBackend.hpp

Print this page
rev 5685 : 8028128: Add a type safe alternative for working with counter based data
Reviewed-by:

*** 23,35 **** */ #ifndef SHARE_VM_TRACE_NOTRACEBACKEND_HPP #define SHARE_VM_TRACE_NOTRACEBACKEND_HPP #include "prims/jni.h" ! ! typedef jlong TracingTime; ! typedef jlong RelativeTracingTime; class NoTraceBackend { public: static TracingTime time() { return 0; --- 23,33 ---- */ #ifndef SHARE_VM_TRACE_NOTRACEBACKEND_HPP #define SHARE_VM_TRACE_NOTRACEBACKEND_HPP #include "prims/jni.h" ! #include "trace/traceTime.hpp" class NoTraceBackend { public: static TracingTime time() { return 0;
*** 42,48 **** }; typedef NoTraceBackend Tracing; #endif - - --- 40,44 ----