--- old/src/hotspot/share/trace/noTraceBackend.hpp 2018-04-09 14:15:45.170595726 +0200 +++ new/src/hotspot/share/trace/noTraceBackend.hpp 2018-04-09 14:15:44.424548731 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 2018, 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 @@ -25,18 +25,19 @@ #define SHARE_VM_TRACE_NOTRACEBACKEND_HPP #include "jni.h" -#include "trace/traceTime.hpp" + +typedef jlong JfrTraceTime; class NoTraceBackend { public: - static TracingTime time() { + static JfrTraceTime time() { return 0; } }; class TraceThreadData { -public: - TraceThreadData() {} + public: + TraceThreadData() {} }; typedef NoTraceBackend Tracing;