src/share/vm/trace/traceMacros.hpp

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

author
phh
date
Wed, 11 Jan 2012 17:34:02 -0500
changeset 3427
94ec88ca68e2
child 3487
34e2e90e7182
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_TRACE_MACRO_HPP
phh@3427 26 #define SHARE_VM_TRACE_TRACE_MACRO_HPP
phh@3427 27
phh@3427 28 #define EVENT_BEGIN(type, name)
phh@3427 29 #define EVENT_SET(name, field, value)
phh@3427 30 #define EVENT_COMMIT(name, ...)
phh@3427 31 #define EVENT_STARTED(name, time)
phh@3427 32 #define EVENT_ENDED(name, time)
phh@3427 33 #define EVENT_THREAD_EXIT(thread)
phh@3427 34
phh@3427 35 #define TRACE_ENABLED 0
phh@3427 36
phh@3427 37 #define TRACE_INIT_ID(k)
phh@3427 38 #define TRACE_BUFFER void*
phh@3427 39
phh@3427 40 #define TRACE_START() true
phh@3427 41 #define TRACE_INITIALIZE() 0
phh@3427 42
phh@3427 43 #endif

mercurial