4418N/A/*
4418N/A * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
4418N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4418N/A *
4418N/A * This code is free software; you can redistribute it and/or modify it
4418N/A * under the terms of the GNU General Public License version 2 only, as
4418N/A * published by the Free Software Foundation.
4418N/A *
4418N/A * This code is distributed in the hope that it will be useful, but WITHOUT
4418N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4418N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4418N/A * version 2 for more details (a copy is included in the LICENSE file that
4418N/A * accompanied this code).
4418N/A *
4418N/A * You should have received a copy of the GNU General Public License version
4418N/A * 2 along with this work; if not, write to the Free Software Foundation,
4418N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4418N/A *
4418N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4418N/A * or visit www.oracle.com if you need additional information or have any
4418N/A * questions.
4418N/A *
4418N/A */
4418N/A#ifndef SHARE_VM_TRACE_NOTRACEBACKEND_HPP
4418N/A#define SHARE_VM_TRACE_NOTRACEBACKEND_HPP
4418N/A
4418N/A#include "prims/jni.h"
4418N/A
4418N/Atypedef jlong TracingTime;
4418N/Atypedef jlong RelativeTracingTime;
4418N/A
4418N/Aclass NoTraceBackend {
4418N/Apublic:
4418N/A static TracingTime time() {
4418N/A return 0;
4418N/A }
4418N/A};
4418N/A
4466N/Aclass TraceThreadData {
4466N/Apublic:
4466N/A TraceThreadData() {}
4466N/A};
4466N/A
4418N/Atypedef NoTraceBackend Tracing;
4418N/A
4418N/A#endif
4418N/A
4418N/A