src/share/vm/trace/tracing.hpp

Wed, 11 Jan 2012 17:34:02 -0500

author
phh
date
Wed, 11 Jan 2012 17:34:02 -0500
changeset 3427
94ec88ca68e2
child 4153
b9a9ed0f8eeb
permissions
-rw-r--r--

7115199: Add event tracing hooks and Java Flight Recorder infrastructure
Summary: Added a nop tracing infrastructure, JFR makefile changes and other infrastructure used only by JFR.
Reviewed-by: acorn, sspitsyn
Contributed-by: markus.gronlund@oracle.com

phh@3427 1 /*
phh@3427 2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
phh@3427 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
phh@3427 4 *
phh@3427 5 * This code is free software; you can redistribute it and/or modify it
phh@3427 6 * under the terms of the GNU General Public License version 2 only, as
phh@3427 7 * published by the Free Software Foundation.
phh@3427 8 *
phh@3427 9 * This code is distributed in the hope that it will be useful, but WITHOUT
phh@3427 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
phh@3427 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
phh@3427 12 * version 2 for more details (a copy is included in the LICENSE file that
phh@3427 13 * accompanied this code).
phh@3427 14 *
phh@3427 15 * You should have received a copy of the GNU General Public License version
phh@3427 16 * 2 along with this work; if not, write to the Free Software Foundation,
phh@3427 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
phh@3427 18 *
phh@3427 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
phh@3427 20 * or visit www.oracle.com if you need additional information or have any
phh@3427 21 * questions.
phh@3427 22 *
phh@3427 23 */
phh@3427 24
phh@3427 25 #ifndef SHARE_VM_TRACE_TRACING_HPP
phh@3427 26 #define SHARE_VM_TRACE_TRACING_HPP
phh@3427 27
phh@3427 28 #include "trace/traceMacros.hpp"
phh@3427 29
phh@3427 30 #endif

mercurial